/* --- Home: Hero --- */
.hero {
    position: relative;
    background: #001a2e;
    color: var(--al-white);
    text-align: center;
    padding: 120px 20px;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 35, 102, 0.65),
        rgba(178, 34, 52, 0.45)
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-sub {
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto 30px;
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-buttons .btn {
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Home: Welcome --- */
.welcome-section {
    background-color: var(--al-white);
}

.welcome-section .section-heading {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.welcome-intro-label {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--al-gray);
    font-weight: 600;
    margin-bottom: 15px;
}

.welcome-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.welcome-photo {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* --- Home: Video Playlist --- */
.video-playlist {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    background: var(--al-white);
    border: 1px solid #e0e0e0;
}

.video-playlist-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--al-navy);
    color: var(--al-white);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.video-playlist-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-playlist-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- Home: Events Highlight --- */
.events-highlight {
    background-color: var(--al-gray-light);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero {
        padding: 80px 20px;
        min-height: 380px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .welcome-photo {
        margin-top: 20px;
    }
}
