


/* =======================================================
   0. ALAPBEÁLLÍTÁSOK
======================================================= */

@font-face {
    font-family: "Magerfont";
    src: url("../fonts/Figtree/Figtree-VariableFont_wght.ttf") format("truetype");
}

:root {
    --zold: green;
    --zold-hover: rgb(0, 179, 0);
    --szoveg: rgb(0, 0, 0);
    --szoveg-szurke: rgb(51, 51, 51);
    --kartya-szegely: rgb(231, 231, 231);
    --vilagos-zold: rgb(241, 255, 239);
    --footer-zold: rgb(232, 247, 232);
    --font: "Magerfont", sans-serif;
    --fejlec-magassag: 8vh;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body,
.torzs {
    margin: 0;
    min-height: 100vh;

    background-color: white;
    font-family: var(--font);
    color: var(--szoveg);

    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;

    background-image: url("../kepek/rolunk-hatter.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0.65;

    z-index: -1;
    pointer-events: none;
}

main {
    padding-top: var(--fejlec-magassag);
}

a {
    color: var(--szoveg);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 550;
}

p {
    margin-top: 0;

    color: var(--szoveg);
    font-size: 1.5rem;
    font-weight: 300;
}


/* =======================================================
   1. FIX FEJLÉC / NAVIGÁCIÓ
======================================================= */

.fejlec {
    position: fixed;
    top: 0;
    left: 0;

    display: flex;
    align-items: center;

    width: 100%;
    height: var(--fejlec-magassag);

    padding: 0 3% 0 8%;

    background-color: white;
    box-shadow: 0 -1rem 2rem rgba(0, 0, 0, 0.521);

    z-index: 9999;
}

.balfentlogo {
    height: 100%;
    width: auto;

    margin-right: 0.65rem;

    flex-shrink: 0;
}

/* MAGER + OTTHON & UDVAR blokk */

.marka-blokk {
    display: flex;
    flex-direction: column;
    justify-content: center;

    margin-right: auto;

    line-height: 1;
    flex-shrink: 0;
}

.mager-felirat {
    display: block;

    margin: 0;

    color: black;
    font-weight: 750;
    font-size: 2.5rem;
    line-height: 0.9;
    white-space: nowrap;
}

.mager-alcim {
    display: block;

    margin-top:0rem;

    color: rgb(0, 107, 0);
    font-size: 0.82rem;
    font-weight: 650;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
}

.gombokfejlec {
    display: flex;
    align-items: center;
    gap: 3rem;

    margin-left: 2rem;

    white-space: nowrap;
}

.gombokfejlec a:hover {
    font-size: 1.23rem;
    color: rgb(57, 146, 61);

    text-decoration-line: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;

    transition-duration: 0.15s;
}


/* =======================================================
   2. HERO SZEKCIÓ
======================================================= */

.hero {
    position: relative;
    isolation: isolate;

    display: block;

    width: 100%;
    height: 60vh;

    margin-bottom: 2.4rem;

    background-image: url("../kepek/herokep.webp");
    background-size: cover;
    background-position: right -11rem top 40%;
    background-repeat: no-repeat;

    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.452);
}

.gradient {
    position: absolute;
    inset: 0;
    z-index: 0;

    width: 100%;
    height: 100%;

    margin: 0;

    pointer-events: none;

    background-image: linear-gradient(to left, #ffffff00, #ffffff 60%);
}

.heroszoveg {
    position: relative;
    z-index: 1;

    padding-left: 7.5%;
    padding-top: 1rem;
}

.motto {
    width: 45vw;

    margin: 0 0 1rem 0;

    color: black;
    font-weight: 700;
    font-size: 4rem;
}

.zoldsor {
    color: var(--zold);
}

.magyarazo {
    margin: 0 0 3rem 0;

    color: var(--szoveg-szurke);
    font-size: 1.4rem;
    font-weight: 500;
}

.ajanlatgomb {
    padding: 1rem 4rem;

    color: white;
    background-color: var(--zold);
    border-radius: 0.3rem;
}

.ajanlatgomb:hover {
    background-color: var(--zold-hover);
    box-shadow: 0.6rem 0.6rem 1.6rem rgba(0, 0, 0, 0.45);
}


/* =======================================================
   3. SZOLGÁLTATÁSAINK SZEKCIÓ
======================================================= */

.szezonalis-valasztekok {
    width: 100%;
    min-height: 20rem;

    margin-top: 1rem;

    text-align: center;
}

.szolgáltatásaink-felirat {
    margin: 0;

    text-align: center;
    color: black;

    font-size: 3rem;
    font-weight: 600;
}

#szolgaltatasaink {
    scroll-margin-top: calc(var(--fejlec-magassag) + 2rem);
}


/* =======================================================
   4. SZOLGÁLTATÁS VÁLASZTÓ GOMBOK
======================================================= */

.valasztekok-gombok {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;

    width: min(95%, 86rem);

    margin: 0 auto 2rem auto;
}

.valasztek-gomb {
    position: relative;

    display: flex;
    align-items: center;
    gap: 2rem;

    width: 20rem;
    height: 7rem;

    padding: 1rem;

    background-color: white;
    border: 1px solid var(--kartya-szegely);
    border-radius: 0.6rem;

    font-size: 1.1rem;
    font-weight: 700;

    cursor: pointer;
    flex-shrink: 0;
}

.valasztek-gomb.aktiv {
    color: rgb(15, 158, 15);
    background-color: rgb(245, 255, 243);
    border-color: rgb(201, 219, 196);
    box-shadow: 0 0 1rem rgba(58, 182, 0, 0.438);
}

.ikon {
    display: block;

    width: 5rem;
    height: 5rem;

    object-fit: contain;
    transform: scaleX(1.04);
}

.gomb-szoveg {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    text-align: left;
}

.gomb-cim {
    margin-bottom: 0.5rem;

    font-size: 1.3rem;
}

.gomb-leiras {
    color: rgb(99, 99, 99);
    font-size: 0.9rem;
}


/* =======================================================
   5. MEGJELENŐ AJÁNLATI KÁRTYA
======================================================= */

.szezonalis-ajanlatok {
    display: grid;
    grid-template-columns: 16rem 1fr 14rem;
    align-items: center;
    gap: 2rem;

    width: min(95%, 86rem);
    height: 12rem;

    margin: 2rem auto 0 auto;
    padding: 1rem;

    background-color: var(--vilagos-zold);
    border: 1px solid rgb(194, 230, 194);
    border-radius: 1rem;
}

.kep-doboz {
    width: 100%;
    height: 10rem;

    overflow: hidden;
    border-radius: 0.7rem;
}

.ajanlat-kep {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.munka-tartalom {
    align-self: start;
    text-align: left;
}

.munka-tartalom h2 {
    margin: 0;
    color: var(--zold);
}

.munka-tartalom p {
    color: rgb(36, 36, 36);
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 400;
}

.szolgaltatas-lista {
    display: grid;
    grid-template-columns: max-content max-content;
    column-gap: 8rem;
    row-gap: 0.7rem;

    margin: 1.2rem 0 0 0;
    padding: 0;

    list-style: none;
}

.szolgaltatas-lista li {
    display: flex;
    align-items: center;
    gap: 0.6rem;

    color: rgb(35, 35, 35);
    font-size: 1rem;
}

.szolgaltatas-lista li::before {
    content: "✓";

    display: flex;
    align-items: center;
    justify-content: center;

    width: 1.3rem;
    height: 1.3rem;

    border: 2px solid var(--zold);
    border-radius: 50%;

    color: var(--zold);
    font-size: 0.7rem;
    font-weight: 800;

    flex-shrink: 0;
}

.gomb-doboz {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.tobbet-gomb {
    display: inline-block;

    padding: 0.8rem 1.2rem;

    color: white;
    background-color: var(--zold);
    border-radius: 0.5rem;

    font-weight: 700;
    text-decoration: none;
}


/* =======================================================
   6. HOGYAN DOLGOZUNK FOLYAMATÁBRA
======================================================= */

.folyamat-szekcio {
    width: min(92%, 88rem);

    margin: 3rem auto 4rem auto;
    padding: 1rem 0 1.5rem 0;

    scroll-margin-top: 10vh;
}

.folyamat-fejlec {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;

    text-align: center;

    margin-bottom: 3rem;
}

.folyamat-fejlec h2 {
    margin-bottom: 0.4rem;

    color: rgb(0, 125, 20);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
}

#hogyan-dolgozunk {
    scroll-margin-top: 10vh;
}

.folyamat-fejlec p {
    color: rgb(55, 55, 55);
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    font-style: italic;
}

.diszvonal {
    position: relative;

    width: 5rem;
    height: 0.12rem;

    background-color: rgba(0, 125, 20, 0.65);
}

.diszvonal::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;

    width: 0.7rem;
    height: 0.7rem;

    border: 0.12rem solid rgb(0, 125, 20);
    border-radius: 50%;
    background-color: white;

    transform: translate(-50%, -50%);
}

.folyamat-lepesek {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
}

.folyamat-kartya {
    position: relative;

    min-height: 11rem;
    padding: 3rem 2rem 2rem 2rem;

    background-color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 125, 20, 0.12);
    border-radius: 1.2rem;

    box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.08);
}

