/* =========================================
   PETRUSKA REDŐNY
   FŐ STÍLUSLAP
========================================= */

:root {
    --navy: #062c5b;
    --navy-dark: #05264d;
    --blue: #0d4db8;
    --blue-light: #1762d1;

    --white: #ffffff;
    --black: #111111;
    --text: #333333;
    --gray: #666666;
    --light-gray: #f5f6f8;
    --border: #dddddd;

    --max-width: 1180px;

    --shadow:
        0 5px 20px rgba(0,0,0,0.10);
}


/* =========================================
   ALAPOK
========================================= */

* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text);

    background: var(--white);
}


img {
    max-width: 100%;
    display: block;
}


a {
    color: inherit;
    text-decoration: none;
}


button {
    font-family: inherit;
}


.container {
    width: min(
        var(--max-width),
        calc(100% - 40px)
    );

    margin-left: auto;
    margin-right: auto;
}


.section {
    padding-top: 45px;
    padding-bottom: 45px;
}


.section-title {
    margin-top: 0;
    margin-bottom: 30px;

    text-align: center;

    color: var(--navy);

    font-size: 28px;
    line-height: 1.2;

    font-weight: 800;
}


.section-title::after {
    content: "";

    display: block;

    width: 60px;
    height: 3px;

    margin: 12px auto 0;

    background: var(--blue);
}


.section-title.light {
    color: var(--white);
}


.section-title.light::after {
    background: var(--white);
}


/* =========================================
   FEJLÉC
========================================= */

.header {
    position: sticky;
    top: 0;

    z-index: 1000;

    background: var(--white);

    box-shadow:
        0 2px 12px rgba(0,0,0,0.10);
}


.header-inner {
    min-height: 84px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


/* LOGÓ */

.logo {
    display: flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}


.logo-icon {
    width: 42px;
    height: 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--blue);

    color: var(--white);

    font-size: 30px;

    font-weight: 800;

    border-radius:
        0 18px 0 0;
}


.logo-text {
    display: flex;

    flex-direction: column;
}


.logo-text strong {
    color: #18355d;

    font-size: 26px;

    line-height: 1;

    font-weight: 800;
}


.logo-text strong span {
    font-weight: 400;
}


.logo-text small {
    margin-top: 6px;

    color: #233a5c;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.3px;
}


/* NAVIGÁCIÓ */

.navigation {
    display: flex;

    align-items: center;

    gap: 36px;
}


.navigation a {
    position: relative;

    padding-top: 32px;
    padding-bottom: 32px;

    color: var(--navy);

    font-size: 13px;

    font-weight: 700;
}


.navigation a::after {
    content: "";

    position: absolute;

    left: 0;
    right: 100%;

    bottom: 23px;

    height: 2px;

    background: var(--blue);

    transition: 0.25s;
}


.navigation a:hover::after {
    right: 0;
}


/* MOBIL MENÜ GOMB */

.menu-button {
    display: none;

    border: 0;

    background: transparent;

    color: var(--navy);

    font-size: 30px;

    cursor: pointer;
}


/* =========================================
   HERO
========================================= */

.hero {
    position: relative;

    min-height: 450px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background-image:
        url("images/hero.jpg");

    background-size: cover;

    background-position: center;
}


.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.86) 0%,
            rgba(0,0,0,0.72) 35%,
            rgba(0,0,0,0.20) 75%,
            rgba(0,0,0,0.05) 100%
        );
}


.hero-content {
    position: relative;

    z-index: 2;

    width: 100%;
}


.hero-text {
    width: 55%;

    color: var(--white);
}


.hero h1 {
    margin: 0 0 10px;

    font-size: 60px;

    line-height: 0.92;

    letter-spacing: -2px;

    font-weight: 800;
}


.hero-subtitle {
    margin: 0 0 12px;

    font-size: 18px;

    font-weight: 600;
}


.hero-line {
    width: 60px;
    height: 3px;

    margin: 12px 0 15px;

    background: var(--blue);
}


.hero h2 {
    margin: 0 0 12px;

    font-size: 24px;

    line-height: 1.2;

    font-weight: 800;
}


.hero-description {
    max-width: 520px;

    margin: 0 0 12px;

    font-size: 16px;

    line-height: 1.5;
}


.hero-location {
    margin: 12px 0 20px;

    font-size: 16px;
}


.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 15px;
}


/* =========================================
   GOMBOK
========================================= */

.button {
    min-height: 48px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding:
        0 20px;

    border-radius: 3px;

    font-size: 13px;

    font-weight: 700;

    transition:
        0.2s;
}


.button-primary {
    background: var(--blue);

    color: var(--white);
}


.button-primary:hover {
    background: #0a3f96;

    transform:
        translateY(-1px);
}


.button-outline {
    border:
        1px solid var(--white);

    color: var(--white);

    background:
        rgba(0,0,0,0.15);
}


.button-outline:hover {
    background: var(--white);

    color: var(--navy);
}


/* =========================================
   SZOLGÁLTATÁSOK
========================================= */

.services {
    background: var(--white);
}


.services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


.service-card {
    overflow: hidden;

    border:
        1px solid var(--border);

    background: var(--white);

    box-shadow:
        0 3px 12px rgba(0,0,0,0.06);
}


.service-card > img {
    width: 100%;

    height: 165px;

    object-fit: cover;
}


.service-content {
    position: relative;

    padding:
        0 22px 20px;

    text-align: center;
}


.service-icon {
    width: 60px;
    height: 60px;

    margin:
        -30px auto 12px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        3px solid var(--white);

    border-radius: 50%;

    background: var(--navy);

    color: var(--white);

    font-size: 25px;

    box-shadow:
        0 2px 7px rgba(0,0,0,0.20);
}


.service-content h3 {
    margin: 0 0 10px;

    color: var(--navy);

    font-size: 18px;

    font-weight: 800;
}


.service-content p {
    margin: 0 0 12px;

    font-size: 13px;

    line-height: 1.5;
}


.service-content a {
    color: var(--blue);

    font-size: 12px;

    font-weight: 700;
}


.service-content a:hover {
    text-decoration: underline;
}


/* =========================================
   REFERENCIÁK
========================================= */

.references {
    background: var(--navy);
}


.gallery {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 10px;
}


.gallery a {
    display: block;

    overflow: hidden;

    background: var(--white);
}


.gallery img {
    width: 100%;

    height: 160px;

    object-fit: cover;

    transition:
        transform 0.3s;
}


.gallery a:hover img {
    transform:
        scale(1.05);
}


/* =========================================
   MIÉRT MINKET
========================================= */

.why {
    background: var(--white);
}


.why-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);
}


.why-item {
    padding:
        10px 25px;

    display: grid;

    grid-template-columns:
        45px 1fr;

    gap: 12px;

    border-right:
        1px solid #d0d5dd;
}


.why-item:last-child {
    border-right: 0;
}


.why-icon {
    color: var(--blue);

    font-size: 32px;

    line-height: 1;
}


