/* Desktop Menu - Meglévő stílusok */
.responsive-menu-container {
    position: relative;
    display: inline-block;
    width: auto;
}

a.menu-item.menu-venue .menu-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 95%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    background-position: center;
    background-size: 150%;
    background-repeat: no-repeat;
}

a.menu-item.menu-tickets .menu-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 95%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    background-position: center;
    background-size: 121%;
    background-repeat: no-repeat;
}

.desktop-menu {
    display: inline-block;
    width: auto;
}

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

.menu-item-wrapper {
    position: relative;
}

/* DROPDOWN KIEGÉSZÍTÉSEK - ÚJ */
.menu-item-wrapper.has-dropdown {
    position: relative;
}

svg#fi_2985150 {
    fill: white;
    margin-bottom: -5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content {
    padding: 8px 0;
}

.dropdown-item-wrapper {
    position: relative;
    overflow: hidden;
}

.dropdown-item {
    display: block;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    font-family: "Playfair Display", sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 2;
}

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

.dropdown-item:hover {
    color: #fff;
    padding-left: 30px;
}

.dropdown-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: 150%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.dropdown-item:hover .dropdown-background {
    opacity: 0.4;
}

.dropdown-text {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

/* Z-index kezelése */
.menu-item-wrapper.dropdown-active {
    z-index: 1001;
}
/* DROPDOWN KIEGÉSZÍTÉSEK VÉGE */

.menu-item {
    position: relative;
    display: block;
    padding: 21px 10px;
    text-decoration: none;
    color: #000;
    z-index: 1;
    white-space: nowrap;
}

.menu-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 95%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    background-position: center;
    background-size: 92%;
    background-repeat: no-repeat;
}

.menu-item-wrapper .menu-item:hover .menu-background {
    opacity: 1;
}

.menu-item-wrapper .menu-item:hover .menu-text {
    color: #fff;
}

.menu-text {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
    font-family: "Playfair Display", sans-serif;
    color: white;
    font-size: 20px;
    text-transform: uppercase;
}

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

@media screen and (max-width: var(--mobile-breakpoint, 1100px)) {
    .desktop-menu {
        display: none !important;
    }
    
    .mobile-menu,
    .mobile-menu-toggle {
        display: block !important;
    }
}

/* Mobile Menu - Meglévő stílusok */
@media (min-width: 769px) {
    .mobile-menu,
    .mobile-menu-toggle {
        display: none;
    }
}

@media (max-width: 1100px) {
    .desktop-menu {
        display: none;
    }

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

    svg#Layer_2234999 {
        width: 28px;
        height: auto;
        fill: white;
    }

    button.mobile-menu-toggle {
        padding: 0px;
        border: 0px;
        background-color: transparent;
    }
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu-content {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 20px;
}

.mobile-menu-overlay.active .mobile-menu-content {
    right: 0;
}

.mobile-menu-content {
    height: 100vh;
    overflow-y: auto;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 10px 0;
}

.mobile-menu .mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close svg {
    width: 25px;
    height: auto;
    fill: white;
    pointer-events: none;
}

.mobile-menu-item {
    margin: 1rem 0;
}

.mobile-menu-item a {
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    font-family: "Playfair Display", sans-serif;
    color: white;
    font-size: 21px;
    text-transform: uppercase;
    text-align: right;
}

/* Mobile logo container - ÚJ */
.mobile-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
        flex-direction: row-reverse;
    flex-wrap: wrap;
}

.mobile-logo-recirquel,
.mobile-logo-wmw {
    display: block;
    text-decoration: none;
}

/* Régi mobile logo stílus módosítása */
img.mobile-logo {
    display: none; /* Régi stílus elrejtése */
}

/* Új mobile logo stílusok */
.mobile-logo-main {
    width: 120px;
    height: auto;
    max-width: 100%;
}

.mobile-logo-secondary {
    width: 140px;
    height: auto;
    max-width: 100%;
}

/* Responsive mobile logo */
@media (max-width: 480px) {
    .mobile-logo-container {
        gap: 10px;
        justify-content: center;
    }
    
    .mobile-logo-main {
        width: 65px;
    }
    
    .mobile-logo-secondary {
        width: 120px;
    }
}

@media (max-width: 360px) {
    .mobile-logo-container {
        gap: 8px;
        flex-direction: column;
        align-items: center;
    }
    
    .mobile-logo-main {
        width: 90px;
    }
    
    .mobile-logo-secondary {
        width: 110px;
    }
}

