/* ================================================
   HERO SECTION
   Sacred sanctuary entry point
   ================================================ */

.hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    overflow: hidden;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://lh3.googleusercontent.com/gps-cs-s/AHVAweodH38tZH1wtYaqhn2jGYoeUHm3T12hjUts3dfyW40RoWpBaTaUaP2rdsxEXY0fCMt7pPC9g1r63G6qyw8xT3VOy7dzl9O16Jch-pirMx_IHCFaV1br8h8XRxzWc4QH52Sv2Ng=s1360-w1360-h1020-rw');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    animation: heroParallax 0.5s ease-out;
}

@keyframes heroParallax {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero__title {
    color: var(--color-white);
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
    color: var(--color-gold);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-lg);
    font-weight: 300;
    letter-spacing: 0.1em;
}

.hero__cta {
    display: inline-block;
    padding: var(--spacing-md) var(--spacing-xl);
    background-color: var(--color-gold);
    color: var(--color-primary);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.hero__cta:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* ================================================
   ANIMATIONS
   ================================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Intersection Observer for scroll animations */
.fade-in {
    animation: fadeIn 0.6s ease-in-out forwards;
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-in-out forwards;
}

@media (max-width: 768px) {
    .hero {
        height: 50vh;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__subtitle {
        font-size: 1rem;
    }
}
