@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --brand-dark: #121212;
    --brand-gold: #c5a059;
    --brand-gold-light: #d4b886;
    --brand-paper: #fdfcf9;
    --brand-white: #ffffff;
    --brand-gray-100: #f8f8f8;
    --brand-gray-200: #eeeeee;
    --brand-gray-300: #dddddd;
    --text-main: #1a1a1a;
    --text-muted: rgba(26, 26, 26, 0.5);
    --text-muted-light: rgba(255, 255, 255, 0.6);
    --font-main: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.12);
    --radius: 4px;
    --radius-lg: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: auto;
    min-height: 100%;
}

body {
    font-family: var(--font-main);
    background-color: var(--brand-paper);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

h1, .premium-title {
    font-weight: 900;
    letter-spacing: -0.03em;
}

h1, h2, h3, h4, h5, .premium-title {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 48px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    border-radius: var(--radius);
    position: relative;
    z-index: 1;
}

.btn-primary {
    background-color: var(--brand-dark);
    color: var(--brand-white);
}

.btn-primary:hover {
    background-color: var(--brand-gold);
    color: var(--brand-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-outline:hover {
    border-color: var(--brand-dark);
    background-color: var(--brand-dark);
    color: var(--brand-white);
}

.btn-gold {
    background-color: var(--brand-gold);
    color: var(--brand-dark);
}

.btn-gold:hover {
    background-color: var(--brand-dark);
    color: var(--brand-white);
}

.btn:disabled {
    opacity: 0.2;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Logo Component */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.site-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.3);
    position: relative;
    transition: var(--transition);
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0px;
    transition: all 0.5s ease;
}

/* HERO STATE */
header.is-transparent {
    background: transparent;
    box-shadow: none;
}

/* AFTER SCROLL / OTHER PAGES */
header.is-solid {
    background: rgba(18, 18, 18, 0.98);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-md);
}

.logo-wrapper:hover .site-logo {
    border-color: var(--brand-gold);
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-illyria-main {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--brand-white);
    line-height: 1;
    letter-spacing: 0.08em;
}

.logo-tradition-main {
    font-family: var(--font-sans);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.45em;
    color: var(--brand-gold);

    margin-top: 5px;
}

.logo-cutlery {
    color: var(--brand-gold);
    display: flex;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: visible;
}

.nav-toggle {
    cursor: pointer;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-toggle span {
    display: block;
    width: 30px;
    height: 1.5px;
    background-color: var(--brand-white);
    transition: var(--transition);
}

.nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--brand-dark);
    display: flex; /* Aktivizo flex */
    flex-direction: column; /* Rreshtoji vertikalisht */
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    visibility: hidden;
    pointer-events: none;
    z-index: 999;
}

.nav-menu.active {
    left: 0;
    visibility: visible;
}

.nav-menu ul {
    display: flex;
    flex-direction: column; /* Forco renditjen njëra mbi tjetrën */
    align-items: center;
}
.nav-menu li {
    margin: 28px 0;
    overflow: hidden;
}

.nav-menu a {
    font-family: var(--font-serif);
    font-size: clamp(32px, 8vw, 56px);
    color: var(--brand-white);
    display: block;
    transform: translateY(100%);
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-menu.active a {
    transform: translateY(0);
}

.nav-menu a:hover {
    color: var(--brand-gold);
    font-style: italic;
}

.logo {
    font-family: var(--font-serif);
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--brand-white);
}

header.scrolled .logo {
    color: var(--brand-white);
}

.logo span {
    color: var(--brand-gold);
}

.nav-toggle {
    display: block;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--brand-white);
    margin: 6px 0;
    transition: var(--transition);
}

.nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--brand-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    visibility: hidden;
    pointer-events: none;
    z-index: 999;
}

.nav-menu.active {
    left: 0;
    visibility: visible;
    pointer-events: all;
}

.nav-menu ul {
    text-align: center;
}

.nav-menu li {
    margin: 20px 0;
}

