/* Mobil Header Stilleri */
@media screen and (max-width: 1024px) {
    .header .container {
        padding: 15px 20px;
    }

    .nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(45, 36, 31, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        padding: 80px 40px;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 998;
        border-left: 1px solid rgba(213, 197, 181, 0.1);
    }

    .nav ul.active {
        right: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    }

    .nav ul li {
        margin: 15px 0;
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.4s ease;
    }

    .nav ul.active li {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.4s;
    }

    .nav ul li:nth-child(2) { transition-delay: 0.45s; }
    .nav ul li:nth-child(3) { transition-delay: 0.5s; }
    .nav ul li:nth-child(4) { transition-delay: 0.55s; }
    .nav ul li:nth-child(5) { transition-delay: 0.6s; }

    .nav ul li a {
        font-size: 14px;
        display: block;
        padding: 10px 0;
    }

    /* Hamburger Menu */
    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        cursor: pointer;
        z-index: 999;
        position: relative;
    }

    .hamburger-menu span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--primary-beige);
        border-radius: 2px;
        transition: all 0.4s ease;
    }

    /* Hamburger Menü Animasyonu */
    .hamburger-menu.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(3px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 997;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Logo boyutu düzeltme */
    .logo .brand,
    .logo .sub-brand {
        font-size: 18px;
    }

    /* Rezervasyon butonu düzenleme */
    .contact-btn {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    /* Dil seçimi düzenleme */
    .lang-switch {
        margin: 20px 0 0 0;
    }
}

/* Küçük mobil cihazlar için ek düzenlemeler */
@media screen and (max-width: 480px) {
    .header .container {
        padding: 12px 15px;
    }

    .logo .brand,
    .logo .sub-brand {
        font-size: 16px;
    }

    .hamburger-menu {
        width: 25px;
        height: 18px;
    }

    .nav ul {
        width: 260px;
        padding: 60px 30px;
    }
} 