:root {
    /* Color Palette */
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-nav: rgba(10, 10, 10, 0.85);
    
    --text-main: #f5f5f5;
    --text-muted: #a0a0a0;
    
    --accent-gold: #d4af37;
    --accent-gold-glow: rgba(212, 175, 55, 0.3);
    
    --border-color: #2a2a2a;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 999px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 100px; /* Space for bottom bar */
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--bg-nav);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-logo h2 {
    font-size: 24px;
    color: var(--accent-gold);
    letter-spacing: 1px;
    font-style: italic;
}

.nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.icon-btn {
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -6px;
    background: var(--accent-gold);
    color: var(--bg-dark);
    font-size: 10px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 60vh;
    min-height: 450px;
    display: flex;
    align-items: flex-end;
    padding: 30px 24px;
    margin-bottom: 24px;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.3) 0%,
        rgba(10, 10, 10, 0.8) 60%,
        rgba(10, 10, 10, 1) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.badge {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 12px;
    font-weight: 600;
}

.hero-title {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 12px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 90%;
}

/* Categories */
.category-slider-container {
    position: sticky;
    top: 65px; /* Just below nav */
    z-index: 90;
    background: var(--bg-dark);
    padding: 16px 0;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.category-slider {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 0 24px;
    scrollbar-width: none; /* Firefox */
}

.category-slider::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.category-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition);
}

.category-btn.active {
    background: var(--accent-gold);
    color: var(--bg-dark);
    border-color: var(--accent-gold);
    box-shadow: 0 4px 12px var(--accent-gold-glow);
}

/* Menu Container */
.menu-container {
    padding: 0 24px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.section-title {
    font-size: 28px;
    color: var(--text-main);
    white-space: nowrap;
}

.title-line {
    height: 1px;
    background: linear-gradient(to right, var(--accent-gold), transparent);
    flex-grow: 1;
    opacity: 0.5;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Menu Card */
.menu-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.protein-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.pill {
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.pill-veg {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border-color: rgba(46, 204, 113, 0.2);
}

.pill-egg {
    background: rgba(241, 196, 15, 0.1);
    color: #f1c40f;
    border-color: rgba(241, 196, 15, 0.2);
}

.pill-chicken {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border-color: rgba(231, 76, 60, 0.2);
}

.pill-shrimp {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    border-color: rgba(52, 152, 219, 0.2);
}

.pill-mixed {
    background: rgba(155, 89, 182, 0.1);
    color: #9b59b6;
    border-color: rgba(155, 89, 182, 0.2);
}

.pill:hover, .pill.active {
    filter: brightness(1.2);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.card-content {
    padding: 24px 20px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.item-name {
    font-size: 20px;
    margin-right: 16px;
}

.item-price {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 18px;
    color: var(--accent-gold);
}

.item-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

.tag.chef-pick {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.tag.popular {
    background: rgba(255, 71, 87, 0.1);
    color: #ff4757;
    border: 1px solid rgba(255, 71, 87, 0.2);
}

/* Ambiance Section */
.ambiance-section {
    margin-top: 40px;
    margin-bottom: 20px;
}

.ambiance-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 300px;
}

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

.ambiance-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.2));
}

.ambiance-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    z-index: 1;
    text-align: center;
}

.ambiance-content h3 {
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--accent-gold);
}

.ambiance-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.reserve-btn {
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 12px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}



/* Simple entry animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.menu-card:nth-child(1) { animation-delay: 0.1s; }
.menu-card:nth-child(2) { animation-delay: 0.2s; }
.menu-card:nth-child(3) { animation-delay: 0.3s; }

/* Desktop & Web View Styles */
@media (min-width: 768px) {
    .menu-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .hero-section {
        height: 50vh;
        border-radius: var(--radius-lg);
        overflow: hidden;
        margin: 80px 24px 24px 24px;
    }

    .hero-title {
        font-size: 56px;
    }

    .category-slider {
        justify-content: center;
    }

    .menu-container, .category-slider-container {
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }
}

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

    .menu-container, .category-slider-container {
        max-width: 1200px;
    }
}