.nav-menu a {
    font-family: var(--font-serif);
    font-size: 25px;
    color: var(--brand-white);
}

.nav-menu a:hover {
    color: var(--brand-gold);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--brand-white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 24px;
}

.hero-subtitle {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    color: var(--brand-gold);
    margin-bottom: 24px;
    display: block;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    min-width: 180px;
    padding: 0 24px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 40px;
}

.hero h1 span {
    font-style: italic;
}

.hero-btns {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Why Us Section */
.section {
    padding: 100px 0;
}

.why-us-section {
    background-color: #fdfbf7; /* Warm subtle background */
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--brand-gold);
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-size: 48px; /* Slightly larger for premium feel */
    color: var(--brand-dark);
    font-family: var(--font-serif);
    font-weight: 400;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.feature-card {
    background: var(--brand-white);
    padding: 60px 40px;
    text-align: center;
    border: none; /* Removed border for soft shadow look */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03); /* Soft shadows */
    transition: var(--transition);
    border-radius: 4px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: transparent; /* Minimalist icon background */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    color: var(--brand-gold);
    border: 1px solid rgba(197, 168, 124, 0.2);
    border-radius: 50%;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Our Dishes Section */
.dishes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.dish-card {
    text-align: center;
}

.dish-img {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 24px;
}

.dish-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.dish-card:hover .dish-img img {
    transform: scale(1.1);
}

.dish-price {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(5px);
    color: var(--brand-gold);
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
}

.dish-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.dish-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Premium CTA / Header Section */
.premium-section {
    background-color: var(--brand-paper);
    padding: 100px 24px;
    text-align: center;
}

.premium-header-line {
    width: 80px;
    height: 1px;
    background-color: var(--brand-gold);
    margin: 0 auto 48px;
}

.premium-tag {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--brand-gold);
    margin-bottom: 24px;
    display: block;
    font-weight: 700;
}

.premium-title {
    font-size: 48px; /* Mobile size */
    line-height: 1.1;
    margin-bottom: 32px;
    font-family: var(--font-serif);
    font-weight: 400;
}

.premium-title i {
    font-style: italic;
}

.premium-description {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.premium-btn-wrapper {
    margin-bottom: 60px;
}

.premium-btn-wrapper .btn {
    padding: 20px 48px;
    font-size: 12px;
}

.premium-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.premium-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

.premium-info-dot {
    width: 4px;
    height: 4px;
    background: var(--brand-gold);
    border-radius: 50%;
}

/* Footer */
footer {
    background-color: var(--brand-dark);
    color: var(--brand-white);
    padding: 100px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand .logo {
    margin-bottom: 24px;
    display: block;
}

.footer-brand p {
    color: var(--text-muted-light);
    font-size: 14px;
    max-width: 300px;
}

.footer-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--brand-gold);
    margin-bottom: 32px;
}

.footer-contact p {
    font-size: 14px;
    color: var(--text-muted-light);
    margin-bottom: 16px;
}

.contact-widget p {
    color: var(--text-muted-light);
}

.footer-hours p {
    color: var(--text-muted-light);
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-link, .widget-icons a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-muted-light);
    transition: all 0.35s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
}

/* Shared hover behavior */
.social-link:hover, .widget-icons a:hover {
    transform: translateY(-3px);
    color: var(--brand-white);
    border-color: var(--brand-gold);
}

/* subtle glow effect (premium touch) */
.social-link::after, .widget-icons a::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.25), transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.social-link:hover::after, .widget-icons a:hover::after {
    opacity: 1;
}

/* WhatsApp special */
.whatsapp-btn:hover {
    background-color: #25D366;
    border-color: #25D366;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

/* Email special */
.email-btn:hover {
    background-color: var(--brand-gold);
    border-color: var(--brand-gold);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.25);
}

/* click feedback */
.social-link:active, .widget-icons a:active {
    transform: translateY(-1px) scale(0.98);
}

.location-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    text-decoration: none;
    transition: var(--transition);
    color: var(--text-muted-light);
}

