/* ===== HERO SECTION ===== */
.hero {
    margin-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(198, 167, 94, 0.1) 0%,
            transparent 30%,
            transparent 70%,
            rgba(198, 167, 94, 0.1) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-size: 2.3rem;
    font-weight: 300;
}

.hero h1 .accent-gold {
    display: block;
    font-weight: 700;
    font-family: 'Montserrat', serif;
    color: var(--primary-gold);
    text-shadow: 0 0 20px rgba(198, 167, 94, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(245, 245, 245, 0.9);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 700px;
    font-weight: 300;
}

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

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
}