/* Mobile navigation styles - Mobil navigáció stílusok */
.mobile-navbar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(224, 224, 224, 0.5);
    padding: 10px 20px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media (prefers-color-scheme: dark) {
    .mobile-navbar {
        background: rgba(42, 39, 35, 0.95);
        border-bottom: 1px solid rgba(74, 69, 62, 0.5);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
}

.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.5);
    z-index: 999;
}

.sidebar-mobile {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: #fafafa;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
}

@media (prefers-color-scheme: dark) {
    .sidebar-mobile {
        background: #2d2a26;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }
}

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

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