:root {
    --gold: #c5a059;
    --dark: #0a0a0a;
    --gray: #1a1a1a;
    --text: #e0e0e0;
    --text-dim: #888;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    background-color: var(--dark);
    color: var(--text);
    font-family: var(--font-sans);
    overflow-x: hidden;
}

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

/* Navbar */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: 2.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.05);
    background: linear-gradient(to bottom, rgba(10,10,10,0.8), transparent);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled { padding: 1.2rem 0; background: rgba(10,10,10,0.95); border-bottom-color: rgba(197, 160, 89, 0.2); }

.nav-container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 2rem;
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.logo { font-family: var(--font-serif); font-size: 1.5rem; letter-spacing: 0.3em; text-decoration: none; color: white; position: relative; z-index: 1001; }

.nav-links { display: flex; gap: 3.5rem; align-items: center; }
.nav-links a { 
    text-decoration: none; color: var(--text-dim); font-size: 0.8rem; letter-spacing: 0.2em; 
    text-transform: uppercase; transition: all 0.3s ease; position: relative;
}
.nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s ease; }
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.btn-reserva { padding: 0.8rem 1.8rem; border: 1px solid var(--gold); color: var(--gold) !important; border-radius: 2px; }
.btn-reserva:hover { background: var(--gold); color: var(--dark) !important; }

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}
.mobile-toggle span {
    width: 28px;
    height: 1px;
    background: var(--gold);
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* Hero */
.hero { height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; overflow: hidden; }
.hero-bg img { 
    width: 100%; height: 100%; object-fit: cover; 
    filter: blur(4px) brightness(0.6); /* Added blur for readability */
    transform: scale(1.05);
}
.overlay { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background: radial-gradient(circle, transparent 20%, var(--dark) 100%); 
    opacity: 0.8; 
}

.hero-content { z-index: 1; max-width: 900px; padding: 0 2rem; }
.hero-badge { font-size: 0.75rem; letter-spacing: 0.6em; color: var(--gold); margin-bottom: 2.5rem; display: block; opacity: 0.8; }
.hero-title { font-family: var(--font-serif); font-size: clamp(3rem, 10vw, 7rem); line-height: 1; margin-bottom: 2.5rem; letter-spacing: -0.02em; }
.hero-title .italic { font-style: italic; font-weight: 400; color: var(--gold); }
.hero-desc { font-weight: 300; font-size: 1.2rem; color: var(--text-dim); max-width: 550px; margin: 0 auto 3.5rem; line-height: 1.8; }

.scroll-hint { position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.scroll-hint .line { width: 1px; height: 70px; background: linear-gradient(to bottom, var(--gold), transparent); }
.scroll-hint span { font-size: 0.65rem; letter-spacing: 0.5em; color: var(--text-dim); }

/* Section Generic */
.section { padding: 12rem 0; }
.section-title { font-family: var(--font-serif); font-size: clamp(2.5rem, 6vw, 4rem); margin-bottom: 2.5rem; letter-spacing: -0.01em; }
.section-title.center { text-align: center; margin-bottom: 7rem; }

/* Experience */
.exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.exp-text p { font-size: clamp(1.1rem, 1.8vw, 1.3rem); line-height: 2; color: var(--text-dim); font-weight: 300; margin-bottom: 4rem; }
.exp-stats { display: flex; gap: 5rem; }
.stat { display: flex; flex-direction: column; gap: 0.8rem; }
.stat-num { font-family: var(--font-serif); font-size: clamp(2.5rem, 5vw, 3.5rem); color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-dim); }

.img-wrapper { border-radius: 2px; overflow: hidden; box-shadow: 0 60px 120px rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.05); }
.img-wrapper img { width: 100%; transition: transform 2s cubic-bezier(0.2, 1, 0.3, 1); }
.img-wrapper:hover img { transform: scale(1.08); }

/* Menu Showcase */
.menu-items { display: flex; flex-direction: column; gap: 6rem; max-width: 900px; margin: 0 auto; }
.menu-item { text-align: center; padding-bottom: 6rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.menu-item:last-child { border-bottom: none; }
.item-cat { font-size: 0.65rem; letter-spacing: 0.4em; color: var(--gold); margin-bottom: 1.5rem; display: block; }
.menu-item h3 { font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 1.2rem; letter-spacing: 0.05em; }
.menu-item p { color: var(--text-dim); font-weight: 300; font-size: 1.1rem; }

/* Footer */
.footer { padding: 8rem 0; border-top: 1px solid rgba(255,255,255,0.05); background: #050505; }
.footer-content { display: flex; justify-content: space-between; align-items: center; gap: 3rem; }
.footer-info h3 { font-family: var(--font-serif); font-size: 1.4rem; letter-spacing: 0.3em; margin-bottom: 0.8rem; }
.footer-info p { color: var(--text-dim); font-size: 0.9rem; }
.footer-links a { text-decoration: none; color: var(--gold); font-size: 0.85rem; letter-spacing: 0.15em; border-bottom: 1px solid transparent; transition: all 0.3s ease; }
.footer-links a:hover { border-bottom-color: var(--gold); letter-spacing: 0.2em; }

/* Responsive Media Queries */
@media (max-width: 992px) {
    .exp-grid { grid-template-columns: 1fr; gap: 5rem; }
    .exp-text { order: 2; text-align: center; }
    .exp-image { order: 1; max-width: 600px; margin: 0 auto; }
    .exp-stats { justify-content: center; }
    .section { padding: 8rem 0; }
}

@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
        background: rgba(10,10,10,0.98); flex-direction: column; justify-content: center;
        transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
        backdrop-filter: blur(20px);
        gap: 4rem;
    }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 2rem; font-family: var(--font-serif); letter-spacing: 0.1em; color: white; }
    .btn-reserva { border: 1px solid var(--gold); padding: 1rem 2rem; }
    
    .nav-container { padding: 0 2rem; }
    
    .mobile-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .mobile-toggle.active span:nth-child(2) { transform: translateY(-0px) rotate(-45deg); width: 28px; }
    
    .footer-content { flex-direction: column; text-align: center; }
}

/* Animations Classes */
.reveal-anim { opacity: 0; transform: translateY(40px); transition: all 1.2s cubic-bezier(0.2, 1, 0.3, 1); }
.reveal-anim.active { opacity: 1; transform: translateY(0); }