.mobile-menu-item .custom-language-switcher {
    display: flex;
    letter-spacing: 0px;
    text-decoration: none;
    color: #FFFFFF;
    position: relative;
    font-family: "Playfair Display", Sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    justify-content: flex-end;
}

/* Mobile Submenu Styles - ÚJ RÉSZ */
.mobile-menu-item.has-submenu {
    margin: 1rem 0;
}

.mobile-menu-parent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.mobile-parent-link {
    text-decoration: none;
    font-family: "Playfair Display", sans-serif;
    color: white;
    font-size: 21px;
    text-transform: uppercase;
    flex: 1;
}

.mobile-menu .mobile-submenu-toggle {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    min-width: 30px;
    min-height: 30px;
}

.mobile-submenu-toggle:hover {
background-color: rgb(255 255 255 / 0%);
    border-radius: 4px;
}

.mobile-submenu-toggle.active {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 20px;
    border-left: 0px solid rgba(255, 255, 255, 0.2);
    margin-left: 10px;
}

.mobile-submenu.open {
    max-height: 500px;
    transition: max-height 0.3s ease-in;
}

.mobile-submenu-item {
    margin: 0.5rem 0;
}

.mobile-submenu-item a {
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    font-family: "Playfair Display", sans-serif;
    color: rgb(255 255 255);
    font-size: 18px;
    text-transform: uppercase;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-submenu-item a:hover {
    color: white;
    padding-left: 10px;
}

/* Plus/Minus icon animations */
.mobile-submenu-toggle .plus-icon,
.mobile-submenu-toggle .minus-icon {
    transition: opacity 0.2s ease;
}

.mobile-submenu-toggle.active .plus-icon {
    display: none;
}

.mobile-submenu-toggle.active .minus-icon {
    display: block !important;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .mobile-parent-link {
        font-size: 19px;
    }
    
    .mobile-submenu-item a {
        font-size: 16px;
    }
}

/* Hamburger Icon */
.hamburger-icon {
    display: block;
    width: 25px;
    height: 3px;
    background: #000;
    position: relative;
    transition: background 0.3s ease;
}

.hamburger-icon:before,
.hamburger-icon:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    transition: transform 0.3s ease;
}

.hamburger-icon:before {
    top: -8px;
}

.hamburger-icon:after {
    bottom: -8px;
}

.info-content {
    color: #B2B2B2;
    font-family: "Archivo Narrow", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    line-height: 30px;
    text-align: right;
    width: 150px;
}

.mobile-menu-info-section {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.mobile-menu-languages {
    display: flex;
    align-items: center;
    letter-spacing: 0px;
    text-decoration: none;
    color: #FFFFFF;
    position: relative;
    font-family: "Playfair Display", Sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 55px;
}

span.mobile-language-separator {
    margin: 0 3px;
    font-weight: bold;
    font-size: 21px;
}

a.mobile-language-code.active-language {
    color: #FF0000;
}

a.mobile-language-code {
    color: white;
}

.btn-ticket {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 60px;
    background-color: red;
    color: white;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    position: relative;
    border-radius: 8px;
    transition: transform 0.2s ease;
    will-change: transform;
}

.btn-ticket::before,
.btn-ticket::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 25px;
    background-color: black;
    border-radius: 3px;
}

.btn-ticket::before {
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.btn-ticket::after {
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.contact-infosocial {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.soical-containerer {
    display: flex;
    gap: 15px;
    width: 76%;
    margin-bottom: 40px;
    margin-top: 40px;
}

.desktop-lang-wrapper {
    display: flex;
    align-items: center;
    letter-spacing: 0px;
    text-decoration: none;
    color: #FFFFFF;
    position: relative;
    font-family: "Playfair Display", Sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin-left: 20px;
    text-transform: uppercase;
}

span.desktop-lang-separator {
    margin: 0 8px;
    font-weight: bold;
    font-size: 21px;
}

a.desktop-lang-item {
    color: #FFFFFF;
}

a.desktop-lang-item.desktop-lang-active {
    color: #dd0000;
}

.soical-doboz {
    display: flex;
    width: 260px;
    gap: 16px;
    margin: 35px 0px;
}

svg#Layer_21239734 {
    fill: white;
    height: auto;
    width: 25px;
}

/* Accessibility - csak desktop dropdown-hoz */
.dropdown-item:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: -2px;
}

/* Responsive finomhangolás */
@media (max-width: 768px) {
    .dropdown-menu {
        min-width: 200px;
        left: -50px;
    }
}
.responsive-menu-container {
	--mobile-breakpoint: 1100px;
}
