/* ==========================================================
   FILMSZALAG – a 0menü.css global "a { display: block }" 
   felülírása: a marquee-n belüli linkek inline-block legyenek
   ========================================================== */

.marquee-wrapper {
    width: 100%;
    box-sizing: border-box;
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
    background: #f0f0f0;
    padding: 10px 0;
    width: 100%;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
}

/* KULCS: az a elemek inline-block legyenek, ne block */
.marquee-content a {
    display: inline-block;
    vertical-align: top;
}

.marquee-content img {
    height: 450px;
    margin: 0 10px;
    cursor: pointer;
    display: inline-block;
    vertical-align: top;
    transition: transform 0.2s;
}

.marquee-content img:hover {
    transform: scale(1.1);
}

@keyframes scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.marquee:active .marquee-content {
    animation-play-state: paused;
}

/* ==========================================================
   FEKVŐ MOBIL – képek kitöltik a képernyőt
   ========================================================== */

@media screen and (max-width: 900px) and (orientation: landscape) {
    .marquee-content img {
        height: calc(100vh - 102px);
    }
}

/* ==========================================================
   ÁLLÓ MOBIL – elforgatás kérés
   ========================================================== */

.forgatos-uzenet {
    display: none;
}

@media screen and (max-width: 725px) {

    body > *:not(.forgatos-uzenet):not(.menusoroutline) {
        display: none !important;
    }

    .forgatos-uzenet {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: #b8ad9d;
        color: black;
        font-family: sans-serif;
        padding: 20px;
        box-sizing: border-box;
        z-index: 500;
    }

    .telefon-ikon {
        width: 40px;
        height: 70px;
        border: 4px solid black;
        border-radius: 6px;
        position: relative;
        margin-bottom: 20px;
        animation: forgatAnimacio 2s infinite ease-in-out;
    }

    .telefon-ikon::after {
        content: '';
        position: absolute;
        bottom: 4px;
        left: 50%;
        transform: translateX(-50%);
        width: 6px;
        height: 6px;
        background-color: black;
        border-radius: 50%;
    }

    @keyframes forgatAnimacio {
        0%       { transform: rotate(0deg); }
        40%, 60% { transform: rotate(-90deg); }
        100%     { transform: rotate(0deg); }
    }

    .forgatos-uzenet p {
        font-size: 18px;
        font-weight: bold;
        margin: 0;
        max-width: 280px;
        line-height: 1.4;
    }
}
.aktiv-menu .lenyilospacer {
    color: #f5dfa0 !important;
    border-bottom: 2px solid rgba(220, 185, 130, 0.9);
}