/* ============================================
   Ace Flight Center - Hero Styles
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero-overlay);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding-top: var(--header-height);
}

.hero-label {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: var(--font-weight-bold);
    color: var(--color-red);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: var(--space-md);
    position: relative;
}

.hero-label::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-red);
}

.hero-title {
    font-size: var(--text-hero);
    font-weight: var(--font-weight-extrabold);
    color: var(--color-white);
    line-height: 1.05;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
    text-shadow: 4px 4px 27px rgba(0,28,66,1.00);
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
    text-shadow: 1px 1px 6px rgba(0,28,66,0.50);
}

.hero-buttons {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    animation: bounce 2s infinite;
}

.hero-scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 13px;
    position: relative;
}

.hero-scroll-mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-white);
    border-radius: 2px;
    animation: scroll-dot 1.5s infinite;
}

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

@keyframes scroll-dot {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 22px; }
}
