/* Landing Page Styles: Luminous Softness */

.hero {
    position: relative;
    overflow: hidden;
    padding: var(--space-xl) 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 10% 20%, #FFFBFB 0%, #F9F5F0 100%);
}

.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 2;
    text-align: left;
}

.hero-label {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    color: var(--color-text);
    opacity: 0.6;
    margin-bottom: var(--space-md);
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    color: var(--color-text);
}

.hero h1 .highlight {
    color: #C06C84;
    /* Deep Berry Highlight */
    position: relative;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--color-primary);
    opacity: 0.4;
    z-index: -1;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: var(--space-xl);
    color: var(--color-text);
    opacity: 0.8;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
}

.capsule-button.secondary {
    background: transparent;
    border: 1px solid rgba(51, 51, 51, 0.2);
}

.hero-decoration {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 50%;
    height: 120%;
    background: linear-gradient(135deg, var(--color-primary) 0%, transparent 100%);
    opacity: 0.2;
    border-radius: 50% 0 0 50%;
    z-index: 1;
}

/* Sections Global */
.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.section-header p {
    font-size: 1.1rem;
    opacity: 0.7;
}

/* How It Works */
.how-it-works {
    padding: var(--space-xl) 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.step-card {
    text-align: left;
    padding: var(--space-lg);
}

.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.5;
    margin-bottom: var(--space-sm);
}

.step-card h3 {
    margin-bottom: var(--space-md);
    font-size: 1.5rem;
}

/* Seasonal Showcase */
.seasonal-showcase {
    padding: var(--space-xl) 0;
}

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.season-card {
    padding: var(--space-lg);
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.season-card:hover {
    transform: translateY(-10px);
}

.season-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.season-swatches {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: var(--space-md);
}

.season-swatches div {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Blog Preview */
.blog-preview {
    padding: var(--space-xl) 0;
}

.blog-preview .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.blog-item {
    cursor: pointer;
}

.blog-thumb {
    height: 300px;
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-soft);
    transition: opacity 0.2s;
}

.blog-item:hover .blog-thumb {
    opacity: 0.9;
}

.blog-meta {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
    margin-bottom: var(--space-sm);
}

.view-all {
    font-weight: 600;
    color: var(--color-text);
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 4px;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .seasons-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .seasons-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}