.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), 
                      url('https://images.unsplash.com/photo-1505236858219-8359eb29e329?ixlib=rb-1.2.1&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: visible;
    margin-top: 76px;
    padding: 3rem 0 4rem;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 90%;
    min-width: 0;
    margin: 0 auto;
    text-align: center;
    padding: 2.5rem 2.5rem 3rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Hide hero logo on landing page - users should see title/subtitle first */
.hero-landing .hero-logo {
    display: none !important;
}

.hero-logo {
    margin-bottom: 1.5rem;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.hero-logo-image {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.hero-brand-name {
    font-family: 'Avenir Next', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    letter-spacing: 0.5px;
    font-weight: 300;
}

.hero-title {
    font-family: 'Didot', serif;
    font-size: 48px;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    width: 100%;
}

.hero-subtitle {
    font-family: 'Avenir Next', sans-serif;
    font-size: 20px;
    color: white;
    margin: 0 0 1rem 0;
    max-width: 600px;
    width: 100%;
    font-weight: normal;
    line-height: 1.6;
}

.hero-description {
    font-family: 'Avenir Next', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 2rem 0;
    max-width: 600px;
    width: 100%;
    font-weight: normal;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1.5rem;
    min-width: 0;
    overflow: hidden;
}

.hero .cta-button-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-sizing: border-box;
    min-width: 0;
    background-color: #CBBBA0;
    color: #2B2B2B;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-family: 'Avenir Next', sans-serif;
}

.hero .cta-button-primary:hover {
    background-color: #90684A;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.hero .cta-button-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-sizing: border-box;
    min-width: 0;
    background-color: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Avenir Next', sans-serif;
}

.hero .cta-button-secondary:hover {
    background-color: white;
    color: #2B2B2B;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
        padding: 2rem 0 3rem;
        margin-top: 60px;
    }

    .hero-content {
        padding: 2rem;
        width: 92%;
    }

    .hero-logo {
        margin-bottom: 1.25rem;
        gap: 0.625rem;
    }

    .hero-logo-image {
        max-height: 60px;
    }

    .hero-brand-name {
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 18px;
        padding: 0 0.5rem;
    }

    .hero-description {
        font-size: 16px;
        padding: 0 0.5rem;
    }

    .hero-ctas {
        gap: 0.75rem;
        margin-top: 1.25rem;
    }

    .hero .cta-button-primary,
    .hero .cta-button-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 60vh;
        padding: 1.5rem 0 2.5rem;
    }

    .hero-content {
        padding: 1.5rem;
        width: 95%;
    }

    .hero-logo {
        margin-bottom: 1rem;
        gap: 0.5rem;
    }

    .hero-logo-image {
        max-height: 50px;
    }

    .hero-brand-name {
        font-size: 0.75rem;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
        padding: 0;
    }

    .hero-description {
        font-size: 14px;
        padding: 0;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .hero .cta-button-primary,
    .hero .cta-button-secondary {
        width: 100%;
        box-sizing: border-box;
        min-width: 0;
        justify-content: center;
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
}
