:root {
    --bg-color: #211A15;      
    --bg-surface: #2b221c;    
    --brand-caramel: #AD7D4B; 
    --brand-beige: #DEC5AB;   
    --text-main: #DDD5D0;     
    --text-muted: rgba(221, 213, 208, 0.65); 
    --accent-green: #3C574E;  
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lato', sans-serif;
}

html { scroll-padding-top: 80px; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: var(--bg-color); color: var(--text-main); font-family: var(--font-sans); line-height: 1.6; overflow-x: hidden; scroll-behavior: smooth; }

h1, h2, h3, h4, .logo-text, .logo-text-small { font-family: var(--font-serif); font-weight: 400; color: var(--brand-caramel); }

.navbar { position: fixed; top: 0; width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1rem 5%; background: rgba(33, 26, 21, 0.95); backdrop-filter: blur(10px); z-index: 1000; border-bottom: 1px solid rgba(173, 125, 75, 0.2); }
.logo-text { font-size: 2rem; letter-spacing: 1px; color: var(--brand-beige); }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { color: var(--text-main); text-decoration: none; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; transition: color 0.3s; }
.nav-links a:hover { color: var(--brand-caramel); }

.nav-actions-mobile { display: flex; align-items: center; gap: 1.5rem; }

.language-switcher { display: flex; align-items: center; white-space: nowrap; }
.language-switcher .lang-btn { background: none; border: none; font-family: inherit; cursor: pointer; font-size: 0.85rem; color: var(--text-muted); transition: color 0.3s; }
.language-switcher .lang-btn:hover, .language-switcher .lang-btn.active { color: var(--brand-caramel); font-weight: bold; }

.mobile-lang-container { display: none; }
.desktop-lang-container { display: block; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; margin-top: 4px; }
.menu-toggle span { width: 25px; height: 2px; background: var(--brand-caramel); transition: 0.3s; }

.btn-outline { border: 1px solid var(--brand-caramel); color: var(--brand-caramel); padding: 0.6rem 1.5rem; text-decoration: none; text-transform: uppercase; font-size: 0.85rem; background: transparent; cursor: pointer; display: inline-block; transition: all 0.3s ease; }
.btn-outline:hover { background: var(--brand-caramel); color: var(--bg-color); }
.btn-solid { background: var(--brand-caramel); color: var(--bg-color); padding: 1rem 2rem; border: none; text-transform: uppercase; font-weight: 700; cursor: pointer; width: 100%; transition: background 0.3s; }
.btn-solid:hover { background: #c28f5a; }

.hero { height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; background: radial-gradient(circle at center, rgba(173, 125, 75, 0.2) 0%, rgba(33, 26, 21, 1) 100%), url('https://via.placeholder.com/1920x1080/211A15/AD7D4B') no-repeat center/cover; }
.hero-content h1 { font-size: 4rem; margin-bottom: 1rem; color: var(--brand-beige); }
.hero-content p { font-size: 1.2rem; color: var(--text-main); margin-bottom: 2rem; }

.concept-section, .menu-section, .info-section, .gallery-section, .events-section-public { padding: 5rem 5%; }
.concept-section { background-color: var(--brand-beige); text-align: center; color: var(--bg-color); }
.concept-text h2 { font-size: 2.5rem; margin-bottom: 1rem; color: var(--bg-color); font-weight: 600;}
.concept-text p { color: #3d2f25; }

/* =========================================
   SECCIÓN DE HISTORIA Y VALORES
========================================= */
.historia-section { padding: 5rem 5%; background-color: var(--bg-surface); }
.historia-top { display: flex; flex-direction: column; gap: 4rem; max-width: 1200px; margin: 0 auto; align-items: center; }
@media (min-width: 992px) { 
    .historia-top { flex-direction: row; align-items: center; justify-content: space-between; } 
}
.historia-text { flex: 1.2; display: flex; flex-direction: column; justify-content: center; }
.historia-text p { margin-bottom: 1.2rem; color: var(--text-muted); text-align: justify; }

.historia-image { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; }
.historia-image img { width: 100%; max-width: 500px; border-radius: 8px; border: 2px solid var(--brand-caramel); object-fit: cover; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.image-caption { font-family: var(--font-serif); font-size: 1.5rem; color: var(--brand-beige); margin-top: 1rem; font-style: italic; text-align: center; }

.valores-bottom { max-width: 1200px; margin: 5rem auto 0; text-align: center; width: 100%; }
.val-title { font-size: 2.5rem; color: var(--brand-caramel); margin-bottom: 3rem; font-family: var(--font-serif); font-weight: 400; }

.valores-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; text-align: left; }
.valor-item { flex: 1 1 100%; padding: 2rem; background: var(--bg-color); border-top: 3px solid var(--brand-caramel); border-radius: 4px; box-shadow: 0 4px 15px rgba(0,0,0,0.2); transition: transform 0.3s ease; }
.valor-item:hover { transform: translateY(-5px); }
.valor-item h4 { color: var(--brand-beige); font-size: 1.2rem; margin-bottom: 1rem; font-family: var(--font-serif); }
.valor-item p { margin: 0; font-size: 0.95rem; line-height: 1.6; color: var(--text-muted); }

@media (min-width: 768px) { .valor-item { flex: 0 1 calc(50% - 1rem); } }
@media (min-width: 1024px) { .valor-item { flex: 0 1 calc(33.333% - 1.35rem); } }

/* ========================================= */

.gallery-section { background-color: var(--bg-color); }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 3rem; }

/* ACTUALIZACIÓN BANQUETE CON TEXTO DESCRIPTIVO */
.gallery-large { margin-bottom: 3rem; width: 100%; text-align: center; overflow: hidden; }
.gallery-large img { width: 100%; height: 500px; object-fit: cover; border-radius: 4px; }
@media (max-width: 768px) {
    .gallery-large img { height: 400px; }
}

.banquete-caption {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--brand-beige);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.gallery-item img { width: 100%; height: 300px; object-fit: cover; border-radius: 4px; margin-bottom: 1rem; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.02); }
.gallery-item p { color: var(--text-muted); font-size: 0.95rem; text-align: center; font-style: italic; }

