/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .navbar, .dark-navbar {
        background: #3b3b36;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        height: 70px;
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
        display: flex;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }

    .navbar-flex {
        position: relative;
        width: 100%;
        height: 70px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .navbar-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        padding: 8px 0;
    }

    .navbar-logo-navbar {
        height: 54px;
        width: auto;
        display: block;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        position: relative;
        z-index: 1002;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background-color: #b8860b;
        margin: 3px 0;
        transition: all 0.3s ease;
    }

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

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

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
        background-color: #b8860b;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(59, 59, 54, 0.95);
        flex-direction: column;
        align-items: center;
        z-index: 9999;
        padding: 20px 0;
        margin: 0;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }

    .nav-links a {
        color: #b8860b;
        font-size: 16px;
        padding: 12px 20px;
        display: block;
        width: 100%;
        transition: color 0.3s ease;
        text-decoration: none;
    }

    .nav-links a:hover {
        color: #fff;
    }

    .nav-links a.active {
        color: #fff;
    }

    .language-selector {
        margin: 20px 0;
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .lang-btn {
        color: #b8860b;
        border: 1px solid #b8860b;
        background: transparent;
        padding: 8px 16px;
        cursor: pointer;
        transition: all 0.3s ease;
        border-radius: 4px;
    }

    .lang-btn:hover {
        background: #b8860b;
        color: #fff;
    }

    .lang-btn.active {
        background: #b8860b;
        color: #fff;
        border-color: #b8860b;
    }
} 