/* =========================================================
   Átirányító popup – Anton by Aleli → Aleli
   Nem bezárható, a háttér görgetése le van tiltva.
   Egyetlen gomb visz tovább a https://aleli.hu/ oldalra.
   ========================================================= */

/* Fekete overlay – mindent befed a képernyőn */
.ab-overlay {
    position: fixed;
    inset: 0;
    z-index: 2147483647;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.55);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* Popup kártya */
.ab-popup {
    width: 100%;
    max-width: 520px;
    background: #f7f2e8;
    padding: 56px 48px 48px;
    text-align: center;
    border-radius: 6px;
    -webkit-box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* Logo */
.ab-popup__logo {
    max-width: 200px;
    height: auto;
    margin: 0 auto 32px;
    display: block;
}

/* Főcím */
.ab-popup__title {
    margin: 0 0 20px;
    color: #2d4a3a;
    font-size: 26px;
    line-height: 1.35;
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* Szöveg */
.ab-popup__text {
    margin: 0 0 14px;
    color: #3a3a3a;
    font-size: 17px;
    line-height: 1.7;
}

/* Alsó sor (dőlt) */
.ab-popup__tagline {
    margin: 0 0 40px;
    color: #2d4a3a;
    font-size: 15px;
    line-height: 1.6;
    font-style: italic;
}

/* Gomb */
.ab-popup__btn {
    display: inline-block;
    background: #2d4a3a;
    color: #f7f2e8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 18px 52px;
    border-radius: 3px;
    -webkit-transition: background 0.25s ease, -webkit-transform 0.2s ease;
    transition: background 0.25s ease, transform 0.2s ease;
}

.ab-popup__btn:hover,
.ab-popup__btn:focus {
    background: #3d6450;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}

/* Mobil */
@media (max-width: 600px) {
    .ab-popup {
        padding: 40px 24px 36px;
    }
    .ab-popup__logo {
        max-width: 150px;
        margin-bottom: 24px;
    }
    .ab-popup__title {
        font-size: 22px;
    }
    .ab-popup__text {
        font-size: 16px;
    }
    .ab-popup__btn {
        padding: 16px 36px;
    }
}