.events-section-public { background-color: var(--bg-surface); border-top: 1px solid rgba(173, 125, 75, 0.1); border-bottom: 1px solid rgba(173, 125, 75, 0.1); }
.events-public-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; max-width: 1100px; margin: 0 auto; }
.event-card { display: flex; background: var(--bg-color); border: 1px solid rgba(173, 125, 75, 0.2); border-radius: 4px; overflow: hidden; transition: transform 0.3s ease; }
.event-card:hover { transform: translateY(-5px); border-color: var(--brand-caramel); }
.event-date { background: var(--brand-caramel); color: var(--bg-color); padding: 1.5rem; display: flex; flex-direction: column; justify-content: center; align-items: center; min-width: 100px; }
.event-date .day { font-size: 2.5rem; font-weight: 700; line-height: 1; font-family: var(--font-serif); }
.event-date .month { font-size: 1rem; text-transform: uppercase; font-weight: bold; letter-spacing: 2px;}
.event-info { padding: 1.5rem; display: flex; flex-direction: column; justify-content: center; }
.event-info h3 { margin-bottom: 0.5rem; font-size: 1.3rem; color: var(--brand-beige); }
.event-info p { color: var(--text-muted); font-size: 0.95rem; margin: 0; line-height: 1.4; }

.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; max-width: 1100px; margin: 0 auto; }
.schedule-list { list-style: none; margin-bottom: 3rem; }
.schedule-list li { display: flex; justify-content: space-between; padding: 1rem 0; border-bottom: 1px solid rgba(221, 213, 208, 0.1); color: var(--text-main); }
.contact-block { background: var(--bg-surface); padding: 2rem; border-left: 3px solid var(--brand-caramel); }
.contact-block h3 { margin-bottom: 1rem; font-size: 1.5rem; }
.contact-block p { color: var(--text-muted); margin-bottom: 0.5rem; }
.map-btn { margin-top: 1rem; }

.reservation-box { background: var(--bg-color); padding: 2.5rem; border: 1px solid rgba(173, 125, 75, 0.2); }
.reserva-form { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.5rem; }
.input-group { display: flex; flex-direction: column; gap: 0.5rem; width: 100%; }
.input-group label { color: var(--brand-caramel); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; font-weight: bold; }
.reserva-form input[type="text"], .reserva-form input[type="date"], .reserva-form input[type="time"] { background: transparent; border: none; border-bottom: 1px solid var(--text-muted); color: var(--text-main); padding: 0.5rem 0; outline: none; font-size: 1rem; width: 100%; font-family: var(--font-sans); }
.reserva-form input::placeholder { color: var(--text-muted); }
.reserva-form input:focus { border-bottom-color: var(--brand-caramel); }
.form-row { display: flex; gap: 1rem; }
.reserva-form input[type="date"]::-webkit-calendar-picker-indicator, .reserva-form input[type="time"]::-webkit-calendar-picker-indicator { filter: invert(85%) sepia(12%) saturate(400%) hue-rotate(330deg); cursor: pointer; }