.why-item h3 {
    margin: 0 0 8px;

    color: var(--navy);

    font-size: 14px;

    line-height: 1.25;

    font-weight: 800;
}


.why-item p {
    margin: 0;

    font-size: 11px;

    line-height: 1.5;
}


/* =========================================
   KAPCSOLAT
========================================= */

.contact {
    background: var(--navy);

    color: var(--white);
}


.contact-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 30px;
}


.contact-item {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;
}


.contact-icon {
    width: 58px;
    height: 58px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid var(--white);

    border-radius: 50%;

    font-size: 24px;
}


.contact-item small {
    display: block;

    margin-bottom: 4px;

    font-size: 11px;

    letter-spacing: 0.5px;
}


.contact-item a,
.contact-item strong {
    display: block;

    color: var(--white);

    font-size: 16px;

    line-height: 1.35;

    font-weight: 700;
}


.contact-item p {
    margin: 3px 0 0;

    font-size: 10px;
}


/* =========================================
   FOOTER
========================================= */

footer {
    padding:
        14px 20px 10px;

    text-align: center;

    background: var(--navy-dark);

    color: var(--white);
}


footer strong {
    display: block;

    font-size: 16px;
}


footer small {
    display: block;

    margin-top: 7px;

    font-size: 11px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .navigation {
        gap: 18px;
    }


    .navigation a {
        font-size: 12px;
    }


    .hero-text {
        width: 65%;
    }


    .hero h1 {
        font-size: 50px;
    }


    .services-grid {
        gap: 12px;
    }


    .why-item {
        padding:
            10px 14px;
    }

}


/* =========================================
   MOBIL
========================================= */

@media (max-width: 720px) {

    .container {
        width:
            calc(100% - 28px);
    }


    .header-inner {
        min-height: 68px;
    }


    .logo-icon {
        width: 32px;
        height: 45px;

        font-size: 24px;
    }


    .logo-text strong {
        font-size: 21px;
    }


    .logo-text small {
        font-size: 6px;
    }


    /* MOBIL NAV */

    .menu-button {
        display: block;
    }


    .navigation {
        position: absolute;

        top: 68px;

        left: 0;
        right: 0;

        display: none;

        flex-direction: column;

        gap: 0;

        background: var(--white);

        border-top:
            1px solid var(--border);

        box-shadow:
            0 8px 15px rgba(0,0,0,0.12);
    }


    .navigation.active {
        display: flex;
    }


    .navigation a {
        padding:
            16px 20px;

        border-bottom:
            1px solid #eeeeee;

        font-size: 13px;
    }


    .navigation a::after {
        display: none;
    }


    /* HERO */

    .hero {
        min-height: 600px;

        align-items: flex-end;

        background-position:
            center;
    }


    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0,0,0,0.86),
                rgba(0,0,0,0.60)
            );
    }


    .hero-text {
        width: 100%;

        padding-bottom: 45px;
    }


    .hero h1 {
        font-size: 43px;
    }


    .hero-subtitle {
        font-size: 15px;
    }


    .hero h2 {
        font-size: 20px;
    }


    .hero-description {
        font-size: 14px;
    }


    .hero-location {
        font-size: 14px;
    }


    .hero-buttons {
        gap: 10px;
    }


    .button {
        flex: 1;

        min-width: 145px;

        padding:
            0 12px;

        font-size: 11px;
    }


    /* SECTION */

    .section {
        padding:
            35px 0;
    }


    .section-title {
        font-size: 23px;

        margin-bottom: 24px;
    }


    /* SERVICES */

    .services-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .service-card > img {
        height: 200px;
    }


    /* REFERENCES */

    .gallery {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .gallery img {
        height: 130px;
    }


    /* WHY */

    .why-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .why-item {
        padding:
            16px 8px;

        border-right: 0;

        border-bottom:
            1px solid #d0d5dd;
    }


    .why-item:nth-child(odd) {
        border-right:
            1px solid #d0d5dd;
    }


    .why-item:nth-last-child(-n+2) {
        border-bottom: 0;
    }


    /* CONTACT */

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .contact-item {
        justify-content:
            flex-start;

        margin-left: 5px;
    }


    /* FOOTER */

    footer strong {
        font-size: 12px;
    }


    footer small {
        font-size: 9px;
    }

}


/* =========================================
   KIS MOBIL
========================================= */

@media (max-width: 420px) {

    .hero h1 {
        font-size: 37px;
    }


    .hero h2 {
        font-size: 18px;
    }


    .gallery img {
        height: 110px;
    }


    .why-grid {
        grid-template-columns: 1fr;
    }


    .why-item {
        border-right: 0 !important;

        border-bottom:
            1px solid #d0d5dd !important;
    }


    .why-item:last-child {
        border-bottom: 0 !important;
    }

}/* =========================================
   KÉP NAGYÍTÁS / LIGHTBOX
========================================= */

