.hero {
    background: var(--cream);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 26, 26, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content h1 {
    margin-bottom: 0.5rem;
    line-height: 1;
}

.hero-logo-wrapper {
    height: 175px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    max-width: 230px;
    width: 100%;
    height: auto;
    display: block;
}

.hero-content .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--warm-black);
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--black);
    opacity: 0.8;
    line-height: 1.7;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--black);
    color: var(--black);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background: var(--black);
    color: var(--off-white);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero {
        padding: 6.5rem 1.5rem 3rem;
        min-height: 90vh;
    }
    
    .hero-content h1 {
        margin-bottom: 0.5rem;
    }

    .hero-logo {
        max-width: 190px;
    }

    .hero-logo-wrapper {
        height: 145px;
    }
    
    .hero-content .subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .hero-buttons .cta-button,
    .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }
}
