/* ====================================================
   NEW MOON V1 - HERO SECTION STYLES
   ==================================================== */

.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 100%);
    overflow: hidden;
    padding-top: var(--navbar-height);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 100%);
    /* background: url('../../assets/images/hero.webp') center/cover; */
    /* Note: hero.webp not found - using gradient fallback */
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: var(--spacing-3xl) var(--spacing-lg);
    animation: fadeIn 0.8s ease-out;
}

.hero-badge {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-lg);
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--primary-gold);
    border-radius: var(--radius-full);
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    font-size: var(--text-sm);
    animation: fadeInDown 0.8s ease-out 0.2s backwards;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-title .text-gold {
    display: inline-block;
    animation: pulse 2s ease-in-out infinite 1s;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-2xl);
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.hero-buttons .btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-buttons .btn:hover {
    transform: translateY(-3px) scale(1.02);
}

/* ====== Hero Specific Animations ====== */
/* Using animations from core/animations.css */

/* ====== Responsive ====== */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
    }

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

    .hero-buttons .btn {
        width: 100%;
    }
}

