/* ============================================================
   HERO SECTION
   The header is position:fixed and transparent, so the hero
   fills the full viewport from top:0 — the header overlays it.
   ============================================================ */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

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

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0,0,0,0.35);
}

.hero-section__overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding-top: calc(var(--topbar-h) + var(--header-h));
    padding-left: 20px;
    padding-right: 20px;
}

.hero-section__overlay h1 {
    font-family: var(--font-family, 'Poppins', sans-serif);
    font-size: clamp(28px, 5vw, 60px);
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
    margin: 0;
}

.hero-section__overlay p {
    font-family: var(--font-family, 'Poppins', sans-serif);
    font-size: clamp(14px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.85);
    margin-top: 12px;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
    }
}
