/* ======================================================================
   ## ALAP BEÁLLÍTÁSOK ÉS HÁTTÉR
   ====================================================================== */
body {
    background-image: url("../Galeri/background/background.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;
    min-height: 100vh;
}

/* ======================================================================
   ## OLDAL CÍM + LEÍRÁS
   ====================================================================== */
header h1 {
    font-size: 38px;
    font-weight: bold;
    text-align: center;
    margin-top: 70px;
    color: #e7c47b;
    text-shadow: 0 0 12px #000;
}

p.leiras {
    text-align: center;
    max-width: 900px;
    margin: 15px auto 40px;
    font-size: 18px;
    line-height: 1.4;
    padding: 0 10px;
}

/* ======================================================================
   ## NYELVVÁLASZTÓ (KIZÁRÓLAG ITT ÁLLÍTS ZÁSZLÓ MÉRETET!)
   ====================================================================== */
.kkp-lang-selector {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 40px auto;
    max-width: 900px;
    padding: 0 10px;
}

/* 🎯 IDE TETTEM A JAVÍTOTT MÉRETET! (48x48px)
   Ha később nagyobbat vagy kisebbet szeretnél, ITT állítsd. */
.kkp-lang-selector button {
    background: rgba(25, 8, 10, 0.6);
    color: #ffdd99;
    border: 1px solid rgba(227, 180, 91, 0.4);
    border-radius: 999px;

    display: flex;
    justify-content: center; /* középre igazítás – vízszint */
    align-items: center;     /* középre igazítás – függőleges */
    text-align: center;

    width: 48px;   /* ← EZEKET ÁLLÍTSD, HA MÁS MÉRET KELL */
    height: 48px;  /* ← EZEKET ÁLLÍTSD, HA MÁS MÉRET KELL */

    font-size: 20px;  /* Zászló méret */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Aktív nyelv kiemelése */
.kkp-lang-selector button.active {
    background: rgba(227, 180, 91, 0.2);
    border-color: #ffdd99;
    box-shadow: 0 0 8px rgba(255, 221, 153, 0.5);
    transform: translateY(-1px);
}

/* ======================================================================
   ## FŐMENÜ – KÁRTYÁK (KKP-BTN)
   ====================================================================== */

.kkp-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;
    margin: 40px auto;
    max-width: 1300px;
    padding: 0 10px;
}

/* Kártya stílus */
.kkp-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 260px;
    background: #25050a;
    border-radius: 18px;
    border: 2px solid #e3b45b;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
    color: #ffdd99;
    z-index: 0;
    text-decoration: none;
}

/* Kártya képe */
.kkp-btn img {
    width: 90%;
    height: 70%;
    border-radius: 14px;
    object-fit: cover;
    margin-top: 10px;
}

/* Kártya címszöveg */
.kkp-btn span {
    font-size: 18px;
    font-weight: 600;
    text-shadow: 0 0 8px #000;
}

/* ======================================================================
   ## KÁRTYA – ARANY FÉNY ANIMÁCIÓ
   ====================================================================== */
.kkp-btn::before,
.kkp-btn::after {
    content: "";
    position: absolute;
    left: -12%;
    right: -12%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        #a06a00 22%,
        #ffcc66 50%,
        #ffe9a8 68%,
        transparent 100%
    );
    z-index: 1;
    pointer-events: none;
}

.kkp-btn::before {
    top: 20%;
    transform: rotate(8deg) translateX(-35%);
    opacity: 0.25;
    animation: streakA 5.5s ease-in-out infinite;
}

.kkp-btn::after {
    bottom: 18%;
    transform: rotate(-9deg) translateX(40%);
    opacity: 0.25;
    animation: streakB 6.8s ease-in-out infinite;
}

/* Két fény animáció keyframe-jei */
@keyframes streakA {
    0% { transform: rotate(8deg) translateX(-35%); opacity: .25; }
    50% { transform: rotate(8deg) translateX(5%); opacity: .9; }
    100% { transform: rotate(8deg) translateX(40%); opacity: .25; }
}

