:root {
    --gold: #D4A574;
    --charcoal: #121212;
    --grey-dark: #1E1E1E;
    --grey-light: #2A2A2A;
    --white: #FAFAFA;
    --gold-glow: rgba(212, 165, 116, 0.3);
}

/* Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Montserrat', sans-serif; }
body { background: var(--charcoal); color: var(--white); scroll-behavior: smooth; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header Styling */
.main-header { position: fixed; top: 0; width: 100%; z-index: 1000; background: rgba(18, 18, 18, 0.95); padding: 15px 0; border-bottom: 1px solid rgba(212, 165, 116, 0.1); backdrop-filter: blur(10px); }
nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Cinzel', serif; font-size: 1.8rem; color: var(--white); text-decoration: none; letter-spacing: 2px; font-weight: 900; }
.logo span { color: var(--gold); }
.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a { text-decoration: none; color: var(--white); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; transition: 0.3s; }
.nav-links a:hover { color: var(--gold); }
.gold-nav-btn { background: var(--gold); color: black; border: none; padding: 10px 25px; font-weight: 700; cursor: pointer; border-radius: 2px; transition: 0.3s; }
.gold-nav-btn:hover { background: white; transform: translateY(-2px); }

/* Hero Section */
.hero-section { height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-parallax { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('https://images.unsplash.com/photo-1594041680534-e8c8cdebd679?q=80&w=1920') center/cover; z-index: -1; transform: scale(1.1); }
.hero-overlay { position: absolute; width: 100%; height: 100%; background: radial-gradient(circle, transparent, rgba(0,0,0,0.8)); }
.gold-badge { color: var(--gold); letter-spacing: 6px; font-size: 0.8rem; display: block; margin-bottom: 20px; text-transform: uppercase; }
.hero h1 { font-family: 'Cinzel', serif; font-size: 4.5rem; line-height: 1; margin-bottom: 25px; font-weight: 900; }
.hero h1 .accent-text { color: var(--gold); font-style: italic; }
.hero p { max-width: 650px; color: #BBB; font-size: 1.1rem; margin: 0 auto 40px; line-height: 1.8; }
.hero-actions { display: flex; justify-content: center; gap: 20px; }
.btn-primary { background: var(--gold); color: black; border: none; padding: 18px 45px; font-weight: 800; cursor: pointer; text-transform: uppercase; transition: 0.4s; }
.btn-secondary { background: transparent; border: 2px solid white; color: white; padding: 18px 45px; font-weight: 800; cursor: pointer; transition: 0.4s; }
.btn-primary:hover { background: white; box-shadow: 0 0 20px var(--gold-glow); }

/* About Section */
.about-section { padding: 120px 0; background: var(--grey-dark); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-box { position: relative; }
.main-img { width: 100%; height: 550px; background: url('https://images.unsplash.com/photo-1544025162-d76694265947?q=80&w=1000') center/cover; border: 1px solid var(--gold); padding: 15px; }
.experience-card { position: absolute; bottom: -30px; right: -30px; background: var(--gold); color: black; padding: 35px; text-align: center; }
.experience-card h3 { font-size: 2.5rem; line-height: 1; }
.section-heading { font-family: 'Cinzel', serif; font-size: 3rem; margin-bottom: 30px; }
.section-heading span { color: var(--gold); }
.feature-list { list-style: none; margin: 30px 0; }
.feature-list li { margin-bottom: 12px; font-weight: 600; color: #AAA; }
.feature-list span { color: var(--gold); margin-right: 10px; font-weight: 900; }

/* Menu Section */
.menu-section { padding: 100px 0; }
.section-title { text-align: center; margin-bottom: 60px; }
.menu-tabs { display: flex; justify-content: center; gap: 15px; margin-bottom: 50px; flex-wrap: wrap; }
.tab-btn { background: none; border: 1px solid var(--gold); color: var(--gold); padding: 12px 30px; font-family: 'Cinzel', serif; font-weight: 700; cursor: pointer; transition: 0.4s; }
.tab-btn.active, .tab-btn:hover { background: var(--gold); color: black; }
.menu-display-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.menu-card { background: var(--grey-dark); padding: 35px; border: 1px solid rgba(212, 165, 116, 0.1); border-radius: 2px; transition: 0.4s; position: relative; }
.menu-card:hover { border-color: var(--gold); transform: translateY(-10px); }
.menu-card h3 { font-family: 'Cinzel', serif; color: var(--gold); margin-bottom: 15px; font-size: 1.5rem; }
.menu-card p { font-size: 0.85rem; color: #888; margin-bottom: 25px; line-height: 1.6; }
.price-tag { font-weight: 800; font-size: 1.4rem; display: block; margin-bottom: 25px; }
.add-to-cart { width: 100%; background: transparent; border: 1px solid var(--white); color: white; padding: 12px; font-weight: 700; cursor: pointer; transition: 0.3s; }
.add-to-cart:hover { background: white; color: black; }

/* Cart & Modal UI */
.cart-floating { position: fixed; bottom: 40px; right: 40px; z-index: 999; }
.cart-main-btn { background: var(--gold); border: none; width: 75px; height: 75px; border-radius: 50%; font-size: 1.8rem; cursor: pointer; box-shadow: 0 10px 30px rgba(0,0,0,0.5); position: relative; }
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); z-index: 2000; display: none; align-items: center; justify-content: center; }
.modal-content { background: var(--charcoal); border: 1px solid var(--gold); width: 90%; max-width: 550px; padding: 40px; max-height: 90vh; overflow-y: auto; }
.lux-input { width: 100%; background: #000; border: 1px solid #333; padding: 15px; color: white; margin-bottom: 12px; font-size: 0.9rem; }
.final-whatsapp-btn { width: 100%; background: #25D366; color: white; padding: 18px; border: none; font-weight: 800; font-size: 1.1rem; cursor: pointer; text-transform: uppercase; }

/* Animations */
.scroll-down { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); }
.mouse { width: 25px; height: 45px; border: 2px solid var(--white); border-radius: 20px; position: relative; }
.mouse::before { content: ''; position: absolute; top: 10px; left: 50%; width: 5px; height: 10px; background: var(--gold); transform: translateX(-50%); animation: scrollMouse 2s infinite; }
@keyframes scrollMouse { 0% { opacity: 1; top: 10px; } 100% { opacity: 0; top: 25px; } }

@media (max-width: 768px) {
    .hero h1 { font-size: 2.8rem; }
    .about-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
}