.location-card:hover {
    border-color: var(--brand-gold);
    transform: translateY(-2px);
}

.location-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--brand-gold);
    background: rgba(197, 160, 89, 0.08);
}

.location-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-white);
    margin: 0;
}

.location-sub {
    font-size: 11px;
    opacity: 0.6;
    margin: 0;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
}

.admin-link {
    color: #d97706;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: 0.3s ease;
}

.admin-link:hover {
    opacity: 0.7;
}

.footer-copy {
    font-size: 0.75rem;
    opacity: 0.6;
    margin: 0;
}

.footer-copy a {
    color: #d97706;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-copy a:hover {
    opacity: 0.8;
}

/* Menu Page */
.menu-category {
    margin-bottom: 100px;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 60px;
}

.category-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-title h2 {
    font-size: 42px;
    font-weight: 400;
    white-space: nowrap;
}

.category-title .line {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    width: 100%;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.menu-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.menu-item h3 {
    font-size: 28px;
    font-weight: 400;
}

.menu-item .price {
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--brand-gold);
    font-size: 16px;
    letter-spacing: 0.05em;
}

.menu-item p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 90%;
}

/* Dietary Requirements */
.dietary-requirements {
    text-align: center;
    padding: 80px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 40px;
}

.dietary-tag {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--brand-gold);
    margin-bottom: 24px;
    display: block;
    font-weight: 700;
}

