/* Fejléc logójának nagyítása asztali nézetben */
@media (min-width: 992px) {
    .header-logo img,
    .header__logo img,
    .navbar-brand img,
    .logo img,
    #logo img {
        width: 350px !important;
        max-width: none !important;
        max-height: none !important;
        height: auto !important;
    }
}
/* Teljes GYIK szekció */
.faq-kepes-szekcio {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 45px;
    align-items: stretch;
    width: 100%;
    max-width: 1400px;
    margin: 50px auto;
    padding: 45px;
    background: #fff5ea;
}

/* Bal oldali álló kép */
.faq-bal-oldal {
    width: 100%;
    min-height: 650px;
}

.faq-kep-link {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.faq-kep-link img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 650px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.faq-kep-link:hover img {
    transform: scale(1.03);
}

/* Jobb oldal */
.faq-jobb-oldal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.faq-jobb-oldal h2 {
    margin: 0 0 32px;
    font-size: 46px;
    line-height: 1.15;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    text-align: left;
    color: #16110e;
}

/* GYIK lista */
.faq-lista {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Egy GYIK-elem */
.faq-lista details {
    width: 100%;
    border: 1px solid #e2d7cb;
    border-radius: 12px;
    background: transparent;
    overflow: hidden;
}

/* Kérdés */
.faq-lista summary {
    position: relative;
    display: block;
    padding: 18px 58px 18px 20px;
    font-size: 19px;
    line-height: 1.35;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    text-align: left;
    color: #17120f;
    cursor: pointer;
    list-style: none;
}

.faq-lista summary::-webkit-details-marker {
    display: none;
}

/* Pluszjel */
.faq-lista summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-family: Arial, sans-serif;
    font-size: 30px;
    font-weight: 300;
    line-height: 1;
}

/* Mínuszjel nyitott állapotban */
.faq-lista details[open] summary::after {
    content: "−";
}

/* Válasz */
.faq-valasz {
    padding: 0 58px 20px 20px;
    font-size: 15px;
    line-height: 1.65;
    text-align: left;
    color: #29231f;
}

/* Tablet */
@media (max-width: 991px) {
    .faq-kepes-szekcio {
        grid-template-columns: 38% 62%;
        gap: 28px;
        padding: 30px;
    }

    .faq-bal-oldal,
    .faq-kep-link img {
        min-height: 560px;
    }

    .faq-jobb-oldal h2 {
        font-size: 38px;
    }
}

/* Mobil */
@media (max-width: 767px) {
    .faq-kepes-szekcio {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin: 30px auto;
        padding: 20px 15px;
    }

    .faq-bal-oldal {
        min-height: auto;
    }

    .faq-kep-link {
        aspect-ratio: 4 / 5;
    }

    .faq-kep-link img {
        height: 100%;
        min-height: 0;
    }

    .faq-jobb-oldal h2 {
        margin-bottom: 24px;
        font-size: 34px;
    }

    .faq-lista summary {
        padding: 16px 50px 16px 16px;
        font-size: 17px;
    }

    .faq-lista summary::after {
        right: 16px;
        font-size: 26px;
    }

    .faq-valasz {
        padding: 0 16px 18px;
    }
}

/* SEO H1 – lassú, egyenletes lebegés */
body h1 {
    position: relative !important;
    display: table !important;

    margin-left: 0 !important;
    margin-right: auto !important;
    padding-bottom: 20px !important;

    overflow: visible !important;

    animation: dekorCimLebeges 7s ease-in-out infinite !important;
}

/* Csak a főoldalon középre igazítva */
body.home-body h1 {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Teljes szélességű, folyamatosan mozgó hullámos aláhúzás */
body h1::after {
    content: "" !important;

    position: absolute !important;
    left: 0 !important;
    bottom: 2px !important;

    width: 100% !important;
    height: 14px !important;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='14' viewBox='0 0 80 14'%3E%3Cpath d='M0 7 C10 1 20 1 30 7 C40 13 50 13 60 7 C70 1 75 1 80 7' fill='none' stroke='%239b594d' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E") !important;

    background-repeat: repeat-x !important;
    background-size: 80px 14px !important;
    background-position: 0 center;

    animation: dekorHullamMozgas 5s linear infinite !important;

    pointer-events: none !important;
}

/* Egyenletes, lassú fel-le mozgás */
@keyframes dekorCimLebeges {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }

    100% {
        transform: translateY(0);
    }
}

/* A teljes hullámminta balról jobbra halad */
@keyframes dekorHullamMozgas {
    0% {
        background-position: 0 center;
    }

    100% {
        background-position: 80px center;
    }
}

/* ==================================================
   FŐOLDALI SEO H1 – LEBEGÉS ÉS HULLÁMOS ALÁHÚZÁS
   ================================================== */

body.home-body #section-seo_h1 h1 {
    position: relative !important;
    display: table !important;

    margin-left: auto !important;
    margin-right: auto !important;
    padding-bottom: 20px !important;

    overflow: visible !important;

    animation: dekorCimLebeges 7s ease-in-out infinite !important;
}

