:root {
    --bg-color: #121212;
    --card-bg: #1a1a1a;
    --text-color: #f5f5f5;
    --accent-gold: #D4AF37; 
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lato', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    line-height: 1.6;
}

/* Typography & Utils */
h1, h2, h3, .price { font-family: var(--font-serif); }
.gold-text { color: var(--accent-gold); font-style: italic; font-family: var(--font-serif); }


/* --- UPDATED: LARGER LOGO SIZES --- */

/* Navbar Logo */
.logo { 
    height: 75px; /* Increased from 50px */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-gold); 
    padding: 8px 20px; /* Increased padding to match larger size */
    border-radius: 3px; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
    transition: transform 0.3s ease;
}
.logo:hover {
    transform: scale(1.02); /* Subtle zoom effect on hover */
}

.logo img {
    height: 100%; 
    width: auto;
    display: block;
}

/* Footer Logo */
.logo-footer {
    height: 60px; /* Increased from 40px */
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-gold);
    padding: 8px 15px;
    border-radius: 3px;
}

.logo-footer img {
    height: 100%;
    width: auto;
    opacity: 0.9; 
}


/* Navbar */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 50px; /* Slightly reduced vertical padding since logo is taller */
    position: fixed; width: 100%; top: 0; z-index: 1000;
    background: rgba(18, 18, 18, 0.98); 
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transition: 0.3s;
}
.nav-links { list-style: none; display: flex; gap: 30px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-color); font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; transition: 0.3s; }
.nav-links a:hover { color: var(--accent-gold); }
.btn-gold { border: 1px solid var(--accent-gold); padding: 12px 30px; color: var(--accent-gold) !important; transition: 0.3s; font-weight: bold; letter-spacing: 1px; }
.btn-gold:hover { background: var(--accent-gold); color: #000 !important; }

/* Hero */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1624353365286-3f8d62daad51?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    display: flex; align-items: center; justify-content: center; text-align: center; position: relative;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.65); }
.hero-content { position: relative; z-index: 1; animation: fadeIn 1.5s ease; padding: 0 20px; }
.hero h1 { font-size: 4.2rem; margin-bottom: 25px; line-height: 1.1; }
.subtitle { text-transform: uppercase; letter-spacing: 4px; color: var(--accent-gold); margin-bottom: 15px; font-size: 0.9rem; font-weight: bold; }
.hero-desc { font-size: 1.2rem; color: #ccc; margin-bottom: 35px; font-weight: 300; }
.btn-outline { color: #fff; text-decoration: none; border-bottom: 1px solid var(--accent-gold); padding-bottom: 5px; transition: 0.3s; font-size: 1.1rem; }
.btn-outline:hover { color: var(--accent-gold); }

/* Philosophy */
#philosophy { padding: 100px 20px; text-align: center; background: #0f0f0f; }
.philosophy-content { max-width: 700px; margin: 0 auto; }
#philosophy h2 { font-size: 2.8rem; margin-bottom: 20px; color: var(--text-color); }
#philosophy p { font-size: 1.2rem; color: #aaa; line-height: 1.8; }


/* Menu Section */
#menu { padding: 100px 50px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 3rem; }
.divider { width: 60px; height: 2px; background: var(--accent-gold); margin: 20px auto; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; }

.menu-card {
    background: var(--card-bg);
    border: 1px solid #2a2a2a;
    transition: 0.4s;
}
.menu-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card-image { height: 280px; overflow: hidden; position: relative; }
.card-image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(30%); transition: 0.5s; }
.menu-card:hover .card-image img { filter: grayscale(0%); transform: scale(1.05); }

.card-details { padding: 35px 30px; }
.card-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 15px; border-bottom: 1px solid #333; padding-bottom: 15px; }
.card-top h3 { font-size: 1.5rem; color: #fff; }
.price { font-size: 1.3rem; color: var(--accent-gold); }

.ingredients-list { display: flex; gap: 15px; margin-bottom: 20px; font-size: 0.85rem; color: #999; text-transform: uppercase; letter-spacing: 0.5px; }
.ingredients-list span { display: flex; align-items: center; gap: 6px; }
.ingredients-list i { width: 14px; height: 14px; color: var(--accent-gold); }

.description { font-size: 1rem; color: #ccc; line-height: 1.7; font-weight: 300; }

/* Waitlist Form */
#waitlist { padding: 120px 20px; text-align: center; background: linear-gradient(to bottom, #0a0a0a, #121212); }
.form-box { max-width: 500px; margin: 0 auto; border: 1px solid var(--accent-gold); padding: 50px; }
#waitlist h2 { margin-bottom: 10px; color: var(--accent-gold); font-size: 2.2rem; }
#waitlist input { width: 100%; padding: 15px; background: transparent; border: none; border-bottom: 1px solid #444; color: #fff; outline: none; text-align: center; margin-bottom: 25px; font-size: 1.1rem; font-family: var(--font-serif); }
#waitlist input:focus { border-color: var(--accent-gold); }
#waitlist button { width: 100%; padding: 15px; background: var(--accent-gold); color: #000; border: none; font-weight: bold; text-transform: uppercase; cursor: pointer; transition: 0.3s; letter-spacing: 2px; }
#waitlist button:hover { background: #fff; }

/* Footer */
footer { text-align: center; padding: 50px; border-top: 1px solid #222; color: #555; font-size: 0.8rem; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.8rem; }
    
    /* Mobile Logo Sizing */
    .logo { height: 55px; padding: 5px 15px; } 
    
    .nav-links { display: none; }
    .card-image { height: 220px; }
}