.dietary-text {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Floating Action Button */ /*.fab {*/ /* position: fixed;*/ /* bottom: 40px;*/ /* right: 40px;*/ /* width: 64px;*/ /* height: 64px;*/ /* background-color: var(--brand-dark);*/ /* color: var(--brand-gold);*/ /* border-radius: 50%;*/ /* display: flex;*/ /* align-items: center;*/ /* justify-content: center;*/ /* box-shadow: 0 10px 30px rgba(0,0,0,0.2);*/ /* cursor: pointer;*/ /* transition: var(--transition);*/ /* z-index: 1000;*/ /* border: none;*/ /*}*/
.fab:hover {
    transform: scale(1.1);
    background-color: var(--brand-gold);
    color: var(--brand-dark);
}

.fab svg {
    width: 24px;
    height: 24px;
}

/* Responsive Queries */
@media (max-width: 768px) {
    .reservation-page {
        padding: 120px 0 60px;
    }

    .reservation-title {
        font-size: 32px;
    }

    .reservation-card {
        padding: 30px 20px;
        box-shadow: none;
        background: transparent;
    }

    .premium-form .form-row.split {
        grid-template-columns: 1fr;
    }

    .nav-container {
        padding: 0 20px;
    }

    .booking-step.active {
        transform: none;
    }
    .lang-dropdown .dropdown-menu {
        position: static !important; /* E nxjerrim nga modaliteti 'absolute' */
        display: block !important;    /* E shfaqim gjithmonë */
        background: transparent !important; /* Heqim sfondin e dropdown-it */
        border: none !important;      /* Heqim border-in */
        box-shadow: none !important;
        max-height: none !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    /* 2. Rregullojmë butonat që të duken si pjesë e menusë */
    .lang-dropdown .dropdown-toggle {
        display: none !important; /* Heqim butonin që nuk bën asgjë në mobile */
    }

    /* 3. Stilimi i listës së gjuhëve që të duket si linket e tjera */
    .lang-dropdown .dropdown-menu li {
        margin: 0 !important;
        text-align: center;
    }

    .lang-dropdown .dropdown-menu li a {
        font-family: var(--font-serif);
        font-size: 17px !important;
        color: var(--brand-white) !important;
    }

    /* 4. Sigurohemi që nav-menu lejon scroll-in e gjithë listës */
    .nav-menu {
        overflow-y: auto !important;
        padding-top: 50px;
        /*padding-bottom: 50px;*/
    }
    .nav-menu li {
        margin: 20px 0;
    }
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 70px;
    }

    .hero-btns {
        flex-direction: row;
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dishes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }

    .nav-toggle {
        display: none;
    }
    .nav-menu {
        display: flex !important;

        position: static !important; /* Detyroje të jetë static */
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        visibility: visible !important;
        overflow: visible !important; /* SHUMË E RËNDËSISHME */
        pointer-events: all !important;
    }
    .nav-container {
        overflow: visible !important; /* Lejon dropdown-in të dalë jashtë container-it */
    }
    .lang-dropdown {
        position: relative !important;
    }

    .lang-dropdown .dropdown-menu {
        position: absolute !important;
        top: 100% !important;
        right: 0 !important;
        left: auto !important;
        min-width: 100px;
        box-shadow: var(--shadow-lg);
        max-height: 50vh;
        overflow-y: auto;
        background: #121212;
        border: 1px solid rgba(197, 160, 89, 0.2);
        z-index: 9999;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }
    .nav-menu ul {
        display: flex;
        flex-direction: row;
        gap: 24px;
        list-style: none;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-menu a {
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        font-weight: 700;
        font-family: var(--font-sans);
        color: var(--brand-white);
        transform: none;
        transition: color 0.3s ease;
    }

    .nav-menu a:hover {
        color: var(--brand-gold);
    }

    .premium-section {
        padding: 140px 0 100px;
    }

    .premium-title {
        font-size: 84px;
    }

    .premium-description {
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .dishes-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-dropdown .dropdown-toggle {
    background: transparent;
    border: none;
    color: var(--brand-white);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* HIDE ANY EXTRA ICONS (KJO ISHTE PROBLEMI YT ME DY SHIGJETA) */
.lang-dropdown .dropdown-toggle::after {
    display: none !important;
}
/* 1. Gjendja fillestare - E fshehur */
.lang-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #0a0a0a;
    border: 1px solid rgba(197, 160, 89, 0.2);
    min-width: 90px;
    padding: 6px 0;
    border-radius: 6px;

    /* Këto rreshta janë kyç që ta fshehin në fillim */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);

    transition: 0.3s ease; /* Zbut lëvizjen */
    display: block;
    z-index: 9999;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior: contain;
}

/* 2. Gjendja kur klikohet - Shfaqet (Ky bllok ekziston në kodin tënd, thjesht sigurohu që është poshtë bllokut më lart) */
.lang-dropdown.open .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}


.lang-dropdown .dropdown-menu li a {
    display: block;
    padding: 7px 12px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.lang-dropdown .dropdown-menu li a:hover {
    color: var(--brand-gold);
    background: rgba(197, 160, 89, 0.08);
}

/* IMPORTANT: prevent nav clipping dropdown */
.nav-menu {
    overflow: visible !important;
}
header,
.nav-container,
.nav-menu,
.nav-menu ul,
.nav-menu li {
    overflow: visible !important;
}
.cta-reserve a {
    position: relative;
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--brand-white);
    padding: 8px 0;
    overflow: hidden;
}

/* line poshte */
.cta-reserve a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--brand-gold);


    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

/* line sipër (extra premium feel) */
.cta-reserve a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background: var(--brand-gold);

    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

/* hover */
.cta-reserve a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.cta-reserve a:hover::before {
    transform: scaleX(1);
    transform-origin: right;
}

.cta-reserve a:hover {
    color: var(--brand-gold);
}

.menu-download {
    margin-top: 140px;
}

.menu-item {
    margin-top: 140px;
    border-radius: 12px;
}

.menu-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.menu-time {
    font-size: 13px;
    opacity: 0.6;
    letter-spacing: 1px;
}

.menu-description {
    margin: 10px 0;
    font-size: 14px;
    line-height: 1.6;
}

.menu-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

.price {
    font-weight: 600;
    font-size: 18px;
}

.badge {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
}

.badge.active {
    background: #d1fae5;
    color: #065f46;
}

.badge.inactive {
    background: #fee2e2;
    color: #991b1b;
}
