/* Mobile navigation styles - Mobil navigáció stílusok */
.mobile-navbar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(240, 237, 232, 0.85);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-bottom: 1px solid rgba(224, 224, 224, 0.3);
    padding: 10px 20px;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

@media (prefers-color-scheme: dark) {
    .mobile-navbar {
        background: rgba(42, 39, 35, 0.85);
        backdrop-filter: blur(15px) saturate(180%);
        -webkit-backdrop-filter: blur(15px) saturate(180%);
        border-bottom: 1px solid rgba(74, 69, 62, 0.3);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
    }
}

.mobile-navbar-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    opacity: 0.7;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #555;
    transition: all 0.3s ease;
}

@media (prefers-color-scheme: dark) {
    .menu-toggle span {
        background: #d4d0c8;
    }
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 999;
    transition: all 0.3s ease;
}

.sidebar-mobile {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: rgba(250, 250, 250, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease, backdrop-filter 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

@media (prefers-color-scheme: dark) {
    .sidebar-mobile {
        background: rgba(45, 42, 38, 0.9);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.4);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
}

.sidebar-mobile.open {
    right: 0;
}

.sidebar-overlay.show {
    display: block;
}

/* Translucent effect utilities - Áttetsző effekt segédosztályok */
.translucent-glass {
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

@media (prefers-color-scheme: dark) {
    .translucent-glass {
        background: rgba(45, 42, 38, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
}

.translucent-glass:hover {
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
}
