/* 
 * Component: Secondary Header 
 * Usage: Subpages like Meet the Team, Vacancies
 */

.hero-secondary {
    position: relative;
    width: 100%;
    min-height: 400px; /* Mobile fallback */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #222; /* Fallback */
    z-index: 1;
}

/* Compact variant — half height for WC pages */
.hero-secondary--compact {
    min-height: 200px;
}

/* Desktop Size from Figma */
@media (min-width: 1200px) {
    .hero-secondary {
       /* height: 636px;*/
    }
}

/* Background Image Wrapper */
.hero-secondary__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/* 
 * Gradients (CSS over Image)
 * 1. Dark overlay for text contrast (entire height)
 * 2. White fade-out at the bottom (bottom 25%)
 */
.hero-secondary__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: 
        /* Fade to White at Bottom */
        linear-gradient(180deg, rgba(255, 255, 255, 0.00) 70%, #FFF 100%),
        /* Dark Overlay */
        linear-gradient(0deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.48) 100%);
}

/* Content Container */
.hero-secondary__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 10px; /* Figma gap */

    /* Strict centering */
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Subtitle: GT MOTORCYCLES */
.hero-secondary__subtitle {
    color: #FFF;
    
    font-size: 1.25rem; /* ~20px */
    font-weight: 900;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (min-width: 992px) {
    .hero-secondary__subtitle {
        font-size: 24px; /* Figma spec */
    }
}

/* Main Title: MEET THE TEAM (Outlined) */
.hero-secondary__title {
    
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
    
    /* Hollow / Outline Style */
    color: transparent;
    -webkit-text-stroke: 1.5px #FFF;
    /* Mobile title bumped from a flat 2.5rem (40px) so the hollow wordmark
       reads on phones. clamp caps below the 768px value and stays within the
       viewport for the longest title word (SERVICING & MAINTENANCE). */
    font-size: clamp(2.5rem, 11.5vw, 3.25rem); /* Mobile */
    line-height: 1.05;
    letter-spacing: 0.5px;
}

@media (min-width: 768px) {
    .hero-secondary__title {
        font-size: 3.5rem;
        -webkit-text-stroke: 2px #FFF;
    }
}

@media (min-width: 1200px) {
    .hero-secondary__title {
        font-size: 64px; /* Figma spec */
        letter-spacing: 3.2px;
        -webkit-text-stroke: 3px #FFF;
        line-height: 1; /* Tighten multi-line titles */
    }
}