.lepes-szam {
    position: absolute;
    top: -1.4rem;
    left: 50%;

    width: 3rem;
    height: 3rem;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;
    background-color: rgb(220, 247, 224);
    color: rgb(0, 125, 20);

    font-size: 1.4rem;
    font-weight: 800;

    transform: translateX(-50%);
}

.lepes-tartalom {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.lepes-ikon {
    width: 4rem;
    height: 4rem;

    display: flex;
    justify-content: center;
    align-items: center;

    color: rgb(0, 125, 20);
    font-size: 2.3rem;

    flex-shrink: 0;
}

.folyamat-kartya h3 {
    margin-bottom: 0.6rem;

    color: rgb(20, 20, 20);
    font-size: 1.35rem;
    font-weight: 800;
}

.folyamat-kartya p {
    color: rgb(55, 55, 55);
    font-size: 1.05rem;
    line-height: 1.45;
}

.folyamat-nyil {
    color: rgb(0, 125, 20);
    font-size: 2.5rem;
    font-weight: 500;
}

.folyamat-gomb-tarto {
    display: flex;
    justify-content: center;

    margin-top: 2rem;
}

.folyamat-gomb {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    padding: 0.9rem 1.7rem;

    background-color: rgb(0, 125, 20);
    color: white;

    border-radius: 0.5rem;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;

    box-shadow: 0 0.4rem 1rem rgba(0, 125, 20, 0.25);

    transition: transform 0.2s ease, background-color 0.2s ease;
}

.folyamat-gomb:hover {
    background-color: rgb(0, 105, 17);
    transform: translateY(-2px);
}


/* =======================================================
   7. FOOTER
======================================================= */

.oldal-footer {
    width: 100%;

    margin-top: 6rem;
    padding: 2rem 8% 1rem;

    background-color: var(--footer-zold);
    border-top: 1px solid rgba(0, 107, 0, 0.15);
}

.footer-tartalom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;

    width: 100%;
}

