:root {
    --primary: #c5a059; 
    --primary-glow: rgba(197, 160, 89, 0.4);
    --bg-dark: #0a0a0a;
    --bg-secondary: #050505;
    --bg-card: rgba(255, 255, 255, 0.03);
    --text-main: #f5f5f7;
    --text-dim: #a1a1a6;
    --glass: rgba(255, 255, 255, 0.08);
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Base Styles --- */
* { margin: 0; padding: 0; box-sizing: border-box; outline: none; border: none; }
html { scroll-behavior: smooth; }
body { 
    background: var(--bg-dark); 
    color: var(--text-main); 
    font-family: 'Inter', sans-serif; 
    overflow-x: hidden;
    line-height: 1.4;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.reveal { opacity: 0; transform: translateY(20px); transition: var(--transition); }
.reveal.active { opacity: 1; transform: translateY(0); }
.section { padding: clamp(50px, 8vw, 100px) 0; }
.secondary-bg { background: var(--bg-secondary); }

/* --- Loader & Progress --- */
#loader {
    position: fixed; inset: 0; background: var(--bg-dark);
    z-index: 9999; display: flex; justify-content: center; align-items: center;
    transition: 0.5s;
}
.progress-bar {
    position: fixed; top: 0; left: 0; height: 2px;
    background: var(--primary); width: 0%; z-index: 2000;
}

/* --- Navbar --- */
nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: 15px 0; transition: var(--transition);
}
nav.scrolled {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass);
}
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.logo { 
    font-family: 'Playfair Display', serif; font-size: 1.4rem; 
    color: var(--primary); text-decoration: none; letter-spacing: 3px;
}
.nav-links { display: flex; gap: 25px; list-style: none; }
.nav-links a { color: var(--text-main); text-decoration: none; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }
.nav-actions { display: flex; align-items: center; gap: 15px; }
.cart-icon-wrapper { cursor: pointer; position: relative; }
#cart-count { 
    position: absolute; top: -8px; right: -10px; 
    background: var(--primary); color: black; font-size: 9px; 
    padding: 2px 5px; border-radius: 50%; font-weight: bold; 
}
.mobile-toggle { display: none; font-size: 1.2rem; cursor: pointer; }

/* --- Hero --- */
.hero {
    height: 100vh; display: flex; align-items: center; justify-content: center;
    text-align: center; background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
    url('https://images.unsplash.com/photo-1442512595331-e89e73853f31?auto=format&fit=crop&w=1920');
    background-size: cover; background-position: center;
}
.hero h1 { 
    font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 10vw, 5rem);
    margin-bottom: 15px; color: var(--text-main); line-height: 1.1;
}
.hero p { color: var(--text-dim); font-size: clamp(0.9rem, 2vw, 1.1rem); max-width: 500px; margin: 0 auto 30px; }

.btn {
    padding: 14px 28px; border-radius: 50px; text-decoration: none;
    font-weight: 600; display: inline-block; transition: var(--transition);
    cursor: pointer; font-size: 0.85rem; text-align: center;
}
.btn-gold { background: var(--primary); color: #000; }
.btn-outline { border: 1px solid var(--text-main); color: var(--text-main); background: transparent; }
.w-100 { width: 100%; }

/* --- Booking Form --- */
.booking-container {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px; background: var(--bg-card); padding: 40px;
    border-radius: 30px; border: 1px solid var(--glass);
}
.input-group { margin-bottom: 20px; }
.input-group label { display: block; font-size: 0.7rem; color: var(--primary); margin-bottom: 8px; text-transform: uppercase; }
.input-group input, .input-group select {
    width: 100%; background: rgba(255,255,255,0.05); color: white;
    padding: 12px; border-radius: 10px; border: 1px solid transparent; transition: 0.3s;
}
.input-group input:focus { border-color: var(--primary); }

.gold-text { font-family:'Playfair Display'; margin-bottom:15px; color:var(--primary); }
.dim-text { font-size:0.85rem; color:var(--text-dim); margin-bottom:20px; }
.note-box { font-size:0.75rem; border-left: 2px solid var(--primary); padding-left:15px; }

/* --- Location & Map --- */
.map-wrapper {
    height: 400px; border-radius: 25px; overflow: hidden;
    border: 1px solid var(--glass); filter: grayscale(1) invert(0.9);
}
.contact-details { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-top: 30px; }
.detail-item { background: var(--glass); padding: 20px; border-radius: 20px; text-align: center; }
.detail-item i { color: var(--primary); font-size: 1.2rem; margin-bottom: 10px; display: block; }
.detail-item p { font-size: 0.8rem; color: var(--text-dim); }
.full-width { grid-column: span 2; }

/* --- Grids --- */
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.menu-card {
    background: var(--bg-card); border-radius: 20px; padding: 15px;
    border: 1px solid var(--glass); transition: var(--transition);
}
.menu-card img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 14px; margin-bottom: 10px; }
.menu-card h3 { font-size: 0.85rem; margin-bottom: 5px; }
.price-tag { color:var(--primary); font-size:0.8rem; font-weight:600; margin-bottom:10px; }

/* --- Cart Sidebar --- */
#cart-sidebar {
    position: fixed; right: -100%; top: 0; width: 400px; height: 100%;
    background: #0f0f0f; z-index: 3000; padding: 30px;
    transition: var(--transition); border-left: 1px solid var(--glass);
}
#cart-sidebar.active { right: 0; }
.cart-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.8);
    display: none; z-index: 2500; backdrop-filter: blur(5px);
}
.cart-overlay.active { display: block; }
.cart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.cart-header i { cursor: pointer; }
.cart-footer { margin-top: 30px; border-top: 1px solid var(--glass); padding-top: 20px; }
.total-row { display:flex; justify-content:space-between; margin-bottom: 20px; }
#cart-total { color:var(--primary); font-weight: 600; }

/* --- Footer --- */
footer { padding:40px 0; text-align:center; border-top:1px solid var(--glass); }
.copyright { font-size:0.6rem; color:#444; margin-top: 10px; }

/* --- Responsive --- */
@media (max-width: 768px) {
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 80%; height: 100vh;
        background: #0a0a0a; flex-direction: column; justify-content: center;
        align-items: center; transition: 0.5s; z-index: 2001; gap: 40px;
    }
    .nav-links.mobile-active { right: 0; }
    .mobile-toggle { display: block; }
    #cart-sidebar { width: 100%; }
    .booking-container { padding: 25px; }
    .hero-btns { display: flex; flex-direction: column; gap: 10px; padding: 0 20px; }
}

.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { font-family: 'Playfair Display', serif; margin-bottom: 8px; font-size: 2rem; }
.section-header p { color: var(--text-dim); text-transform: uppercase; letter-spacing: 2px; font-size: 0.7rem; }