:root {
    --gold: #d4af37;
    --gold-dark: #b8860b;
    --dark: #121212;
    --cream: #f4f1ea;
    --text: #333333;
    --serif: 'Playfair Display', serif;
    --sans: 'Inter', sans-serif;
    --transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--cream);
    color: var(--text);
    font-family: var(--sans);
    line-height: 1.7;
}

h1,
h2,
h3 {
    font-family: var(--serif);
    color: var(--dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Hero */
.hero {
    padding: 10rem 0;
    text-align: center;
    background: linear-gradient(rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.7)), url('https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?auto=format&fit=crop&q=80&w=1470') center/cover;
    color: white;
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-style: italic;
}

.btn-gold {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gold);
    color: var(--dark);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Menu */
.menu-section {
    padding: 8rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title h2 {
    font-size: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

.item-info h3 {
    font-size: 1.25rem;
}

.item-info p {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.price {
    font-weight: 700;
    color: var(--gold-dark);
}

/* Reservation */
.reserve {
    background: var(--dark);
    color: var(--cream);
    padding: 6rem 0;
    text-align: center;
}

.reserve h2 {
    color: var(--gold);
    margin-bottom: 2rem;
}

form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

input {
    padding: 1rem;
    border: 1px solid var(--gold);
    background: transparent;
    color: white;
    width: 250px;
}

@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 3rem;
    }

    input {
        width: 100%;
    }
}