.footer-oszlop h3 {
    margin: 0 0 0.7rem 0;

    color: rgb(0, 107, 0);
    font-size: 1.1rem;
}

.footer-oszlop p {
    margin: 0 0 0.4rem 0;

    color: rgb(40, 40, 40);
    font-size: 0.95rem;
}

.footer-linkek {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.4rem;
}

.footer-linkek a {
    color: rgb(0, 107, 0);
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
}

.facebook-gomb {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 0.8rem;
    padding: 0.55rem 0.9rem;

    border: 1px solid rgb(0, 107, 0);
    border-radius: 999px;

    color: rgb(0, 107, 0);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;

    transition: 0.2s ease;
}

.facebook-gomb:hover {
    background-color: rgb(0, 107, 0);
    color: white;
}

.footer-also {
    margin-top: 1.5rem;
    padding-top: 0.8rem;

    border-top: 1px solid rgba(0, 107, 0, 0.15);
}

.footer-also p {
    margin: 0;

    color: rgb(80, 80, 80);
    font-size: 0.85rem;
}


/* =======================================================
   8. KÖZEPES NÉZET JAVÍTÁS
   701px - 1450px között
======================================================= */

@media (min-width: 701px) and (max-width: 1450px) {

    .valasztekok-gombok {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;

        width: min(92%, 52rem);

        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2rem;
    }

    .valasztek-gomb {
        width: 100%;
        height: auto;
        min-height: 7rem;

        display: flex;
        align-items: center;
        gap: 1rem;

        padding: 1rem;

        border-radius: 0.9rem;
    }

    .ikon {
        width: 4rem;
        height: 4rem;
        flex-shrink: 0;
    }

    .gomb-cim {
        font-size: 1.15rem;
        line-height: 1.15;
    }

    .gomb-leiras {
        font-size: 0.9rem;
        line-height: 1.35;
    }

    .szezonalis-ajanlatok {
        display: grid;
        grid-template-columns: 16rem minmax(0, 1fr);
        grid-template-areas:
            "kep tartalom"
            "gomb gomb";

        align-items: start;
        gap: 1.25rem;

        width: min(92%, 52rem);
        height: auto;
        min-height: auto;

        margin: 1.5rem auto 0 auto;
        padding: 1.25rem;

        border-radius: 1rem;
    }

    .kep-doboz {
        grid-area: kep;

        width: 100%;
        height: 11rem;

        border-radius: 0.8rem;
        overflow: hidden;
    }

    .munka-tartalom {
        grid-area: tartalom;

        align-self: start;
        text-align: left;
    }

    .munka-tartalom h2 {
        margin: 0 0 0.5rem 0;

        font-size: 1.6rem;
        line-height: 1.15;
    }

    .munka-tartalom p {
        margin: 0;

        font-size: 1rem;
        line-height: 1.45;
    }

    .szolgaltatas-lista {
        display: grid;
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 0.65rem;

        margin-top: 1rem;
    }

    .szolgaltatas-lista li {
        font-size: 0.95rem;
        line-height: 1.35;
    }

    .gomb-doboz {
        grid-area: gomb;

        width: 100%;
        height: auto;

        display: flex;
        justify-content: center;
        align-items: center;
    }

    .tobbet-gomb {
        width: 100%;
        max-width: 18rem;

        padding: 0.9rem 1.2rem;

        text-align: center;
        border-radius: 0.75rem;
    }
}