/* Teljes címszélességű, mozgó hullámos aláhúzás */
body.home-body #section-seo_h1 h1::after {
    content: "" !important;

    position: absolute !important;
    left: 0 !important;
    bottom: 2px !important;

    width: 100% !important;
    height: 14px !important;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='14' viewBox='0 0 80 14'%3E%3Cpath d='M0 7 C10 1 20 1 30 7 C40 13 50 13 60 7 C70 1 75 1 80 7' fill='none' stroke='%239b594d' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E") !important;

    background-repeat: repeat-x !important;
    background-size: 80px 14px !important;
    background-position: 0 center;

    pointer-events: none !important;

    animation: dekorHullamMozgas 5s linear infinite !important;
}

/* Lassú, egyenletes fel-le mozgás */
@keyframes dekorCimLebeges {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }

    100% {
        transform: translateY(0);
    }
}

/* A hullámminta balról jobbra mozog */
@keyframes dekorHullamMozgas {
    0% {
        background-position: 0 center;
    }

    100% {
        background-position: 80px center;
    }
}


/* ==================================================
   FŐOLDALI ELŐNYÖK MODUL FELJEBB HÚZÁSA
   ================================================== */

body.home-body #section-advantages {
    margin-top: -100px !important;
}


/* ==================================================
   TABLET
   ================================================== */

@media (max-width: 991px) {
    body.home-body #section-advantages {
        margin-top: -70px !important;
    }
}


/* ==================================================
   MOBIL
   ================================================== */

@media (max-width: 767px) {
    body.home-body #section-seo_h1 h1 {
        padding-bottom: 17px !important;
    }

    body.home-body #section-seo_h1 h1::after {
        height: 12px !important;
        background-size: 70px 12px !important;
    }

    body.home-body #section-advantages {
        margin-top: -35px !important;
    }
}

/* Pályázati kép és szöveg az Elérhetőségek modul alatt */
#section-contact .contact-module::after {
    content: "A weboldal a Demján Sándor Program keretében és támogatásával valósult meg.";

    display: block;
    box-sizing: border-box;

    width: 100%;
    max-width: 340px;

    margin-top: 20px;
    padding-top: 70px;

    background-image: url("https://dekormamordev.myshoprenter.hu/custom/dekormamordev/image/data/demjan-sandor-program-fekete.png");
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 300px auto;

    font-size: 12px;
    font-weight: 400;
    line-height: 1.7;
    text-align: left;

    color: #111111;
}

/* Mobilnézet */
@media (max-width: 767px) {
    #section-contact .contact-module::after {
        max-width: 100%;
        margin-top: 35px;
        padding-top: 85px;
        background-size: 270px auto;
    }
}
@media only screen and (max-width: 767px) {
    #section-couponbar {
        display: none !important;
    }
}