﻿
:root {
    --bg-dark: #0c0c0e;
    --bg-card: #16161a;
    --gold-gradient: linear-gradient(135deg, #e6c280 0%, #b38728 100%);
    --gold-color: #d4af37;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 80px; /* Space for floating button */
}

/* Premium Scrollbar */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background: var(--gold-color);
    border-radius: 10px;
}

/* Header / Cover Section */
.hero-section {
    position: relative;
    height: 220px;
    background: linear-gradient(rgba(12, 12, 14, 0.6), rgba(12, 12, 14, 1)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=800&q=80') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.restaurant-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 2px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
    padding: 0 10px;
}

.restaurant-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Minimal Language Switcher */
.lang-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    background: rgba(22, 22, 26, 0.6);
    backdrop-filter: blur(10px);
    padding: 4px 8px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 10;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

    .lang-btn.active {
        background: var(--gold-gradient);
        color: #000;
    }

/* Floating Menu Trigger Button */
.floating-menu-btn {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: #000;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    border: none;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .floating-menu-btn:active {
        transform: translateX(-50%) scale(0.95);
    }

/* Modern Bottom Sheet Overlay for Categories */
.category-overlay {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(12, 12, 14, 0.95);
    backdrop-filter: blur(25px);
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    z-index: 1000;
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 30px 20px 40px 20px;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.5);
}

    .category-overlay.open {
        bottom: 0;
    }

.overlay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.overlay-title {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--gold-color);
    letter-spacing: 1px;
}

.close-overlay-btn {
    background: rgba(255,255,255,0.05);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.cat-grid-btn {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    padding: 16px;
    border-radius: 16px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
}

    .cat-grid-btn i {
        color: var(--gold-color);
        font-size: 1.1rem;
        width: 20px;
    }

    .cat-grid-btn.active {
        background: linear-gradient(135deg, rgba(230, 194, 128, 0.1) 0%, rgba(179, 135, 40, 0.1) 100%);
        border-color: var(--gold-color);
        font-weight: 600;
    }

/* Backdrop Blur behind sheet */
.overlay-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

    .overlay-backdrop.show {
        opacity: 1;
        pointer-events: auto;
    }

/* Menu Content Area */
.menu-container {
    padding: 25px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
}

    .section-title::after {
        content: '';
        flex: 1;
        height: 1px;
        background: linear-gradient(90deg, rgba(212, 175, 55, 0.4), transparent);
    }

/* Menu Items Grid */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.menu-item {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.02);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    animation: fadeIn 0.4s ease forwards;
}

.item-img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    position: relative;
}

.item-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--gold-gradient);
    color: #000;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    z-index: 2;
}

.item-info {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    /*justify-content: space-between;*/
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.item-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
}

.item-price {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--gold-color);
    white-space: nowrap;
}

.item-description {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 5px;
    font-weight: 300;
}

.item-footer {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 10px;
    font-size: 0.75rem;
}

.tag {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

    .tag i {
        color: var(--gold-color);
    }

/* Footer */
.menu-footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gold-color);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.footer-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