/* =======================================================
   9. KÖZEPES DESKTOP FEJLÉC
   1051px - 1475px
======================================================= */

@media (min-width: 1051px) and (max-width: 1475px) {

    .fejlec {
        height: 4.6rem;
        min-height: 4.6rem;

        padding-left: 4%;
        padding-right: 2%;

        display: flex;
        align-items: center;
        flex-wrap: nowrap;
    }

    .balfentlogo {
        height: 3.4rem;
        width: auto;

        margin-right: 0.5rem;
        flex-shrink: 0;
    }

    .mager-felirat {
        font-size: 2.05rem;
    }

    .mager-alcim {
        font-size: 0.68rem;
        letter-spacing: 0.11em;
    }

    .gombokfejlec {
        display: flex;
        align-items: center;
        justify-content: flex-end;

        gap: clamp(0.55rem, 1vw, 1.2rem);

        width: auto;
        min-width: 0;

        margin-left: 1.2rem;

        overflow: visible;
        white-space: nowrap;
    }

    .gombokfejlec a {
        display: inline-flex !important;

        font-size: clamp(0.78rem, 0.95vw, 0.98rem);
        font-weight: 650;

        white-space: nowrap;
        flex-shrink: 0;
    }

    .gombokfejlec a:hover {
        font-size: clamp(0.78rem, 0.95vw, 0.98rem);
    }

    .gombokfejlec a:last-child {
        display: inline-flex !important;
    }
}