.counter-widget { display: flex; align-items: center; gap: 1rem; margin-top: 0.2rem; }
.btn-counter { background: var(--bg-surface); border: 1px solid var(--brand-caramel); color: var(--brand-caramel); width: 35px; height: 35px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s;}
.btn-counter:hover { background: var(--brand-caramel); color: var(--bg-color); }
#res_personas { text-align: center; width: 40px; border: none !important; font-size: 1.2rem; font-weight: bold; color: var(--text-main); background: transparent; pointer-events: none; }

.right-column { display: flex; flex-direction: column; gap: 2rem; }

.events-box { background: var(--bg-surface); padding: 2.5rem; border: 1px dashed var(--brand-caramel); text-align: center;}
.events-box h3 { margin-bottom: 1rem; font-size: 1.8rem; }
.events-box p { color: var(--text-main); margin-bottom: 1.5rem; font-size: 0.95rem; }
.events-box h4 { margin-top: 1.5rem; margin-bottom: 1rem; color: var(--brand-beige); font-size: 1.1rem; }
.events-list { text-align: left; list-style: none; padding-left: 0; margin-bottom: 2rem; }
.events-list li { position: relative; padding-left: 1.5rem; margin-bottom: 0.8rem; color: var(--text-muted); font-size: 0.95rem; }
.events-list li::before { content: '✦'; position: absolute; left: 0; color: var(--brand-caramel); font-size: 1rem; top: -2px; }

