/* Beirutna Menu Styles */

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

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

body {
    background-color: #044462;
    color: white;
    font-family: 'Lora', serif;
}

.hero-gradient {
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.7) 100%);
}

.banner-carousel {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}

@media (min-width: 640px) {
    .banner-carousel {
        height: 288px;
    }
}

@media (min-width: 768px) {
    .banner-carousel {
        height: 320px;
    }
}

.banner-slide {
    position: absolute;
    inset: 0;
    transition: opacity 700ms cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide img,
.banner-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    color: rgba(255, 255, 255, 0.8);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.banner-nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.banner-nav-btn.prev {
    left: 12px;
}

.banner-nav-btn.next {
    right: 12px;
}

.banner-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
}

.banner-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-dot.active {
    background-color: white;
    width: 20px;
    border-radius: 4px;
}

.back-button {
    position: absolute;
    top: 4px;
    left: 4px;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-button:hover {
    background-color: rgba(0, 0, 0, 0.4);
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 16px;
}

.category-filter {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 12px 16px;
    scroll-behavior: smooth;
    margin-bottom: 40px;
}

.category-filter::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    padding: 8px 16px;
    border-radius: 9999px;
    border: 1px solid #1a5a6d;
    background-color: #0d3d52;
    color: #cccccc;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.filter-btn:hover {
    border-color: #d4a574;
    color: #ffffff;
}

.filter-btn.active {
    background-color: #d4a574;
    color: #044462;
    border-color: #d4a574;
    transform: scale(1.05);
}

.menu-item {
    transition: all 0.3s ease;
}

.menu-item:hover {
    background-color: #0d3d52;
    transform: translateY(-2px);
}

.menu-item img {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.menu-item:hover img {
    transform: scale(1.05);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
}

.badge-popular {
    background-color: #d4a574;
    color: #044462;
}

.badge-vegetarian {
    background-color: #4ade80;
    color: #1b4332;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 50;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    background-color: #0d3d52;
    border-radius: 12px;
    overflow: hidden;
    max-width: 672px;
    width: 100%;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: scaleIn 0.3s ease-out;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 9999px;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.lightbox-close:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.vat-notice {
    background-color: rgba(180, 83, 9, 0.4);
    border: 1px solid rgba(217, 119, 6, 0.5);
    padding: 8px 16px;
    border-top: 1px solid #1a5a6d;
}

.vat-notice p {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #fcd34d;
    letter-spacing: 0.05em;
    margin: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-container {
        padding: 20px 16px;
    }
    
    .banner-carousel {
        height: 240px;
    }
}