/* =======================================================
   10. TABLET / IPAD
   701px - 1050px
======================================================= */

@media (min-width: 701px) and (max-width: 1050px) {

    .fejlec {
        height: 4.4rem;
        min-height: 4.4rem;

        padding-left: 4%;
        padding-right: 2%;

        flex-wrap: nowrap;
    }

    .balfentlogo {
        height: 3.1rem;
        margin-right: 0.5rem;
    }

    .mager-felirat {
        font-size: 1.85rem;
    }

    .mager-alcim {
        font-size: 0.6rem;
        letter-spacing: 0.09em;
    }

    .gombokfejlec {
    width: auto;
    gap: 0.6rem;

    margin-left: 0.7rem;

    overflow: visible;
    white-space: nowrap;
}

    .gombokfejlec a,
    .gombokfejlec a:hover {
    font-size: 0.85rem;
    white-space: nowrap;
    }

    .gombokfejlec a:last-child {
    display: inline-flex;
    }

    .hero {
        min-height: 26rem;
        height: auto;

        display: flex;
        align-items: center;

        margin-bottom: 2.5rem;

        background-size: cover;
        background-position: right 26% center;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.28);
    }

    .gradient {
        background-image: linear-gradient(
            to right,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 255, 255, 0.9) 42%,
            rgba(255, 255, 255, 0.42) 68%,
            rgba(255, 255, 255, 0.08) 100%
        );
    }

    .heroszoveg {
    width: 48%;
    max-width: 31rem;

    padding-left: 5%;
    padding-top: 3.3rem;
    padding-bottom: 1rem;
    }

    .motto {
        width: 100%;

        font-size: clamp(2.7rem, 5vw, 3.7rem);
        line-height: 1.06;
        letter-spacing: -0.04em;
    }

    .magyarazo {
        margin-bottom: 1.5rem;

        font-size: 1.05rem;
        line-height: 1.45;
    }

    .ajanlatgomb {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        min-width: 18rem;

        padding: 0.95rem 2.2rem;

        font-size: 1rem;
        font-weight: 800;
    }

    .szezonalis-valasztekok {
        min-height: auto;

        margin-top: 0;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .szolgáltatásaink-felirat {
        margin-bottom: 0.6rem;

        font-size: clamp(2.4rem, 5vw, 3.2rem);
        line-height: 1.15;
        letter-spacing: -0.03em;
    }

    .szezonalis-valasztekok > p {
        max-width: 46rem;

        margin: 0 auto 1.8rem auto;

        font-size: 1.15rem;
        line-height: 1.45;
    }

    .szezonalis-ajanlatok {
        grid-template-columns: 1fr;
        gap: 1.25rem;

        width: min(100%, 44rem);
        height: auto;
        min-height: auto;

        margin-top: 1.5rem;
        padding: 1.25rem;
        border-radius: 1rem;
    }

    .kep-doboz {
        height: 14rem;
        border-radius: 0.8rem;
    }

    .munka-tartalom {
        align-self: auto;
    }

    .munka-tartalom h2 {
        margin-bottom: 0.5rem;

        font-size: 2rem;
        line-height: 1.15;
    }

    .munka-tartalom p {
        margin: 0;

        font-size: 1.05rem;
        line-height: 1.5;
    }

    .szolgaltatas-lista {
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 0.75rem;

        margin-top: 1rem;
    }

    .szolgaltatas-lista li {
        font-size: 1rem;
        line-height: 1.35;
    }

    .gomb-doboz {
        width: 100%;
        height: auto;

        justify-content: stretch;
    }

    .tobbet-gomb {
        width: 100%;

        padding: 1rem 1.2rem;
        border-radius: 0.75rem;

        text-align: center;
        font-size: 1rem;
    }

    .oldal-footer {
        margin-top: 5rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .footer-tartalom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .footer-linkek {
        align-items: flex-start;
    }
}


/* =======================================================
   11. TABLET / FOLYAMATÁBRA
======================================================= */

@media (max-width: 1100px) {

    .folyamat-lepesek {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .folyamat-nyil {
        display: none;
    }

    .folyamat-kartya {
        width: min(100%, 38rem);
        margin: 0 auto;
    }
}


/* =======================================================
   12. MOBIL
   max 700px
======================================================= */

@media (max-width: 700px) {

    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

    body::before {
        opacity: 1;
        background-size: 58rem auto;
        background-position: center top;
        background-repeat: repeat-y;
    }

    main {
        width: 100%;
        padding-top: 0;
    }

    .fejlec {
        position: sticky;

        height: auto;
        min-height: auto;

        flex-wrap: wrap;

        padding: 0.75rem 1rem 0.65rem;

        box-shadow: 0 0.35rem 1.1rem rgba(0, 0, 0, 0.18);
    }

    .balfentlogo {
        width: auto;
        height: 3rem;

        margin-right: 0.5rem;
    }

    .marka-blokk {
        margin-right: auto;
    }

    .mager-felirat {
        font-size: 1.9rem;
        line-height: 0.9;
    }

    .mager-alcim {
        margin-top: 0.18rem;

        font-size: 0.58rem;
        letter-spacing: 0.08em;
    }

    .gombokfejlec {
    width: 100%;

    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 1rem;

    margin-left: 0;

    padding-top: 0.35rem;
    padding-bottom: 0.25rem;

    overflow: visible;
    white-space: nowrap;
    }

    .gombokfejlec::-webkit-scrollbar {
        display: none;
    }

    .gombokfejlec a {
    flex: 0 1 auto;

    padding: 0.43rem 0.5rem;

    background-color: rgb(245, 245, 245);
    border-radius: 999px;

    font-size: clamp(0.82rem, 2.75vw, 0.92rem);
    font-weight: 650;
    line-height: 1;
    white-space: nowrap;
    }

    .gombokfejlec a:hover {
    color: rgb(57, 146, 61);
    background-color: rgb(235, 247, 235);

    font-size: 0.9rem;
    text-decoration: none;
    }

    .hero {
        height: auto;
        min-height: auto;

        display: block;

        margin: 0 0 2.2rem 0;
        padding: 1rem;

        background-position: center;
        box-shadow: none;
    }

    .gradient {
        background-image: linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.9),
            rgba(255, 255, 255, 0.74),
            rgba(255, 255, 255, 0.46)
        );
    }

    .heroszoveg {
        width: 100%;

        padding: 1.25rem 1rem;

        background-color: rgba(255, 255, 255, 0.72);
        border-radius: 1rem;

        box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(4px);
    }

    .motto {
        width: 100%;

        font-size: clamp(2.05rem, 10vw, 2.8rem);
        line-height: 1.07;
        letter-spacing: -0.04em;
    }

    .magyarazo {
        margin-bottom: 1.5rem;

        font-size: 1.03rem;
        line-height: 1.5;
    }

    .ajanlatgomb {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 100%;
        min-height: 3.5rem;

        padding: 1rem 1.2rem;
        border-radius: 0.75rem;

        font-size: 1rem;
        font-weight: 800;
        text-align: center;
    }

    .ajanlatgomb:hover {
        box-shadow: none;
    }

    .szezonalis-valasztekok {
        min-height: auto;

        margin-top: 0;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .szolgáltatásaink-felirat {
        margin-bottom: 0.8rem;

        font-size: clamp(1.85rem, 8vw, 2.35rem);
        line-height: 1.15;
        letter-spacing: -0.03em;
    }

    .szezonalis-valasztekok > p {
        max-width: 38rem;

        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1.5rem;

        font-size: 1.05rem;
        line-height: 1.45;
    }

    .valasztekok-gombok {
        grid-template-columns: 1fr;
        gap: 0.8rem;

        width: 100%;
        max-width: 36rem;

        margin-bottom: 1.5rem;
    }

    .valasztek-gomb {
        width: 100%;
        height: auto;
        min-height: 6.2rem;

        gap: 0.9rem;

        padding: 0.9rem;
        border-radius: 0.9rem;
    }

    .ikon {
        width: 3.8rem;
        height: 3.8rem;
    }

    .gomb-cim {
        font-size: 1.1rem;
        line-height: 1.15;
    }

    .gomb-leiras {
        font-size: 0.85rem;
        line-height: 1.35;
    }

    .szezonalis-ajanlatok {
        grid-template-columns: 1fr;
        gap: 1rem;

        width: 100%;
        max-width: 36rem;
        height: auto;
        min-height: auto;

        margin-top: 1.5rem;
        padding: 1rem;
        border-radius: 1rem;
    }

    .kep-doboz {
        height: 11rem;
        border-radius: 0.8rem;
    }

    .munka-tartalom {
        align-self: auto;
    }

    .munka-tartalom h2 {
        margin-bottom: 0.5rem;

        font-size: 1.45rem;
        line-height: 1.2;
    }

    .munka-tartalom p {
        font-size: 1rem;
        line-height: 1.45;
    }

    .szolgaltatas-lista {
        grid-template-columns: 1fr;
        row-gap: 0.65rem;

        margin-top: 1rem;
    }

    .szolgaltatas-lista li {
        font-size: 0.95rem;
        line-height: 1.35;
    }

    .gomb-doboz {
        width: 100%;
        height: auto;

        justify-content: stretch;
    }

    .tobbet-gomb {
        width: 100%;

        padding: 0.9rem 1rem;
        border-radius: 0.75rem;

        text-align: center;
    }

    .oldal-footer {
        margin-top: 4rem;
        padding: 2rem 1rem 1rem;
    }

    .footer-tartalom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.4rem;
    }

    .footer-linkek {
        align-items: flex-start;
    }

    .footer-linkek a {
        white-space: normal;
    }

    .footer-oszlop p,
    .footer-linkek a {
        font-size: 0.95rem;
        line-height: 1.45;
    }

    .footer-also p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}


