/* VARIABLES & RESET */
:root {
    --bg-dark: #121212;
    --bg-light: #1a1a1a;
    --text-main: #f5f5f5;
    --text-muted: #a3a3a3;
    --gold: #c59d5f;
    --gold-hover: #a37c44;
    --border-color: #333333;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* TYPOGRAPHY */
h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; color: #ffffff; }
.section-title { font-size: 42px; margin-bottom: 20px; }
.section-subtitle { font-family: var(--font-heading); font-style: italic; color: var(--gold); font-size: 20px; letter-spacing: 2px; }
.center { text-align: center; }

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}
.btn-gold { background-color: var(--gold); color: #000; font-weight: 600; }
.btn-gold:hover { background-color: var(--gold-hover); color: #fff; }
.btn-outline { border: 1px solid var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background-color: var(--gold); color: #000; }
.full-width { width: 100%; }

/* NAVBAR */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: 0.4s ease;
    background: transparent;
}
.navbar.scrolled {
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-heading); font-size: 28px; font-weight: 700; color: #fff; text-decoration: none; display: flex; align-items: center; gap: 8px; }
.logo i { color: var(--gold); font-size: 22px; }
.logo span { color: var(--gold); }
.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a { color: var(--text-main); text-decoration: none; font-size: 15px; font-weight: 400; transition: 0.3s; letter-spacing: 1px; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.mobile-toggle { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: url('https://images.unsplash.com/photo-1514933651103-005eec06c04b?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 600px; }
.subtitle-script { font-family: var(--font-heading); font-style: italic; font-size: 28px; color: var(--gold); }
.hero h1 { font-size: 64px; line-height: 1.1; margin: 15px 0 25px; }
.hero p { font-size: 17px; color: #ccc; margin-bottom: 40px; }
.hero-buttons { display: flex; gap: 15px; }

/* SECTIONS COMMON */
.section { padding: 100px 0; }

/* ABOUT SECTION */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-images { position: relative; }
.img-main { width: 90%; border-radius: 4px; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.img-sub { position: absolute; bottom: -30px; right: 0; width: 50%; border: 10px solid var(--bg-dark); border-radius: 4px; }
.about-content p { color: var(--text-muted); margin-bottom: 20px; }
.features-list { list-style: none; margin-top: 30px; }
.features-list li { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; color: #ccc; }
.features-list i { color: var(--gold); }

/* MENU SECTION */
.menu-section { background: var(--bg-light); }
.menu-tabs { display: flex; justify-content: center; gap: 20px; margin: 40px 0; flex-wrap: wrap; }
.menu-tab { background: transparent; border: none; color: var(--text-muted); font-size: 16px; font-family: var(--font-heading); letter-spacing: 1px; cursor: pointer; padding-bottom: 5px; border-bottom: 2px solid transparent; transition: 0.3s; }
.menu-tab.active, .menu-tab:hover { color: var(--gold); border-bottom-color: var(--gold); }

.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); gap: 30px; }
.menu-item { display: flex; gap: 20px; align-items: center; background: rgba(255,255,255,0.03); padding: 15px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.05); transition: 0.3s; }
.menu-item:hover { background: rgba(255,255,255,0.08); border-color: var(--gold); }
.item-img { width: 90px; height: 90px; flex-shrink: 0; border-radius: 50%; overflow: hidden; border: 2px solid var(--gold); }
.item-img img { width: 100%; height: 100%; object-fit: cover; }
.item-info { flex-grow: 1; }
.item-head { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px dashed var(--border-color); padding-bottom: 8px; margin-bottom: 8px; }
.item-head h3 { font-size: 18px; margin: 0; }
.price { color: var(--gold); font-weight: 600; font-size: 18px; }
.item-info p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.4; }

/* GALLERY SECTION */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 50px; }
.gallery-item { overflow: hidden; border-radius: 4px; height: 250px; }
.gallery-item.large { grid-row: span 2; height: 100%; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.1); }

/* RESERVATION SECTION */
.reservation-box { display: grid; grid-template-columns: 1fr 1.2fr; background: var(--bg-light); border-radius: 8px; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); }
.reservation-info { padding: 50px; background: url('https://images.unsplash.com/photo-1550966871-3ed3cdb5ed0c?auto=format&fit=crop&w=800&q=80') center/cover; position: relative; }
.reservation-info::before { content: ''; position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(18,18,18,0.85); }
.reservation-info > * { position: relative; z-index: 1; }
.contact-methods { margin-top: 40px; }
.c-method { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; }
.c-method i { color: var(--gold); font-size: 24px; margin-top: 5px; }
.c-method h4 { margin-bottom: 5px; font-family: var(--font-body); font-weight: 500; }
.c-method p { color: #ccc; font-size: 14px; }

.reservation-form { padding: 50px; }
.input-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group.full-width { grid-column: span 2; }
.form-group label { display: block; margin-bottom: 8px; font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: var(--bg-dark); border: 1px solid var(--border-color); color: #fff; padding: 12px 15px; border-radius: 4px; outline: none; font-family: var(--font-body); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
/* Custom scrollbar for dark theme */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* FOOTER */
.footer { background: #0a0a0a; padding-top: 60px; border-top: 1px solid var(--border-color); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 40px; padding-bottom: 40px; }
.footer-brand p { color: var(--text-muted); margin: 15px 0; }
.social-links { display: flex; gap: 15px; }
.social-links a { display: flex; justify-content: center; align-items: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.05); color: var(--gold); text-decoration: none; transition: 0.3s; }
.social-links a:hover { background: var(--gold); color: #000; }
.footer h3 { font-size: 20px; margin-bottom: 20px; }
.footer-links ul { list-style: none; }
.footer-links a { color: var(--text-muted); text-decoration: none; display: block; margin-bottom: 10px; transition: 0.3s; }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact p { color: var(--text-muted); margin-bottom: 12px; display: flex; gap: 10px; }
.footer-contact i { color: var(--gold); margin-top: 4px; }
.footer-bottom { text-align: center; padding: 20px; border-top: 1px solid rgba(255,255,255,0.05); color: #666; font-size: 13px; }

/* FLOATING WHATSAPP */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25d366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 32px; box-shadow: 0 10px 20px rgba(0,0,0,0.5); z-index: 999; text-decoration: none; transition: transform 0.3s; }
.whatsapp-float:hover { transform: scale(1.1); }

/* RESPONSIVE DESIGN (MOBILE ADAPTABILITY) */
@media (max-width: 992px) {
    .about-grid, .reservation-box, .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .img-sub { display: none; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item.large { grid-row: auto; height: 250px; }
    .hero h1 { font-size: 50px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: rgba(18,18,18,0.98); flex-direction: column; padding: 20px; border-bottom: 1px solid var(--border-color); }
    .nav-links.active { display: flex; }
    .nav-cta .btn { display: none; }
    .mobile-toggle { display: block; }
    
    .hero h1 { font-size: 40px; }
    .hero-buttons { flex-direction: column; }
    .menu-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.wide { grid-column: auto; }
    .input-grid { grid-template-columns: 1fr; }
    .form-group.full-width { grid-column: auto; }
    
    .section { padding: 60px 0; }
    .reservation-info, .reservation-form { padding: 30px 20px; }
           }
