/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(10, 22, 40, 0.88) 0%,
        rgba(10, 22, 40, 0.7) 35%,
        rgba(10, 22, 40, 0.4) 60%,
        rgba(10, 77, 255, 0.15) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: var(--space-xl);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: var(--space-3xl);
}

.hero-text {
    animation: fadeInUp 1.2s ease-out;
}

.hero-names {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-bottom: var(--space-xl);
}

.name-first,
.name-second {
    font-family: var(--font-serif);
    font-size: var(--text-hero);
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1;
    text-shadow: 0 4px 30px rgba(10, 77, 255, 0.3);
}

.name-ampersand {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    font-style: italic;
    color: var(--color-royal-blue-light);
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(10, 77, 255, 0.5);
}

.hero-date {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.hero-date span {
    font-family: var(--font-sans);
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 300;
    color: var(--color-white);
    letter-spacing: 0.2em;
}

.date-separator {
    color: var(--color-royal-blue-light) !important;
    font-weight: 600 !important;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.05em;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.7);
    animation: bounce 2s ease-in-out infinite;
    z-index: 2;
}

.hero-scroll-indicator span {
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Glow Effects */
.hero-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.hero-glow-left {
    bottom: -100px;
    left: -100px;
    background: var(--color-royal-blue);
    animation: pulse-glow 4s ease-in-out infinite;
}

.hero-glow-right {
    top: -100px;
    right: -100px;
    background: var(--color-royal-blue-light);
    animation: pulse-glow 4s ease-in-out infinite 2s;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.1); }
}

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