.elementor-9 .elementor-element.elementor-element-a4c92bb{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-70adea2 *//* =========================================================
   SZÍV CSÜCSKE – KÜLÖN RÖGZÍTETT FEJLÉC
========================================================= */

.sca-header-wrap {
    --sca-header-red: #d52d35;
    --sca-header-red-dark: #a8232c;
    --sca-header-ink: #25242a;
    --sca-header-text: #57545a;
    --sca-header-border: #ebe5e5;
    --sca-header-white: #ffffff;

    position: relative;
    width: 100%;
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
}

.sca-header-wrap *,
.sca-header-wrap *::before,
.sca-header-wrap *::after {
    box-sizing: border-box;
}


/* =========================================================
   RÖGZÍTETT FEJLÉC
========================================================= */

.sca-header {
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    left: 0;

    width: 100%;
    min-height: 90px;

    border-top: 4px solid var(--sca-header-ink);
    border-bottom: 1px solid var(--sca-header-border);

    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    transition:
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}


/* WordPress adminisztrátori sáv kezelése */

body.admin-bar .sca-header {
    top: 32px;
}


/* Görgetéskor finom árnyék */

.sca-header.sca-header-scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 30px rgba(38, 31, 33, 0.1);
}


/* A rögzített fejléc helyének fenntartása */

.sca-header-spacer {
    width: 100%;
    height: 90px;
}


/* =========================================================
   BELSŐ TARTÓ
========================================================= */

.sca-header-container {
    width: min(1320px, calc(100% - 48px));
    min-height: 86px;
    margin-right: auto;
    margin-left: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}


/* =========================================================
   LOGÓ
========================================================= */

.sca-header-logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;

    color: inherit;
    text-decoration: none;
}

.sca-header-logo img {
    display: block;
    width: 190px;
    height: 68px;
    object-fit: contain;
    object-position: left center;
}


/* =========================================================
   NAVIGÁCIÓ
========================================================= */

.sca-header-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(20px, 2vw, 33px);
}

.sca-header-navigation a {
    position: relative;

    display: inline-flex;
    align-items: center;
    min-height: 44px;

    color: var(--sca-header-text);
    text-decoration: none;

    font-size: 14px;
    font-weight: 650;
    line-height: 1.3;
    white-space: nowrap;
}

.sca-header-navigation a::after {
    content: "";

    position: absolute;
    right: 50%;
    bottom: 2px;
    left: 50%;

    height: 2px;
    border-radius: 4px;

    background: var(--sca-header-red);

    transition:
        right 0.2s ease,
        left 0.2s ease;
}

.sca-header-navigation a:hover,
.sca-header-navigation a:focus-visible,
.sca-header-navigation a.sca-header-current {
    color: var(--sca-header-red);
}

.sca-header-navigation a:hover::after,
.sca-header-navigation a:focus-visible::after,
.sca-header-navigation a.sca-header-current::after {
    right: 0;
    left: 0;
}


/* =========================================================
   MOBIL MENÜGOMB
========================================================= */

.sca-header-menu-button {
    display: none;

    width: 47px;
    height: 47px;
    flex: 0 0 47px;

    padding: 10px;
    border: 1px solid var(--sca-header-border);
    border-radius: 11px;

    background: var(--sca-header-white);
    cursor: pointer;
}

.sca-header-menu-button span {
    display: block;

    width: 100%;
    height: 2px;
    margin: 6px 0;

    border-radius: 5px;
    background: var(--sca-header-ink);

    transform-origin: center;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}


/* Nyitott állapotban X ikon */

.sca-header-menu-button-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.sca-header-menu-button-open span:nth-child(2) {
    opacity: 0;
}

.sca-header-menu-button-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* =========================================================
   TABLET ÉS MOBILMENÜ
========================================================= */

@media (max-width: 1050px) {

    .sca-header-container {
        min-height: 78px;
    }

    .sca-header {
        min-height: 82px;
    }

    .sca-header-spacer {
        height: 82px;
    }

    .sca-header-logo img {
        width: 175px;
        height: 61px;
    }

    .sca-header-menu-button {
        display: block;
    }

    .sca-header-navigation {
        position: absolute;
        top: calc(100% + 1px);
        right: 24px;
        left: 24px;

        display: none;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 5px;

        padding: 17px;

        border: 1px solid var(--sca-header-border);
        border-top: 0;
        border-radius: 0 0 17px 17px;

        background: var(--sca-header-white);
        box-shadow: 0 20px 38px rgba(46, 27, 29, 0.13);
    }

    .sca-header-navigation.sca-header-navigation-open {
        display: grid;
    }

    .sca-header-navigation a {
        min-height: 48px;
        padding: 11px 13px;
        border-radius: 8px;
        font-size: 14px;
    }

    .sca-header-navigation a::after {
        display: none;
    }

    .sca-header-navigation a:hover,
    .sca-header-navigation a:focus-visible,
    .sca-header-navigation a.sca-header-current {
        background: #faeeee;
        color: var(--sca-header-red);
    }

}


/* =========================================================
   MOBIL
========================================================= */

@media (max-width: 620px) {

    .sca-header {
        min-height: 74px;
    }

    .sca-header-spacer {
        height: 74px;
    }

    .sca-header-container {
        width: calc(100% - 30px);
        min-height: 70px;
    }

    .sca-header-logo img {
        width: 155px;
        height: 55px;
    }

    .sca-header-menu-button {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
        padding: 9px;
    }

    .sca-header-navigation {
        right: 15px;
        left: 15px;
        grid-template-columns: 1fr;
        max-height: calc(100vh - 95px);
        overflow-y: auto;
    }

    .sca-header-navigation a {
        min-height: 47px;
    }

}


/* WordPress mobil adminisztrátori sáv */

@media (max-width: 782px) {

    body.admin-bar .sca-header {
        top: 46px;
    }

}


/* =========================================================
   ELEMENTOR JAVÍTÁS
========================================================= */

.elementor-location-header {
    position: relative;
    z-index: 9999;
}

.elementor-location-header .elementor-widget-html,
.elementor-location-header .elementor-widget-html > .elementor-widget-container {
    overflow: visible !important;
}


/* =========================================================
   HOZZÁFÉRHETŐSÉG
========================================================= */

.sca-header a:focus-visible,
.sca-header button:focus-visible {
    outline: 3px solid rgba(213, 45, 53, 0.28);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {

    .sca-header,
    .sca-header *,
    .sca-header *::before,
    .sca-header *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }

}/* End custom CSS */