:root {
    --bg-dark: #0b0f19;
    --card-bg: #161e2e;
    --gold-primary: #d97706;
    --gold-light: #f59e0b;
    --text-primary: #f8fafc;
    --text-muted: #94a3b8;
    --font-title: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 8%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(11, 15, 25, 0.9);
    backdrop-filter: blur(16px);
    z-index: 100;
    border-bottom: 1px solid rgba(217, 119, 6, 0.2);
}

.logo {
    font-family: var(--font-title);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
}

.logo span {
    color: var(--gold-light);
    font-style: italic;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cart-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
}

.cart-btn span {
    background: var(--gold-primary);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    margin-left: 4px;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold-light);
    color: var(--gold-light);
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.btn-outline:hover {
    background: rgba(245, 158, 11, 0.1);
}

/* Hero */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(11, 15, 25, 0.6), rgba(11, 15, 25, 0.95));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--gold-light);
    font-weight: 700;
}

.hero-title {
    font-family: var(--font-title);
    font-size: 3.8rem;
    margin: 1rem 0;
    line-height: 1.15;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Menu */
.section {
    padding: 6rem 8%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gold-tag {
    color: var(--gold-light);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.section-header h2 {
    font-family: var(--font-title);
    font-size: 2.8rem;
    margin-top: 0.5rem;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cat-btn {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 10px 22px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cat-btn.active, .cat-btn:hover {
    background: var(--gold-primary);
    color: white;
    border-color: var(--gold-primary);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.dish-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.dish-card:hover {
    transform: translateY(-6px);
}

.dish-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.dish-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.dish-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.6rem;
}

.dish-title {
    font-family: var(--font-title);
    font-size: 1.3rem;
}

.dish-price {
    color: var(--gold-light);
    font-weight: 700;
    font-size: 1.2rem;
}

.dish-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    flex: 1;
}

.btn-add-dish {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 10px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-add-dish:hover {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    backdrop-filter: blur(8px);
}

.modal-content {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    position: relative;
    border: 1px solid rgba(217, 119, 6, 0.3);
}

.close-modal {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
}

#reserve-form {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row input, .form-row select {
    flex: 1;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 12px 16px;
    border-radius: 10px;
    outline: none;
}

.btn-full {
    width: 100%;
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 380px;
    background: var(--card-bg);
    z-index: 200;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-dark);
    padding: 10px 14px;
    border-radius: 10px;
}

.cart-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--gold-primary);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    z-index: 300;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hidden {
    display: none !important;
}

footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