@keyframes streakB {
    0% { transform: rotate(-9deg) translateX(40%); opacity: .25; }
    50% { transform: rotate(-9deg) translateX(-5%); opacity: .85; }
    100% { transform: rotate(-9deg) translateX(-35%); opacity: .25; }
}

/* ======================================================================
   ## VIDEÓ BLOKK – ARANY KERET + HOVER GLOW
   ====================================================================== */

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    max-width: 900px;
    margin: 40px auto;
    padding: 0;

    border-radius: 16px;
    overflow: hidden;

    box-shadow: 0 0 22px rgba(255, 221, 153, 0.45);
    border: 2px solid rgba(227, 180, 91, 0.7);
}

/* Videó méret */
.video-container iframe {
    width: 100%;
    height: 500px;
    border: none;
}

/* Hover */
.video-container:hover {
    box-shadow: 0 0 36px rgba(255, 221, 153, 0.85);
    transition: 0.3s ease;
}

/* ======================================================================
   ## RESPONSIVE NÉZET
   ====================================================================== */
@media (max-width: 600px) {
    .kkp-btn {
        width: 140px;
        height: 200px;
    }

    .kkp-btn span {
        font-size: 14px;
    }

    /* Mobilon kisebb zászlóméret */
    .kkp-lang-selector button {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

@media (min-width: 601px) and (max-width: 1024px) {
    .kkp-btn {
        width: 180px;
        height: 240px;
    }

    .kkp-btn span {
        font-size: 16px;
    }
}
/* ======================================================================
   ## KÁRTYA HOVER EFFEKT (ARANY KIEMELÉS)
   ====================================================================== */

.kkp-btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(255, 221, 153, 0.85);
    border-color: #ffdd99;
    transition: 0.25s ease;
}
/* 🦊 FOX MASCOT */
#fox-mascot {
    position: fixed;
    bottom: 35px;
    right: 30px;
    width: 120px;
    height: auto;
    z-index: 9999;
    cursor: pointer;
    user-select: none;
}

#fox-img {
    width: 100%;
    height: auto;
    pointer-events: none;
    /* levágjuk a nagyítót és a jeleket */
    clip-path: inset(0px 0px 0px 120px);
    transition: transform 0.25s ease, filter 0.25s ease;
    filter: drop-shadow(0 0 10px rgba(255,240,180,0.7));
}

/* Hover → integető/ugró hatás */
#fox-mascot:hover #fox-img {
    transform: translateY(-8px) scale(1.06);
    filter: drop-shadow(0 0 14px rgba(255,255,200,0.9));
}

/* 🗨️ Buborék a róka feje fölött */
#fox-bubble {
    position: absolute;
    bottom: 110%;
    right: 20px;
    background: rgba(255,255,255,0.85);
    color: #333;
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 12px;
    box-shadow: 0 0 6px rgba(0,0,0,0.25);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Buborék animáció */
.fox-bubble-show {
    opacity: 1 !important;
    transform: translateY(-8px) !important;
}

/* Pislogás */
@keyframes fox-blink {
    0% { transform: scaleY(1); }
    2% { transform: scaleY(0.1); }
    5% { transform: scaleY(1); }
    100% { transform: scaleY(1); }
}
/* ======================================
   NEON HOVER – minden kártya ragyog
   ====================================== */

.hilar-card {
    transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
    position: relative;
}

/* Alap hover mozgás */
.hilar-card:hover {
    transform: translateY(-6px) scale(1.03);
}

/* 1. Daloskönyv – pink-lila neon */
.hilar-card:first-child:hover {
    box-shadow: 0 0 18px #ff5ce7, 0 0 35px #ff9cf2;
    border-color: #ff9cf2;
}

/* 2. Tanulj Hilarral – kék neon */
.hilar-card:nth-child(2):hover {
    box-shadow: 0 0 18px #4db8ff, 0 0 35px #8edcff;
    border-color: #8edcff;
}