/* =======================================================
   13. MOBIL / FOLYAMATÁBRA
======================================================= */

@media (max-width: 650px) {

    .folyamat-szekcio {
        width: min(92%, 32rem);

        margin-top: 2rem;
        margin-bottom: 3rem;
    }

    .folyamat-fejlec {
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .diszvonal {
        display: none;
    }

    .folyamat-kartya {
        padding: 3rem 1.4rem 1.6rem 1.4rem;
    }

    .lepes-tartalom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .lepes-ikon {
        width: 3.5rem;
        height: 3.5rem;

        font-size: 2rem;
    }

    .folyamat-kartya h3 {
        font-size: 1.25rem;
    }

    .folyamat-kartya p {
        font-size: 1rem;
    }

    .folyamat-gomb {
        width: 100%;
        max-width: 18rem;
    }
}


/* =======================================================
   14. NAGYON KICSI MOBIL
   max 390px
======================================================= */

@media (max-width: 390px) {

    .fejlec {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .balfentlogo {
        height: 2.55rem;
    }

    .mager-felirat {
        font-size: 1.55rem;
    }

    .mager-alcim {
        font-size: 0.49rem;
        letter-spacing: 0.06em;
    }

    .gombokfejlec a {
        padding: 0.5rem 0.7rem;
        font-size: 0.84rem;
    }

    .motto {
        font-size: 2rem;
    }

    .magyarazo {
        font-size: 0.98rem;
    }

    .kep-doboz {
        height: 9.5rem;
    }
}


/* =======================================================
   15. HERO MAGASSÁG JAVÍTÁS
   1050px - 1392px
======================================================= */

@media (min-width: 1050px) and (max-width: 1392px) {

    .hero,
    .nyito-szekcio,
    .fooldal-hero {
        min-height: 33rem;
        height: auto;
    }
}