@import url('https://fonts.googleapis.com/css2?family=Lobster+Two:wght@700&display=swap');

:root {
    --primary-color: #D06C31;
    --primary-hover: #b85b26;
    --text-color: #4a463e;
    --navbar-bg: #f4f5ec;
    --border-color: #C3C594;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    background-color: var(--navbar-bg);
    line-height: 1.6;
    border-bottom: black 6px solid;
}


.navbar {
    position: sticky;
    top: 0;
    z-index: 999999;
    width: 100%;
    background: var(--navbar-bg);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.nav-inner {
    max-width: 1500px;
    margin: auto;
    padding: 14px 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    flex-wrap: nowrap;
    overflow: visible;
}


.logo-image {
    width: 130px;
    object-fit: contain;
    transition: transform .3s ease;
}

.logo:hover .logo-image {
    transform: scale(1.04);
}


.nav-links {
    flex: 0 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(10px, 1.5vw, 18px);
    list-style: none;
    min-width: 0;
}

.nav-links li a {
    position: relative;
    text-decoration: none;
    color: var(--text-color);
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    transition: .3s ease;
}

.nav-links li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: var(--primary-color);
    transition: width .3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-color);
}


.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}


.btn-reserve,
.btn-dashboard,
.btn-lang,
.btn-lang-m,
.btn-reserve-m {
    white-space: nowrap;
}

.btn-reserve,
.btn-dashboard {
    background: var(--primary-color);
    color: white !important;
    text-decoration: none;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 14px;
    transition: .3s ease;
    box-shadow: 0 4px 10px rgba(208,108,49,0.18);
}

.btn-reserve:hover,
.btn-dashboard:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}


.btn-lang {
    display: flex;
    align-items: center;
    margin-top: 16px;
    gap: 6px;
    border: 2px solid var(--border-color);
    padding: 9px 14px !important;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    color: var(--primary-color);
    transition: .3s ease;
}

.btn-lang:hover {
    background: white;
}


.lang-menu {
    position: relative;
    padding-bottom: 14px;
}

.lang-menu::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);

    min-width: 150px;
    background: white;
    border-radius: 14px;
    padding: 8px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 999999;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: all 0.25s ease;
}

.lang-menu:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.lang-dropdown li {
    list-style: none;
}

.lang-dropdown li a {
    display: block;
    padding: 10px 16px !important;
    text-decoration: none;
    color: var(--text-color);
    transition: .2s ease;
}

.lang-dropdown li a:hover {
    background: #f5f5f5;
    color: var(--primary-color);
}


.nav-mobile {
    display: none;
}


@media (max-width: 1200px) {
    .nav-inner {
        flex-wrap: nowrap;
    }
}


@media (max-width: 900px) {

    .nav-desktop {
        display: none;
    }

    .nav-mobile {
        display: block;
    }

    .nav-top-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 20px;
    }

    .hamburger-btn {
        width: 46px;
        height: 46px;
        background: none;
        border: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
    }

    .hamburger-btn span {
        height: 3px;
        background: var(--text-color);
        border-radius: 10px;
        transition: .3s;
    }

    .hamburger-btn.open span:nth-child(1) {
        transform: rotate(45deg) translateY(12px);
    }

    .hamburger-btn.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-btn.open span:nth-child(3) {
        transform: rotate(-45deg) translateY(-12px);
    }

    .mobile-menu {
        max-height: 0;
        overflow: hidden;
        transition: .4s ease;
    }

    .mobile-menu.open {
        max-height: 1000px;
    }

    .mobile-menu-inner {
        display: flex;
        flex-direction: column;
        padding: 10px 20px 20px;
    }

    .mobile-menu-inner a {
        padding: 14px 0;
        border-bottom: 1px solid rgba(0,0,0,0.06);
        text-decoration: none;
        color: var(--text-color);
        font-weight: 600;
    }

    .mobile-menu-footer {
        display: flex;
        gap: 12px;
        padding: 20px;
    }

    .btn-lang-m,
    .btn-reserve-m {
        flex: 1;
        text-align: center;
        padding: 12px;
        border-radius: 12px;
        font-weight: bold;
        text-decoration: none;
    }

    .btn-lang-m {
        border: 2px solid var(--border-color);
        color: var(--primary-color);
    }

    .btn-reserve-m {
        background: var(--primary-color);
        color: white;
    }
}