.btn-whatsapp { background: var(--accent-green); color: var(--text-main); padding: 0.8rem 1.5rem; text-decoration: none; text-transform: uppercase; font-weight: bold; display: inline-block; border-radius: 4px; font-size: 0.85rem; letter-spacing: 1px; transition: background 0.3s;}
.btn-whatsapp:hover { background: #2a3e37; color: #fff; }

footer { text-align: center; padding: 3rem 2rem; border-top: 1px solid rgba(221, 213, 208, 0.05); background-color: var(--bg-surface); }
.logo-text-small { font-size: 2.5rem; margin-bottom: 1rem; color: var(--brand-beige); }
.social-links { margin-bottom: 1.5rem; display: flex; justify-content: center; gap: 1.5rem; }
.social-links a { color: var(--brand-caramel); text-decoration: none; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; transition: color 0.3s; }
.social-links a:hover { color: var(--brand-beige); }
footer p { color: var(--text-muted); font-size: 0.85rem; }

.legal-links { margin-top: 1.5rem; font-size: 0.8rem; display: flex; justify-content: center; flex-wrap: wrap; gap: 0.5rem;}
.legal-links a { color: var(--text-muted); text-decoration: none; transition: color 0.3s;}
.legal-links a:hover { color: var(--brand-caramel);}
.legal-page { padding: 8rem 5% 4rem; max-width: 900px; margin: 0 auto; color: var(--text-main);}
.legal-page h1 { font-size: 2.5rem; margin-bottom: 0.5rem; color: var(--brand-beige);}
.legal-page h2 { font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: 1rem; color: var(--brand-caramel);}
.legal-page p, .legal-page ul { margin-bottom: 1rem; color: var(--text-muted); line-height: 1.8;}
.legal-page ul { padding-left: 1.5rem;}
.legal-page li { margin-bottom: 0.5rem;}
.legal-page strong { color: var(--text-main);}

@media (max-width: 1200px) {
    .navbar { padding: 1rem 2%; }
    .nav-links { gap: 1rem; }
    .nav-links a { font-size: 0.8rem; letter-spacing: 1px; }
    .logo-text { font-size: 1.7rem; }
    .btn-outline { padding: 0.5rem 1rem; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .mobile-lang-container { display: flex; margin-right: 1rem; margin-left: auto; }
    .desktop-lang-container { display: none; }
    .nav-links { position: absolute; top: 100%; left: 0; width: 100%; background: var(--bg-surface); flex-direction: column; padding: 2rem 0; gap: 1.5rem; transform: translateY(-150%); transition: transform 0.4s ease-in-out; border-bottom: 1px solid var(--brand-caramel); }
    .nav-links.active { transform: translateY(0); }
    .nav-actions-mobile { flex-direction: column; gap: 1rem; margin-top: 1rem; }
    .hero-content h1 { font-size: 2.5rem; }
    .info-grid { grid-template-columns: 1fr; gap: 2rem; }
    .form-row { flex-direction: column; gap: 1.5rem; }
    .events-public-grid { grid-template-columns: 1fr; }
}

/* =========================================
   ESTILOS EXCLUSIVOS: MENÚ COMPLETO Y FOTOS/VIDEOS
========================================= */
.header-menu { position: sticky; top: 0; z-index: 1000; text-align: center; padding: 1rem 5%; border-bottom: 1px solid rgba(173, 125, 75, 0.2); background-color: rgba(43, 34, 28, 0.95); backdrop-filter: blur(10px); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.header-actions { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.menu-wrapper { max-width: 800px; margin: 3rem auto; padding: 0 5%; }
.intro-text { text-align: center; font-size: 1.1rem; color: var(--text-main); margin-bottom: 4rem; font-style: italic; }
.menu-section { margin-bottom: 4rem; }
.menu-section h2 { font-size: 2.5rem; border-bottom: 2px solid var(--brand-caramel); padding-bottom: 0.5rem; margin-bottom: 0.5rem; color: var(--brand-beige); }
.time-note { font-size: 1rem; color: var(--text-muted); display: block; margin-bottom: 2rem; }
.subsection-title { font-size: 1.5rem; margin-top: 2rem; margin-bottom: 1.5rem; color: var(--brand-caramel); }
.dish { margin-bottom: 1.8rem; }
.dish-header { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px dotted rgba(221, 213, 208, 0.2); padding-bottom: 0.3rem; }
.dish h4 { font-size: 1.1rem; margin: 0; text-transform: uppercase; letter-spacing: 1px; color: var(--text-main); font-family: var(--font-sans); }
.dish .price { font-weight: bold; font-family: var(--font-serif); font-size: 1.2rem; color: var(--brand-caramel); padding-left: 1rem; }
.dish p { margin: 0.5rem 0 0 0; color: var(--text-muted); font-size: 0.95rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
@media (max-width: 600px) { .grid-2 { grid-template-columns: 1fr; gap: 1.5rem; } }
.btn-back { display: inline-block; border: 1px solid var(--brand-caramel); color: var(--brand-caramel); padding: 0.5rem 1.5rem; text-decoration: none; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; transition: all 0.3s ease; }
.btn-back:hover { background: var(--brand-caramel); color: var(--bg-color); }

.dish-highlight { display: flex; gap: 2rem; background: var(--bg-surface); padding: 1.5rem; border-radius: 8px; border: 1px solid rgba(173, 125, 75, 0.3); margin-bottom: 2.5rem; align-items: center; transition: transform 0.3s ease; }
.dish-highlight:hover { transform: translateY(-5px); border-color: var(--brand-caramel); }
.media-container { width: 160px; height: 160px; border-radius: 50%; overflow: hidden; border: 2px solid var(--brand-caramel); box-shadow: 0 4px 15px rgba(0,0,0,0.3); flex-shrink: 0; }
.media-container.vertical-oval { width: 155px; height: 185px; border-radius: 50%; }
.media-container img, .media-container video { width: 100%; height: 100%; object-fit: cover; }
.video-shift-down { object-position: center 80%; }
.img-shift-down { object-position: center bottom; transform: scale(1.15); } 
.video-zoom-vertical { transform: scale(2.15); object-position: center center; }

.dish-highlight-info { flex: 1; }
.badge { display: inline-block; background: var(--accent-green); color: #fff; padding: 0.3rem 0.8rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; border-radius: 20px; margin-bottom: 0.8rem; font-weight: bold; }

@media (max-width: 600px) {
    .dish-highlight { flex-direction: column; text-align: center; gap: 1rem; }
    .dish-highlight .dish-header { justify-content: center; flex-direction: column; gap: 0.5rem; }
    .dish-highlight .price { padding-left: 0; }
}

a { text-decoration: none; color: inherit; }
.legal-page a, .contact-block a { color: var(--brand-caramel) !important; text-decoration: underline; transition: color 0.3s; }
.legal-page a:hover, .contact-block a:hover { color: var(--brand-beige) !important; }
a[href^="tel"], a[href^="mailto"] { color: var(--brand-caramel) !important; text-decoration: none !important; }
a[href^="tel"]:hover, a[href^="mailto"]:hover { color: var(--brand-beige) !important; }