/* 3. Posta – türkiz neon */
.hilar-card:nth-child(3):hover {
    box-shadow: 0 0 18px #00ffcc, 0 0 35px #66ffe6;
    border-color: #66ffe6;
}
/* =======================================================
   NEON – VIDEÓ PANEL
   ======================================================= */
.hilar-panel.video-block {
    transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.hilar-panel.video-block:hover {
    box-shadow: 
        0 0 18px rgba(255, 183, 0, 0.7),
        0 0 35px rgba(0, 146, 255, 0.6);
    border-color: rgba(255, 200, 80, 0.85);
}


/* =======================================================
   NEON – SZÖVEG DOBOZ
   ======================================================= */
.hilar-panel.description-block {
    transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.hilar-panel.description-block:hover {
    box-shadow:
        0 0 15px rgba(255, 80, 160, 0.5),
        0 0 40px rgba(255, 120, 200, 0.4);
    border-color: rgba(255, 150, 220, 0.8);
}


/* =======================================================
   NEON – KÁRTYÁK (3 külön szín)
   ======================================================= */

/* ===========================
   ✨ GLOBAL RGB NEON SYSTEM ✨
   =========================== */

/* Animált színátfolyás */
@keyframes rgbFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Hover glow pulzálás */
@keyframes pulseGlow {
    0% { filter: drop-shadow(0 0 6px rgba(255,255,255,.6)); }
    100% { filter: drop-shadow(0 0 16px rgba(255,255,255,1)); }
}

/* 🎨 CÍM – GAMER RGB GLOW */
.hlv-title {
    color: #fff !important;
    text-shadow:
        0 0 12px #00eaff,
        0 0 22px #ff00ff,
        0 0 40px #39ff14;
    background: linear-gradient(90deg,#00eaff,#ff00ff,#39ff14,#00eaff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rgbFlow 6s ease infinite;
}

/* Szekció fejlécek */
.hv-sec-head h3 {
    background: linear-gradient(90deg,#00eaff,#ff00ff,#39ff14,#00eaff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rgbFlow 6s ease infinite;
    text-shadow: 0 0 12px rgba(255,255,255,.8);
}

/* Arany vonal → RGB neon */
.hv-sec-head .rule,
.hv-head .line {
    background: linear-gradient(90deg,
        transparent,
        #00eaff,
        #ff00ff,
        #39ff14,
        transparent
    );
    background-size: 400% 400%;
    animation: rgbFlow 6s linear infinite;
}

/* 🎬 VIDEÓ KÁRTYÁK – Teljes neon keret + aura */
.hv-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 2px solid rgba(255,255,255,0.15);
    transition: 0.3s ease;
}

/* RGB fénykeret */
.hv-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    background: linear-gradient(
        120deg,
        #00eaff,
        #ff00ff,
        #39ff14,
        #ff94e8,
        #ffc800,
        #00eaff
    );
    background-size: 400% 400%;
    filter: blur(18px);
    opacity: 0;
    transition: 0.4s;
    z-index: -1;
}

/* Hover → fény + mozgás */
.hv-card:hover::before {
    opacity: 1;
    animation: rgbFlow 5s ease infinite;
}

/* Hover → kártya megemelkedik */
.hv-card:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 18px rgba(255,255,255,.5));
}

/* 🎥 Videó frame – extra neon */
.hv-frame {
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 0 12px rgba(0,234,255,.5),
        0 0 26px rgba(255,0,255,.3),
        0 0 40px rgba(57,255,20,.35);
    transition: 0.3s ease;
}

/* Hover → a videó körül világítás erősödik */
.hv-card:hover .hv-frame {
    box-shadow:
        0 0 20px #00eaff,
        0 0 45px #ff00ff,
        0 0 75px #39ff14;
    animation: pulseGlow 1.2s infinite alternate;
}

