/**
 * Hero Banner Component
 * Mobile-first design - Background image only
 */

/* ============================================================================
   HERO BANNER BASE
   ========================================================================== */

.hero-banner {
    position: relative;
    min-height: 50vh;
    padding: 3rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: var(--desktop-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

/* Dark overlay */
.hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ============================================================================
   HERO TEXT
   ========================================================================== */

.hero-text {
    width: 100%;
    text-align: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 1rem;
    color: white;
    text-shadow: 3px 1px 2px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0 0 2rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================================
   HERO BUTTONS
   ========================================================================== */

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.hero-button {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    font-family: var(--font-display);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    width: 100%;
    max-width: 280px;
    text-align: center;
}

.hero-button-primary {
    background-color: var(--nasc-gray);
    color: white;
    border: 2px solid var(--nasc-gray);
}

.hero-button-primary:hover {
    background-color: var(--dark-grey);
    border-color: var(--dark-grey);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    color: white;
}

.hero-button-primary:visited {
    color: var(--cream);
}

.hero-button-primary:hover:visited {
    color: white;
}

.hero-button-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.hero-button-secondary:hover {
    background-color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    color: var(--nasc-gray);
}

.hero-button-secondary:visited {
    color: white;
}

.hero-button-secondary:hover:visited {
    color: var(--nasc-gray);
}

/* ============================================================================
   MOBILE STYLES
   ========================================================================== */

@media (max-width: 767px) {
    .hero-banner {
        background-image: var(--mobile-bg, var(--desktop-bg));
    }
}

/* ============================================================================
   TABLET STYLES
   ========================================================================== */

@media (min-width: 768px) {
    .hero-banner {
        min-height: 60vh;
        padding: 4rem 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .hero-button {
        width: auto;
        min-width: 200px;
    }
}

/* ============================================================================
   DESKTOP STYLES
   ========================================================================== */

@media (min-width: 1024px) {
    .hero-banner {
        background-image: var(--desktop-bg);
        min-height: 70vh;
        padding: 5rem 2rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }
}

/* ============================================================================
   LARGE DESKTOP STYLES
   ========================================================================== */

@media (min-width: 1440px) {
    .hero-title {
        font-size: 4rem;
    }
}
