/* ===== RÓLUNK – INTRO VIDEO OVERLAY ===== */

.about-intro-overlay {
    position: fixed;
    inset: 0;
    z-index: 10;  /* a site-header (z-index:20) alatt, de a tartalom fölött */
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;

    /* FÁKULÁS: alapból látható, és animálható az áttetszőség */
    opacity: 1;
    transition: opacity 1.8s ease;
}

.about-intro-overlay video {
    max-width: 100%;
    max-height: 100%;
}

/* Fading állapot – lassan eltűnik (opacity -> 0) */
.about-intro-overlay.is-fading {
    opacity: 0;
}

/* Ha teljesen el akarjuk tüntetni az overlay-t (miután kifakult) */
.about-intro-overlay.is-hidden {
    display: none;
}

/* Tartalom kezdetben rejtve */
.about-content.is-hidden {
    display: none;
}

/* Amíg az intro aktív, ne lehessen scrollozni */
body.about-intro-active {
    overflow: hidden;
}
