/* Alap konténer stílusok */
.responsive-menu-container {
    position: relative;
}

/* Desktop menü stílusok */
.desktop-menu {
    display: flex;
    flex-direction: row;
}

.desktop-menu-container {
    display: flex;
    gap: 30px;
    position: relative;
}

.menu-item-wrapper {
    position: relative;
    display: inline-block;
}

.menu-item-wrapper > a {
    text-decoration: none;
    position: relative;
    color: #FFFFFF;
    font-family: "Montserrat", Sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 29px;
}

.menu-item-wrapper > a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: #ffffff;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.menu-item-wrapper > a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.mega-menu {
    display: none;
    position: absolute;
    flex-direction: column;
    top: 100%;
    left: -310px;
    width: 850px;
    background-color: #221f2f;
    z-index: 1000;
    padding: 30px 20px;
    border-radius: 10px;
}

.menu-item-wrapper:hover .mega-menu {
    display: flex;
}

/* Mega menü intro rész */
.mega-menu-intro {
    flex: 0 0 25%;
    padding-right: 20px;
}

.mega-menu-intro h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #374041;
    font-family: "Montserrat", Sans-serif;
    font-weight: 500;
}

.mega-menu-intro p {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 24px;
    color: #374041;
    font-family: "Montserrat", Sans-serif;
    width: 200px;
}

.mega-menu-all-link {
    display: inline-block;
    color: #A57884;
    text-decoration: none;
    font-family: "Montserrat", Sans-serif;
    font-size: 14px;
    font-weight: 600;
}
/* Mega menü oszlopok */
.mega-menu-columns {
    flex: 1;
    display: flex;
    justify-content: space-between;
}

.mega-menu-column:nth-child(1) {
    border-right: 1px solid #e0e0e040;
}

.mega-menu-column {
    flex: 1;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    border-right: 0px solid #e0e0e0;
    gap: 5px;
}

.mega-menu-column:last-child {
    border-right: none;
    display: none;
}

.mega-menu .ikoner {
    fill: #ffffff;
    width: 40px;
    border-radius: 6px;
    height: auto;
    padding: 5px;
    transition: fill 0.3s ease;
    background-color: #2653c9;
    margin-right: 10px;
}

.mega-menu-header {
    margin-bottom: 10px;
}



.mega-menu h2 {
    color: #FFFFFF;
    font-family: "Montserrat", Sans-serif;
    font-size: 26px;
    font-weight: 500;
    line-height: 29px;
    padding: 0px 30px;
}
.mega-menu-column a {
    text-decoration: none;
    transition: color 0.3s ease, font-weight 0.3s ease;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    position: relative;
    color: #FFFFFF;
    font-family: "Montserrat", Sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 29px;
}

.mega-menu-column a:hover {
    color: #AFD9AD;
}

/* Mobil menü stílusok */
.mobile-menu {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    color: #fff;
    padding: 0px;
    cursor: pointer;
}

svg#fi_9121er524 {
    fill: #ffffff;
    width: 42px;
    height: auto;
    margin-bottom: -3px;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    background: #1A1A1A;
    padding: 20px;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 80%;
    max-width: 300px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    transition: transform 0.3s ease;
    transform: translateX(100%);
}

.mobile-menu-overlay.open .mobile-menu-content {
    transform: translateX(0);
}


.mobile-menu-item:last-child {
    border-bottom: none;
}

.mobile-menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    flex-direction: row;
    width: 240px;
}

nav.mobile-menu-nav {
    margin-top: 31px;
}

.mobile-menu-item {
    padding-top: 12px;
    padding-bottom: 0px;
}

.mobile-menu-item-header a {
    text-decoration: none;
    flex-grow: 1;
    margin-bottom: 8px;
    color: #FFFFFF;
    font-family: "Montserrat", Sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 29px;
}

.mobile-submenu-toggle {
    background: none;
    border: none;
    font-size: 20px;
    margin-top: -9px;
    cursor: pointer;
    padding: 0px;
    color: #ffffff;
}

.mobile-submenu-toggle:hover {
    background: none;
    color: #ffffff;
}

button.mobile-menu-close {
    background: transparent;
    color: #ffffff;
    padding: 0px;
    font-size: 29px;
    margin-right: 10px;
    margin-top: -10px;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    margin-top: 20px;
    transition: max-height 0.3s ease-out;
}

.mobile-submenu a {
    display: block;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    padding: 0px;
    margin-bottom: 0px;
    font-family: "Barlow Condensed", Sans-serif;
    color: #050327;
}

.mobile-mega-item {
    margin-bottom: 9px;
    display: flex
;
    flex-direction: row;
    border-bottom: 1px solid #ffffff14;
    padding-bottom: 9px;
}

a.mobile-mega-all-linka {
    font-size: 18px;
    margin-top: 17px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
}

.mobile-menu-footer {
    margin-top: 25px;
}

.mobilgomb {
    margin-bottom: 25px;
}

.foglalasmobil {
    display: block;
    font-family: "Montserrat", Sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 15px;
    background-color: #A57884;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 20px;
}

.mobiltextinfo {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.custom-fejleclink {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #666;
}

.mobilciminfo {
    font-weight: 600;
    margin-bottom: 5px;
    font-family: "Montserrat", Sans-serif;
    font-size: 15px;
    color: #666;
}

.mobilinfotext {
    font-size: 14px;
    font-family: "Montserrat", Sans-serif;
    color: #666;
}

p.column-title {
    font-family: "Barlow Condensed", Sans-serif;
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
    font-style: italic;
    color: #212121;
    margin-bottom: 5px;
}

p.column-description {
    color: #050327;
    font-family: "mundial", Sans-serif;
    font-size: 14px;
    font-weight: 200;
    margin-bottom: 10px;
}

h3.mobile-mega-title {
    color: #FFFFFF;
    font-family: "Montserrat", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0px;
}

a.mobile-mega-buttoncim {
    display: flex;
    align-items: center;
    gap: 17px;
}

a.mobile-mega-buttoncim .ikoner {
    fill: #7360f2;
    width: 32px;
    height: auto;
    transition: fill 0.3s ease;
}

p.mobile-mega-description {
    color: #050327;
    font-family: "mundial", Sans-serif;
    font-size: 14px;
    font-weight: 200;
    width: 100%;
    margin-bottom: 10px;
    line-height: 20px;
}

/* Reszponzív beállítások */
@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .mobile-menu,
    .mobile-menu-toggle {
        display: block;
    }

    img.mobile-logo {
        width: 120px;
    }
}