/* Videó cím – neon text */
.hv-title {
    background: linear-gradient(90deg,#fff,#00eaff,#ff00ff,#39ff14,#fff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rgbFlow 7s ease infinite;
    text-shadow: 0 0 10px rgba(255,255,255,.7);
}

/* Vissza gomb is neon */
.back-float a {
    background: linear-gradient(90deg,#00eaff,#ff00ff,#39ff14,#00eaff);
    background-size: 400% 400%;
    animation: rgbFlow 7s ease infinite;
    color: white !important;
    text-shadow: 0 0 8px white;
    box-shadow: 0 0 10px rgba(255,255,255,.7);
}
.liederbuch-subtitle-box {
    max-width: 900px;
    margin: 10px auto 30px auto;
    padding: 14px 22px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.35);
    animation: subtitleFadeIn 0.7s ease forwards;
    text-align: center;
}

.liederbuch-subtitle-box p {
    color: white;
    font-size: 20px;
    line-height: 1.4;
    margin: 0;
    text-shadow: 0 0 10px rgba(0,0,0,0.7);
}

@keyframes subtitleFadeIn {
    0% { opacity: 0; transform: translateY(-6px); }
    100% { opacity: 1; transform: translateY(0); }
}
/* ------------------------------
   LINK HUB – KÖZÉPRE IGAZÍTÁS
   ------------------------------ */

.content-section {
    text-align: center !important;
}

.content-title {
    width: 100%;
    text-align: center !important;
    font-size: 28px;
    margin-bottom: 10px;
}

.content-text {
    width: 100%;
    text-align: center !important;
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.serenity-card,
.serenity-card *,
.serenity-card a,
.serenity-card a:link,
.serenity-card a:visited,
.serenity-card a:hover,
.serenity-card a:active {
    text-decoration: none !important;
}
.serenity-card .label {
    text-decoration: none !important;
    border-bottom: none !important;
}
.serenity-grid a,
.serenity-grid a:link,
.serenity-grid a:visited,
.serenity-grid a:hover,
.serenity-grid a:active {
    text-decoration: none !important;
    border: none !important;
}
/* ============================
   POSTBOX – kis kép + gomb
   ============================ */

/* 9:16 kép kicsiben, teljesben látszik */
.postbox-hero-img {
    display: block;
    margin: 0 auto 24px;

    width: 260px;        /* ha kisebb/nagyobb kell: 200–320 px között nyugodtan állíthatod */
    max-width: 100%;
    height: auto;        /* arányt tartja */
    border-radius: 20px;
}

/* Kis, elegáns Küldés gomb csak a Post Box oldalra */
.postbox-send-btn {
    display: block;
    margin: 24px auto 40px;
    padding: 12px 28px;

    font-size: 20px;
    font-weight: 700;
    color: #ffe2a8;

    background: rgba(20, 10, 20, 0.95);
    border: 2px solid #e3b45b;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.25s ease;
}

.postbox-send-btn:hover {
    background: rgba(35, 20, 5, 0.95);
    box-shadow:
        0 0 12px rgba(255, 220, 150, 0.8),
        0 0 24px rgba(255, 180, 80, 0.5);
    transform: translateY(-3px);
}
/* ============================
   COOKIE BANNER – KKPGroup
   ============================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(20, 20, 20, 0.95);
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    box-shadow: 0 -3px 10px rgba(0,0,0,0.4);
    z-index: 9999;
    font-size: 15px;
}

.cookie-banner p {
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.cookie-btn {
    background: #e7c47b;
    color: #000;
    border: none;
    padding: 10px 20px;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s ease;
}

.cookie-btn:hover {
    background: #f0d58f;
}

/* Rejtés */
.cookie-hidden {
    display: none;
}

/* Mobil optimalizáció */
@media(max-width: 480px) {
    .cookie-banner {
        font-size: 14px;
        padding: 15px 10px;
    }

    .cookie-btn {
        width: 100%;
    }
}