.image-lightbox {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 25px;

    background: rgba(0, 0, 0, 0.90);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


.image-lightbox.show {
    opacity: 1;

    visibility: visible;
}


.image-lightbox img {
    max-width: 92vw;

    max-height: 88vh;

    width: auto;
    height: auto;

    object-fit: contain;

    box-shadow:
        0 10px 40px rgba(0,0,0,0.5);
}


.lightbox-close {
    position: absolute;

    top: 15px;
    right: 20px;

    width: 45px;
    height: 45px;

    border: 0;

    background: transparent;

    color: white;

    font-size: 40px;

    line-height: 1;

    cursor: pointer;
}


/* =========================================
   VISSZA A TETEJÉRE
========================================= */

.back-to-top {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 900;

    width: 46px;
    height: 46px;

    border: 0;

    border-radius: 50%;

    background: var(--blue);

    color: white;

    font-size: 24px;

    cursor: pointer;

    box-shadow:
        0 5px 18px rgba(0,0,0,0.25);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(10px);

    transition:
        0.25s;
}


.back-to-top.visible {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}


.back-to-top:hover {
    background: var(--blue-light);

    transform:
        translateY(-2px);
}


/* =========================================
   MOBIL LIGHTBOX
========================================= */

@media (max-width: 600px) {

    .image-lightbox {
        padding: 15px;
    }


    .image-lightbox img {
        max-width: 96vw;

        max-height: 82vh;
    }


    .lightbox-close {
        top: 8px;

        right: 10px;

        font-size: 36px;
    }


    .back-to-top {
        right: 14px;

        bottom: 14px;

        width: 42px;

        height: 42px;
    }
/* =========================================
   KÉP NAGYÍTÁS / LIGHTBOX
========================================= */

.image-lightbox {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 25px;

    background: rgba(0, 0, 0, 0.90);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


.image-lightbox.show {
    opacity: 1;

    visibility: visible;
}


.image-lightbox img {
    max-width: 92vw;

    max-height: 88vh;

    width: auto;
    height: auto;

    object-fit: contain;

    box-shadow:
        0 10px 40px rgba(0,0,0,0.5);
}


.lightbox-close {
    position: absolute;

    top: 15px;
    right: 20px;

    width: 45px;
    height: 45px;

    border: 0;

    background: transparent;

    color: white;

    font-size: 40px;

    line-height: 1;

    cursor: pointer;
}


/* =========================================
   VISSZA A TETEJÉRE
========================================= */

.back-to-top {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 900;

    width: 46px;
    height: 46px;

    border: 0;

    border-radius: 50%;

    background: var(--blue);

    color: white;

    font-size: 24px;

    cursor: pointer;

    box-shadow:
        0 5px 18px rgba(0,0,0,0.25);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(10px);

    transition:
        0.25s;
}


.back-to-top.visible {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}


.back-to-top:hover {
    background: var(--blue-light);

    transform:
        translateY(-2px);
}


/* =========================================
   MOBIL LIGHTBOX
========================================= */

@media (max-width: 600px) {

    .image-lightbox {
        padding: 15px;
    }


    .image-lightbox img {
        max-width: 96vw;

        max-height: 82vh;
    }


    .lightbox-close {
        top: 8px;

        right: 10px;

        font-size: 36px;
    }


    .back-to-top {
        right: 14px;

        bottom: 14px;

        width: 42px;

        height: 42px;
    }
/* =========================================
   KÉP NAGYÍTÁS / LIGHTBOX
========================================= */

.image-lightbox {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 25px;

    background: rgba(0, 0, 0, 0.90);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


.image-lightbox.show {
    opacity: 1;

    visibility: visible;
}


.image-lightbox img {
    max-width: 92vw;

    max-height: 88vh;

    width: auto;
    height: auto;

    object-fit: contain;

    box-shadow:
        0 10px 40px rgba(0,0,0,0.5);
}


.lightbox-close {
    position: absolute;

    top: 15px;
    right: 20px;

    width: 45px;
    height: 45px;

    border: 0;

    background: transparent;

    color: white;

    font-size: 40px;

    line-height: 1;

    cursor: pointer;
}


/* =========================================
   VISSZA A TETEJÉRE
========================================= */

.back-to-top {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 900;

    width: 46px;
    height: 46px;

    border: 0;

    border-radius: 50%;

    background: var(--blue);

    color: white;

    font-size: 24px;

    cursor: pointer;

    box-shadow:
        0 5px 18px rgba(0,0,0,0.25);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(10px);

    transition:
        0.25s;
}


.back-to-top.visible {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}


.back-to-top:hover {
    background: var(--blue-light);

    transform:
        translateY(-2px);
}


/* =========================================
   MOBIL LIGHTBOX
========================================= */

@media (max-width: 600px) {

    .image-lightbox {
        padding: 15px;
    }


    .image-lightbox img {
        max-width: 96vw;

        max-height: 82vh;
    }


    .lightbox-close {
        top: 8px;

        right: 10px;

        font-size: 36px;
    }


    .back-to-top {
        right: 14px;

        bottom: 14px;

        width: 42px;

        height: 42px;
    }
/* =========================================
   KÉP NAGYÍTÁS / LIGHTBOX
========================================= */

.image-lightbox {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 25px;

    background: rgba(0, 0, 0, 0.90);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


.image-lightbox.show {
    opacity: 1;

    visibility: visible;
}


.image-lightbox img {
    max-width: 92vw;

    max-height: 88vh;

    width: auto;
    height: auto;

    object-fit: contain;

    box-shadow:
        0 10px 40px rgba(0,0,0,0.5);
}


.lightbox-close {
    position: absolute;

    top: 15px;
    right: 20px;

    width: 45px;
    height: 45px;

    border: 0;

    background: transparent;

    color: white;

    font-size: 40px;

    line-height: 1;

    cursor: pointer;
}


/* =========================================
   VISSZA A TETEJÉRE
========================================= */

.back-to-top {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 900;

    width: 46px;
    height: 46px;

    border: 0;

    border-radius: 50%;

    background: var(--blue);

    color: white;

    font-size: 24px;

    cursor: pointer;

    box-shadow:
        0 5px 18px rgba(0,0,0,0.25);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(10px);

    transition:
        0.25s;
}


.back-to-top.visible {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}


.back-to-top:hover {
    background: var(--blue-light);

    transform:
        translateY(-2px);
}


/* =========================================
   MOBIL LIGHTBOX
========================================= */

@media (max-width: 600px) {

    .image-lightbox {
        padding: 15px;
    }


    .image-lightbox img {
        max-width: 96vw;

        max-height: 82vh;
    }


    .lightbox-close {
        top: 8px;

        right: 10px;

        font-size: 36px;
    }


    .back-to-top {
        right: 14px;

        bottom: 14px;

        width: 42px;

        height: 42px;
    }
image-lightbox {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 25px;

    background: rgba(0, 0, 0, 0.90);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


.image-lightbox.show {
    opacity: 1;

    visibility: visible;
}


.image-lightbox img {
    max-width: 92vw;

    max-height: 88vh;

    width: auto;
    height: auto;

    object-fit: contain;

    box-shadow:
        0 10px 40px rgba(0,0,0,0.5);
}


.lightbox-close {
    position: absolute;

    top: 15px;
    right: 20px;

    width: 45px;
    height: 45px;

    border: 0;

    background: transparent;

    color: white;

    font-size: 40px;

    line-height: 1;

    cursor: pointer;
}


/* =========================================
   VISSZA A TETEJÉRE
========================================= */

.back-to-top {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 900;

    width: 46px;
    height: 46px;

    border: 0;

    border-radius: 50%;

    background: var(--blue);

    color: white;

    font-size: 24px;

    cursor: pointer;

    box-shadow:
        0 5px 18px rgba(0,0,0,0.25);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(10px);

    transition:
        0.25s;
}


.back-to-top.visible {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}


.back-to-top:hover {
    background: var(--blue-light);

    transform:
        translateY(-2px);
}


/* =========================================
   MOBIL LIGHTBOX
========================================= */

@media (max-width: 600px) {

    .image-lightbox {
        padding: 15px;
    }


    .image-lightbox img {
        max-width: 96vw;

        max-height: 82vh;
    }


    .lightbox-close {
        top: 8px;

        right: 10px;

        font-size: 36px;
    }


    .back-to-top {
        right: 14px;

        bottom: 14px;

        width: 42px;

        height: 42px;
    }

image-lightbox {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 25px;

    background: rgba(0, 0, 0, 0.90);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


.image-lightbox.show {
    opacity: 1;

    visibility: visible;
}


.image-lightbox img {
    max-width: 92vw;

    max-height: 88vh;

    width: auto;
    height: auto;

    object-fit: contain;

    box-shadow:
        0 10px 40px rgba(0,0,0,0.5);
}


.lightbox-close {
    position: absolute;

    top: 15px;
    right: 20px;

    width: 45px;
    height: 45px;

    border: 0;

    background: transparent;

    color: white;

    font-size: 40px;

    line-height: 1;

    cursor: pointer;
}


/* =========================================
   VISSZA A TETEJÉRE
========================================= */

.back-to-top {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 900;

    width: 46px;
    height: 46px;

    border: 0;

    border-radius: 50%;

    background: var(--blue);

    color: white;

    font-size: 24px;

    cursor: pointer;

    box-shadow:
        0 5px 18px rgba(0,0,0,0.25);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(10px);

    transition:
        0.25s;
}


.back-to-top.visible {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}


.back-to-top:hover {
    background: var(--blue-light);

    transform:
        translateY(-2px);
}


/* =========================================
   MOBIL LIGHTBOX
========================================= */

@media (max-width: 600px) {

    .image-lightbox {
        padding: 15px;
    }


    .image-lightbox img {
        max-width: 96vw;

        max-height: 82vh;
    }


    .lightbox-close {
        top: 8px;

        right: 10px;

        font-size: 36px;
    }


    .back-to-top {
        right: 14px;

        bottom: 14px;

        width: 42px;

        height: 42px;
    }
image-lightbox {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 25px;

    background: rgba(0, 0, 0, 0.90);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


.image-lightbox.show {
    opacity: 1;

    visibility: visible;
}


.image-lightbox img {
    max-width: 92vw;

    max-height: 88vh;

    width: auto;
    height: auto;

    object-fit: contain;

    box-shadow:
        0 10px 40px rgba(0,0,0,0.5);
}


.lightbox-close {
    position: absolute;

    top: 15px;
    right: 20px;

    width: 45px;
    height: 45px;

    border: 0;

    background: transparent;

    color: white;

    font-size: 40px;

    line-height: 1;

    cursor: pointer;
}


/* =========================================
   VISSZA A TETEJÉRE
========================================= */

.back-to-top {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 900;

    width: 46px;
    height: 46px;

    border: 0;

    border-radius: 50%;

    background: var(--blue);

    color: white;

    font-size: 24px;

    cursor: pointer;

    box-shadow:
        0 5px 18px rgba(0,0,0,0.25);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(10px);

    transition:
        0.25s;
}


.back-to-top.visible {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}


.back-to-top:hover {
    background: var(--blue-light);

    transform:
        translateY(-2px);
}


/* =========================================
   MOBIL LIGHTBOX
========================================= */

@media (max-width: 600px) {

    .image-lightbox {
        padding: 15px;
    }


    .image-lightbox img {
        max-width: 96vw;

        max-height: 82vh;
    }


    .lightbox-close {
        top: 8px;

        right: 10px;

        font-size: 36px;
    }


    .back-to-top {
        right: 14px;

        bottom: 14px;

        width: 42px;

        height: 42px;
    }

image-lightbox {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 25px;

    background: rgba(0, 0, 0, 0.90);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


.image-lightbox.show {
    opacity: 1;

    visibility: visible;
}


.image-lightbox img {
    max-width: 92vw;

    max-height: 88vh;

    width: auto;
    height: auto;

    object-fit: contain;

    box-shadow:
        0 10px 40px rgba(0,0,0,0.5);
}


.lightbox-close {
    position: absolute;

    top: 15px;
    right: 20px;

    width: 45px;
    height: 45px;

    border: 0;

    background: transparent;

    color: white;

    font-size: 40px;

    line-height: 1;

    cursor: pointer;
}


/* =========================================
   VISSZA A TETEJÉRE
========================================= */

.back-to-top {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 900;

    width: 46px;
    height: 46px;

    border: 0;

    border-radius: 50%;

    background: var(--blue);

    color: white;

    font-size: 24px;

    cursor: pointer;

    box-shadow:
        0 5px 18px rgba(0,0,0,0.25);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(10px);

    transition:
        0.25s;
}


.back-to-top.visible {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}


.back-to-top:hover {
    background: var(--blue-light);

    transform:
        translateY(-2px);
}


/* =========================================
   MOBIL LIGHTBOX
========================================= */

@media (max-width: 600px) {

    .image-lightbox {
        padding: 15px;
    }


    .image-lightbox img {
        max-width: 96vw;

        max-height: 82vh;
    }


    .lightbox-close {
        top: 8px;

        right: 10px;

        font-size: 36px;
    }


    .back-to-top {
        right: 14px;

        bottom: 14px;

        width: 42px;

        height: 42px;
    }
image-lightbox {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 25px;

    background: rgba(0, 0, 0, 0.90);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


.image-lightbox.show {
    opacity: 1;

    visibility: visible;
}


.image-lightbox img {
    max-width: 92vw;

    max-height: 88vh;

    width: auto;
    height: auto;

    object-fit: contain;

    box-shadow:
        0 10px 40px rgba(0,0,0,0.5);
}


.lightbox-close {
    position: absolute;

    top: 15px;
    right: 20px;

    width: 45px;
    height: 45px;

    border: 0;

    background: transparent;

    color: white;

    font-size: 40px;

    line-height: 1;

    cursor: pointer;
}


/* =========================================
   VISSZA A TETEJÉRE
========================================= */

.back-to-top {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 900;

    width: 46px;
    height: 46px;

    border: 0;

    border-radius: 50%;

    background: var(--blue);

    color: white;

    font-size: 24px;

    cursor: pointer;

    box-shadow:
        0 5px 18px rgba(0,0,0,0.25);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(10px);

    transition:
        0.25s;
}


.back-to-top.visible {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}


.back-to-top:hover {
    background: var(--blue-light);

    transform:
        translateY(-2px);
}


/* =========================================
   MOBIL LIGHTBOX
========================================= */

@media (max-width: 600px) {

    .image-lightbox {
        padding: 15px;
    }


    .image-lightbox img {
        max-width: 96vw;

        max-height: 82vh;
    }


    .lightbox-close {
        top: 8px;

        right: 10px;

        font-size: 36px;
    }


    .back-to-top {
        right: 14px;

        bottom: 14px;

        width: 42px;

        height: 42px;
    }
/* =========================================
   KÉP NAGYÍTÁS / LIGHTBOX
========================================= */

.image-lightbox {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 25px;

    background: rgba(0, 0, 0, 0.90);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


.image-lightbox.show {
    opacity: 1;

    visibility: visible;
}


.image-lightbox img {
    max-width: 92vw;

    max-height: 88vh;

    width: auto;
    height: auto;

    object-fit: contain;

    box-shadow:
        0 10px 40px rgba(0,0,0,0.5);
}


.lightbox-close {
    position: absolute;

    top: 15px;
    right: 20px;

    width: 45px;
    height: 45px;

    border: 0;

    background: transparent;

    color: white;

    font-size: 40px;

    line-height: 1;

    cursor: pointer;
}


/* =========================================
   VISSZA A TETEJÉRE
========================================= */

.back-to-top {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 900;

    width: 46px;
    height: 46px;

    border: 0;

    border-radius: 50%;

    background: var(--blue);

    color: white;

    font-size: 24px;

    cursor: pointer;

    box-shadow:
        0 5px 18px rgba(0,0,0,0.25);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(10px);

    transition:
        0.25s;
}


.back-to-top.visible {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}


.back-to-top:hover {
    background: var(--blue-light);

    transform:
        translateY(-2px);
}


/* =========================================
   MOBIL LIGHTBOX
========================================= */

@media (max-width: 600px) {

    .image-lightbox {
        padding: 15px;
    }


    .image-lightbox img {
        max-width: 96vw;

        max-height: 82vh;
    }


    .lightbox-close {
        top: 8px;

        right: 10px;

        font-size: 36px;
    }


    .back-to-top {
        right: 14px;

        bottom: 14px;

        width: 42px;

        height: 42px;
    }
/* =========================================
   KÉP NAGYÍTÁS / LIGHTBOX
========================================= */

.image-lightbox {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 25px;

    background: rgba(0, 0, 0, 0.90);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


.image-lightbox.show {
    opacity: 1;

    visibility: visible;
}


.image-lightbox img {
    max-width: 92vw;

    max-height: 88vh;

    width: auto;
    height: auto;

    object-fit: contain;

    box-shadow:
        0 10px 40px rgba(0,0,0,0.5);
}


.lightbox-close {
    position: absolute;

    top: 15px;
    right: 20px;

    width: 45px;
    height: 45px;

    border: 0;

    background: transparent;

    color: white;

    font-size: 40px;

    line-height: 1;

    cursor: pointer;
}


/* =========================================
   VISSZA A TETEJÉRE
========================================= */

.back-to-top {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 900;

    width: 46px;
    height: 46px;

    border: 0;

    border-radius: 50%;

    background: var(--blue);

    color: white;

    font-size: 24px;

    cursor: pointer;

    box-shadow:
        0 5px 18px rgba(0,0,0,0.25);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(10px);

    transition:
        0.25s;
}


.back-to-top.visible {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}


.back-to-top:hover {
    background: var(--blue-light);

    transform:
        translateY(-2px);
}


/* =========================================
   MOBIL LIGHTBOX
========================================= */

@media (max-width: 600px) {

    .image-lightbox {
        padding: 15px;
    }


    .image-lightbox img {
        max-width: 96vw;

        max-height: 82vh;
    }


    .lightbox-close {
        top: 8px;

        right: 10px;

        font-size: 36px;
    }


    .back-to-top {
        right: 14px;

        bottom: 14px;

        width: 42px;

        height: 42px;
    }
/* =========================================
   KÉP NAGYÍTÁS / LIGHTBOX
========================================= */

.image-lightbox {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 25px;

    background: rgba(0, 0, 0, 0.90);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


.image-lightbox.show {
    opacity: 1;

    visibility: visible;
}


.image-lightbox img {
    max-width: 92vw;

    max-height: 88vh;

    width: auto;
    height: auto;

    object-fit: contain;

    box-shadow:
        0 10px 40px rgba(0,0,0,0.5);
}


.lightbox-close {
    position: absolute;

    top: 15px;
    right: 20px;

    width: 45px;
    height: 45px;

    border: 0;

    background: transparent;

    color: white;

    font-size: 40px;

    line-height: 1;

    cursor: pointer;
}


/* =========================================
   VISSZA A TETEJÉRE
========================================= */

.back-to-top {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 900;

    width: 46px;
    height: 46px;

    border: 0;

    border-radius: 50%;

    background: var(--blue);

    color: white;

    font-size: 24px;

    cursor: pointer;

    box-shadow:
        0 5px 18px rgba(0,0,0,0.25);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(10px);

    transition:
        0.25s;
}


.back-to-top.visible {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}


.back-to-top:hover {
    background: var(--blue-light);

    transform:
        translateY(-2px);
}


/* =========================================
   MOBIL LIGHTBOX
========================================= */

@media (max-width: 600px) {

    .image-lightbox {
        padding: 15px;
    }


    .image-lightbox img {
        max-width: 96vw;

        max-height: 82vh;
    }


    .lightbox-close {
        top: 8px;

        right: 10px;

        font-size: 36px;
    }


    .back-to-top {
        right: 14px;

        bottom: 14px;

        width: 42px;

        height: 42px;
    }
/* =========================================
   KÉP NAGYÍTÁS / LIGHTBOX
========================================= */

.image-lightbox {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 25px;

    background: rgba(0, 0, 0, 0.90);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


.image-lightbox.show {
    opacity: 1;

    visibility: visible;
}


.image-lightbox img {
    max-width: 92vw;

    max-height: 88vh;

    width: auto;
    height: auto;

    object-fit: contain;

    box-shadow:
        0 10px 40px rgba(0,0,0,0.5);
}


.lightbox-close {
    position: absolute;

    top: 15px;
    right: 20px;

    width: 45px;
    height: 45px;

    border: 0;

    background: transparent;

    color: white;

    font-size: 40px;

    line-height: 1;

    cursor: pointer;
}


/* =========================================
   VISSZA A TETEJÉRE
========================================= */

.back-to-top {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 900;

    width: 46px;
    height: 46px;

    border: 0;

    border-radius: 50%;

    background: var(--blue);

    color: white;

    font-size: 24px;

    cursor: pointer;

    box-shadow:
        0 5px 18px rgba(0,0,0,0.25);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(10px);

    transition:
        0.25s;
}


.back-to-top.visible {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}


.back-to-top:hover {
    background: var(--blue-light);

    transform:
        translateY(-2px);
}


/* =========================================
   MOBIL LIGHTBOX
========================================= */

@media (max-width: 600px) {

    .image-lightbox {
        padding: 15px;
    }


    .image-lightbox img {
        max-width: 96vw;

        max-height: 82vh;
    }


    .lightbox-close {
        top: 8px;

        right: 10px;

        font-size: 36px;
    }


    .back-to-top {
        right: 14px;

        bottom: 14px;

        width: 42px;

        height: 42px;
    }
/* =========================================
   KÉP NAGYÍTÁS / LIGHTBOX
========================================= */

.image-lightbox {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 25px;

    background: rgba(0, 0, 0, 0.90);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


.image-lightbox.show {
    opacity: 1;

    visibility: visible;
}


.image-lightbox img {
    max-width: 92vw;

    max-height: 88vh;

    width: auto;
    height: auto;

    object-fit: contain;

    box-shadow:
        0 10px 40px rgba(0,0,0,0.5);
}


.lightbox-close {
    position: absolute;

    top: 15px;
    right: 20px;

    width: 45px;
    height: 45px;

    border: 0;

    background: transparent;

    color: white;

    font-size: 40px;

    line-height: 1;

    cursor: pointer;
}


/* =========================================
   VISSZA A TETEJÉRE
========================================= */

.back-to-top {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 900;

    width: 46px;
    height: 46px;

    border: 0;

    border-radius: 50%;

    background: var(--blue);

    color: white;

    font-size: 24px;

    cursor: pointer;

    box-shadow:
        0 5px 18px rgba(0,0,0,0.25);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(10px);

    transition:
        0.25s;
}


.back-to-top.visible {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}


.back-to-top:hover {
    background: var(--blue-light);

    transform:
        translateY(-2px);
}


/* =========================================
   MOBIL LIGHTBOX
========================================= */

@media (max-width: 600px) {

    .image-lightbox {
        padding: 15px;
    }


    .image-lightbox img {
        max-width: 96vw;

        max-height: 82vh;
    }


    .lightbox-close {
        top: 8px;

        right: 10px;

        font-size: 36px;
    }


    .back-to-top {
        right: 14px;

        bottom: 14px;

        width: 42px;

        height: 42px;
    }/* =========================================
   KÉP NAGYÍTÁS / LIGHTBOX
========================================= */

.image-lightbox {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 25px;

    background: rgba(0, 0, 0, 0.90);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


.image-lightbox.show {
    opacity: 1;

    visibility: visible;
}


.image-lightbox img {
    max-width: 92vw;

    max-height: 88vh;

    width: auto;
    height: auto;

    object-fit: contain;

    box-shadow:
        0 10px 40px rgba(0,0,0,0.5);
}


.lightbox-close {
    position: absolute;

    top: 15px;
    right: 20px;

    width: 45px;
    height: 45px;

    border: 0;

    background: transparent;

    color: white;

    font-size: 40px;

    line-height: 1;

    cursor: pointer;
}


/* =========================================
   VISSZA A TETEJÉRE
========================================= */

.back-to-top {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 900;

    width: 46px;
    height: 46px;

    border: 0;

    border-radius: 50%;

    background: var(--blue);

    color: white;

    font-size: 24px;

    cursor: pointer;

    box-shadow:
        0 5px 18px rgba(0,0,0,0.25);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(10px);

    transition:
        0.25s;
}


.back-to-top.visible {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}


.back-to-top:hover {
    background: var(--blue-light);

    transform:
        translateY(-2px);
}


/* =========================================
   MOBIL LIGHTBOX
========================================= */

@media (max-width: 600px) {

    .image-lightbox {
        padding: 15px;
    }


    .image-lightbox img {
        max-width: 96vw;

        max-height: 82vh;
    }


    .lightbox-close {
        top: 8px;

        right: 10px;

        font-size: 36px;
    }


    .back-to-top {
        right: 14px;

        bottom: 14px;

        width: 42px;

        height: 42px;
    }
/* =========================================
   KÉP NAGYÍTÁS / LIGHTBOX
========================================= */

.image-lightbox {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 25px;

    background: rgba(0, 0, 0, 0.90);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


.image-lightbox.show {
    opacity: 1;

    visibility: visible;
}


.image-lightbox img {
    max-width: 92vw;

    max-height: 88vh;

    width: auto;
    height: auto;

    object-fit: contain;

    box-shadow:
        0 10px 40px rgba(0,0,0,0.5);
}


.lightbox-close {
    position: absolute;

    top: 15px;
    right: 20px;

    width: 45px;
    height: 45px;

    border: 0;

    background: transparent;

    color: white;

    font-size: 40px;

    line-height: 1;

    cursor: pointer;
}


/* =========================================
   VISSZA A TETEJÉRE
========================================= */

.back-to-top {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 900;

    width: 46px;
    height: 46px;

    border: 0;

    border-radius: 50%;

    background: var(--blue);

    color: white;

    font-size: 24px;

    cursor: pointer;

    box-shadow:
        0 5px 18px rgba(0,0,0,0.25);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(10px);

    transition:
        0.25s;
}


.back-to-top.visible {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}


.back-to-top:hover {
    background: var(--blue-light);

    transform:
        translateY(-2px);
}


/* =========================================
   MOBIL LIGHTBOX
========================================= */

@media (max-width: 600px) {

    .image-lightbox {
        padding: 15px;
    }


    .image-lightbox img {
        max-width: 96vw;

        max-height: 82vh;
    }


    .lightbox-close {
        top: 8px;

        right: 10px;

        font-size: 36px;
    }


    .back-to-top {
        right: 14px;

        bottom: 14px;

        width: 42px;

        height: 42px;
    }
/* =========================================
   KÉP NAGYÍTÁS / LIGHTBOX
========================================= */

.image-lightbox {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 25px;

    background: rgba(0, 0, 0, 0.90);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


.image-lightbox.show {
    opacity: 1;

    visibility: visible;
}


.image-lightbox img {
    max-width: 92vw;

    max-height: 88vh;

    width: auto;
    height: auto;

    object-fit: contain;

    box-shadow:
        0 10px 40px rgba(0,0,0,0.5);
}


.lightbox-close {
    position: absolute;

    top: 15px;
    right: 20px;

    width: 45px;
    height: 45px;

    border: 0;

    background: transparent;

    color: white;

    font-size: 40px;

    line-height: 1;

    cursor: pointer;
}


/* =========================================
   VISSZA A TETEJÉRE
========================================= */

.back-to-top {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 900;

    width: 46px;
    height: 46px;

    border: 0;

    border-radius: 50%;

    background: var(--blue);

    color: white;

    font-size: 24px;

    cursor: pointer;

    box-shadow:
        0 5px 18px rgba(0,0,0,0.25);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(10px);

    transition:
        0.25s;
}


.back-to-top.visible {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}


.back-to-top:hover {
    background: var(--blue-light);

    transform:
        translateY(-2px);
}


/* =========================================
   MOBIL LIGHTBOX
========================================= */

@media (max-width: 600px) {

    .image-lightbox {
        padding: 15px;
    }


    .image-lightbox img {
        max-width: 96vw;

        max-height: 82vh;
    }


    .lightbox-close {
        top: 8px;

        right: 10px;

        font-size: 36px;
    }


    .back-to-top {
        right: 14px;

        bottom: 14px;

        width: 42px;

        height: 42px;
    }
/* =========================================
   KÉP NAGYÍTÁS / LIGHTBOX
========================================= */
.image-lightbox {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 25px;

    background: rgba(0, 0, 0, 0.90);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


.image-lightbox.show {
    opacity: 1;

    visibility: visible;
}


.image-lightbox img {
    max-width: 92vw;

    max-height: 88vh;

    width: auto;
    height: auto;

    object-fit: contain;

    box-shadow:
        0 10px 40px rgba(0,0,0,0.5);
}


.lightbox-close {
    position: absolute;

    top: 15px;
    right: 20px;

    width: 45px;
    height: 45px;

    border: 0;

    background: transparent;

    color: white;

    font-size: 40px;

    line-height: 1;

    cursor: pointer;
}


/* =========================================
   VISSZA A TETEJÉRE
========================================= */

.back-to-top {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 900;

    width: 46px;
    height: 46px;

    border: 0;

    border-radius: 50%;

    background: var(--blue);

    color: white;

    font-size: 24px;

    cursor: pointer;

    box-shadow:
        0 5px 18px rgba(0,0,0,0.25);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(10px);

    transition:
        0.25s;
}


.back-to-top.visible {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}


.back-to-top:hover {
    background: var(--blue-light);

    transform:
        translateY(-2px);
}


/* =========================================
   MOBIL LIGHTBOX
========================================= */

@media (max-width: 600px) {

    .image-lightbox {
        padding: 15px;
    }


    .image-lightbox img {
        max-width: 96vw;

        max-height: 82vh;
    }


    .lightbox-close {
        top: 8px;

        right: 10px;

        font-size: 36px;
    }


    .back-to-top {
        right: 14px;

        bottom: 14px;

        width: 42px;

        height: 42px;
    }

}
/* =========================================
   MOBIL JAVÍTÁS
========================================= */

@media (max-width: 720px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .container {
        width: calc(100% - 30px);
        max-width: 100%;
    }

    /* FEJLÉC */

    .header {
        position: sticky;
        top: 0;
        width: 100%;
    }

    .header-inner {
        min-height: 65px;
        width: calc(100% - 24px);
    }

    .logo {
        gap: 8px;
    }

    .logo-icon {
        width: 30px;
        height: 42px;
        font-size: 22px;
    }

    .logo-text strong {
        font-size: 19px;
    }

    .logo-text small {
        font-size: 5px;
        letter-spacing: 0;
    }

    .menu-button {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 44px;
        height: 44px;

        padding: 0;

        font-size: 28px;
        line-height: 1;
    }

    .navigation {
        position: absolute;

        top: 65px;
        left: 0;
        right: 0;

        width: 100%;

        display: none;

        flex-direction: column;

        gap: 0;

        background: #ffffff;

        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .navigation.active {
        display: flex;
    }

    .navigation a {
        width: 100%;

        padding: 15px 20px;

        color: var(--navy);

        font-size: 14px;

        border-bottom: 1px solid #eeeeee;
    }

    /* HERO */

    .hero {
        width: 100%;
        min-height: 620px;

        background-size: cover;
        background-position: center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(0,0,0,0.35) 0%,
                rgba(0,0,0,0.88) 100%
            );
    }

    .hero-content {
        width: 100%;
    }

    .hero-text {
        width: 100%;
        max-width: 100%;

        padding: 50px 0 40px;
    }

    .hero h1 {
        margin-bottom: 12px;

        font-size: clamp(38px, 12vw, 52px);

        line-height: 0.95;

        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 1.4;
    }

    .hero h2 {
        font-size: 19px;
        line-height: 1.25;
    }

    .hero-description {
        max-width: 100%;

        font-size: 14px;
        line-height: 1.5;
    }

    .hero-location {
        font-size: 14px;
        line-height: 1.4;
    }

    .hero-buttons {
        width: 100%;

        display: flex;
        flex-direction: column;

        gap: 10px;
    }

    .button {
        width: 100%;
        min-height: 50px;

        flex: none;

        font-size: 12px;
    }

    /* SZOLGÁLTATÁSOK */

    .section {
        padding: 38px 0;
    }

    .section-title {
        font-size: 23px;
        line-height: 1.2;
    }

    .services-grid {
        grid-template-columns: 1fr;

        width: 100%;

        gap: 20px;
    }

    .service-card {
        width: 100%;
    }

    .service-card > img {
        width: 100%;
        height: 210px;

        object-fit: cover;
    }

    .service-content {
        padding:
            0 20px 22px;
    }

    .service-content p {
        font-size: 13px;
    }

    /* REFERENCIÁK */

    .gallery {
        grid-template-columns: 1fr 1fr;

        gap: 8px;
    }

    .gallery img {
        width: 100%;
        height: 120px;

        object-fit: cover;
    }

    /* MIÉRT MI */

    .why-grid {
        grid-template-columns: 1fr 1fr;

        width: 100%;
    }

    .why-item {
        width: 100%;

        padding: 18px 10px;

        display: flex;

        flex-direction: column;

        align-items: center;

        text-align: center;

        border-right: 0;
    }

    .why-item:nth-child(odd) {
        border-right:
            1px solid #d0d5dd;
    }

    .why-icon {
        font-size: 30px;
    }

    .why-item h3 {
        font-size: 12px;
    }

    .why-item p {
        font-size: 10px;
    }

    /* KAPCSOLAT */

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .contact-item {
        width: 100%;

        justify-content: flex-start;
    }

    .contact-item a,
    .contact-item strong {
        font-size: 15px;

        word-break: break-word;
    }

    /* FOOTER */

    footer {
        padding:
            18px 15px;
    }

    footer strong {
        font-size: 12px;
        line-height: 1.4;
    }

    footer small {
        font-size: 9px;
    }
}


/* KIS MOBIL */

@media (max-width: 420px) {

    .container {
        width: calc(100% - 24px);
    }

    .logo-text strong {
        font-size: 18px;
    }

    .hero {
        min-height: 600px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero h2 {
        font-size: 18px;
    }

    .gallery {
        grid-template-columns: 1fr 1fr;
    }

    .gallery img {
        height: 105px;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-item {
        min-height: 145px;
    }
}
	/* =========================================
   PETRUSKA LOGÓ
========================================= */

.logo img {
    display: block;
    width: 245px;
    height: 68px;
    object-fit: contain;
    object-position: left center;
}


/* MOBIL LOGÓ */

@media (max-width: 720px) {

    .logo img {
        width: 190px;
        height: 58px;
        object-fit: contain;
        object-position: left center;
    }

}


@media (max-width: 420px) {

    .logo img {
        width: 170px;
        height: 52px;
    }

}
	/* =========================================
   FEJLÉC ÉS LOGÓ VÉGLEGES BEÁLLÍTÁSA
========================================= */

.header {
    height: 86px;
    min-height: 86px;
}

.header-inner {
    height: 86px;
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    width: 245px;
    height: 70px;
    overflow: hidden;
    text-decoration: none;
}

.logo img {
    display: block !important;
    width: 245px !important;
    height: 70px !important;
    max-width: 245px !important;
    max-height: 70px !important;
    object-fit: contain !important;
    object-position: left center !important;
}


/* MOBIL */

@media (max-width: 720px) {

    .header {
        height: 70px;
        min-height: 70px;
    }

    .header-inner {
        height: 70px;
        min-height: 70px;
    }

    .logo {
        width: 190px;
        height: 58px;
    }

    .logo img {
        width: 190px !important;
        height: 58px !important;
        max-width: 190px !important;
        max-height: 58px !important;
    }
}


@media (max-width: 420px) {

    .logo {
        width: 170px;
        height: 52px;
    }

    .logo img {
        width: 170px !important;
        height: 52px !important;
        max-width: 170px !important;
        max-height: 52px !important;
    }
}
	/* ÚJ VÍZSZINTES FEJLÉC LOGÓ */

.logo {
    width: 260px;
    height: 70px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.logo img {
    width: 260px !important;
    height: auto !important;
    max-width: 260px !important;
    max-height: 70px !important;
    object-fit: contain !important;
}


/* MOBIL */

@media (max-width: 720px) {
    .logo {
        width: 190px;
        height: 55px;
    }

    .logo img {
        width: 190px !important;
        max-width: 190px !important;
        max-height: 55px !important;
    }
}

@media (max-width: 420px) {
    .logo {
        width: 170px;
        height: 50px;
    }

    .logo img {
        width: 170px !important;
        max-width: 170px !important;
        max-height: 50px !important;
    }
}
	/* =========================================
   VÉGLEGES FEJLÉC FINOMHANGOLÁS
========================================= */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.header {
    height: 82px;
    min-height: 82px;
}

.header-inner {
    height: 82px;
    min-height: 82px;
    overflow: hidden;
}

.logo {
    width: 235px;
    height: 68px;
    flex-shrink: 0;
}

.logo img {
    width: 235px !important;
    height: auto !important;
    max-width: 235px !important;
    max-height: 68px !important;
}


/* =========================================
   MOBIL
========================================= */

@media (max-width: 720px) {

    .header {
        height: 70px;
        min-height: 70px;
    }

    .header-inner {
        height: 70px;
        min-height: 70px;
    }

    .logo {
        width: 185px;
        height: 55px;
    }

    .logo img {
        width: 185px !important;
        max-width: 185px !important;
        max-height: 55px !important;
    }
}


@media (max-width: 420px) {

    .logo {
        width: 165px;
        height: 50px;
    }

    .logo img {
        width: 165px !important;
        max-width: 165px !important;
        max-height: 50px !important;
    }
}
	/* =========================================
   MOBIL MENÜ JAVÍTÁS
   ========================================= */

@media (max-width: 720px) {

    .header-inner {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .menu-button {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border: 0;
        border-radius: 50%;
        background: #0b3b78;
        color: #ffffff;
        font-size: 22px;
        cursor: pointer;
        z-index: 1001;
    }

    .navigation {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: #ffffff !important;
        padding: 15px 20px !important;
        box-sizing: border-box;
        flex-direction: column !important;
        gap: 0 !important;
        z-index: 1000;
        box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    }

    .navigation.active {
        display: flex !important;
    }

    .navigation a {
        display: block !important;
        width: 100% !important;
        padding: 14px 5px !important;
        box-sizing: border-box;
        text-decoration: none;
        font-size: 16px !important;
        color: #0b2f63 !important;
        border-bottom: 1px solid #eeeeee;
    }

    .navigation a:last-child {
        border-bottom: none;
    }
}
	/* =========================================
   MOBIL MENÜ - JAVÍTÁS
   ========================================= */

.menu-button {
    display: none;
}

@media (max-width: 720px) {

    .header-inner {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 75px;
        overflow: visible;
    }

    .logo {
        display: flex;
        align-items: center;
        max-width: calc(100% - 70px);
    }

    .logo img {
        display: block;
        width: 210px;
        max-width: 100%;
        height: auto;
    }

    /* HAMBURGER */
    .menu-button {
        display: flex !important;
        align-items: center;
        justify-content: center;

        width: 46px;
        height: 46px;

        margin-left: 10px;

        background: #ffffff;
        color: #0b3d78;

        border: 2px solid #0b3d78;
        border-radius: 6px;

        font-size: 25px;
        line-height: 1;

        cursor: pointer;
        z-index: 10001;
    }

    /* MOBIL NAV ALAPHELYZET */
    .navigation {
        display: none !important;

        position: absolute;
        top: 100%;
        left: 0;
        right: 0;

        width: 100%;

        background: #ffffff;

        flex-direction: column;
        align-items: stretch;

        padding: 10px 0;

        box-shadow: 0 8px 20px rgba(0,0,0,0.15);

        z-index: 10000;
    }

    /* MENÜ NYITVA */
    .navigation.active {
        display: flex !important;
    }

    .navigation a {
        display: block;

        width: 100%;
        box-sizing: border-box;

        padding: 16px 22px;

        color: #0b3d78 !important;
        background: #ffffff;

        font-size: 16px;
        font-weight: 700;

        text-decoration: none;

        border-bottom: 1px solid #eeeeee;
    }

    .navigation a:hover {
        background: #f3f6fa;
    }

    /* A meglévő dekoráció ne zavarjon be */
    .navigation a::after {
        display: none !important;
    }
}
	* =========================================
   MOBIL MENÜ - iOS / SAFARI JAVÍTÁS
   ========================================= */

@media screen and (max-width: 720px) {

    .header-inner {
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        min-height: 75px;
        overflow: visible !important;
    }


    /* LOGÓ */

    .logo {
        display: flex !important;
        align-items: center !important;
        max-width: calc(100% - 65px) !important;
    }

    .logo img {
        display: block !important;
        width: 210px !important;
        max-width: 100% !important;
        height: auto !important;
    }


    /* HAMBURGER GOMB */

    .menu-button {
        display: flex !important;

        align-items: center !important;
        justify-content: center !important;

        position: relative !important;

        width: 46px !important;
        min-width: 46px !important;
        height: 46px !important;

        margin: 0 !important;
        padding: 0 !important;

        background: #ffffff !important;
        color: #0b3d78 !important;

        border: 2px solid #0b3d78 !important;
        border-radius: 6px !important;

        font-family: Arial, sans-serif !important;
        font-size: 26px !important;
        font-weight: 700 !important;
        line-height: 1 !important;

        text-align: center !important;

        cursor: pointer !important;

        /* iOS */
        -webkit-appearance: none !important;
        appearance: none !important;
        -webkit-tap-highlight-color: transparent !important;
        touch-action: manipulation !important;

        z-index: 99999 !important;
    }


    .menu-button:focus {
        outline: none !important;
    }


    /* MENÜ ALAPHELYZET */

    .navigation {
        display: none !important;

        position: absolute !important;

        top: 100% !important;
        left: 0 !important;
        right: 0 !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        background: #ffffff !important;

        flex-direction: column !important;
        align-items: stretch !important;

        box-shadow: 0 8px 20px rgba(0,0,0,0.18) !important;

        z-index: 99998 !important;
    }


    /* MENÜ NYITVA */

    .navigation.active {
        display: flex !important;
    }


    /* MENÜPONTOK */

    .navigation a {
        display: block !important;

        width: 100% !important;

        box-sizing: border-box !important;

        padding: 17px 22px !important;
        margin: 0 !important;

        background: #ffffff !important;

        color: #0b3d78 !important;

        font-size: 16px !important;
        font-weight: 700 !important;

        line-height: 1.3 !important;

        text-decoration: none !important;

        border-bottom: 1px solid #e5e5e5 !important;

        -webkit-tap-highlight-color: transparent !important;
    }


    .navigation a::after {
        display: none !important;
    }


    .navigation a:active {
        background: #f1f5f9 !important;
    }

}