/* ===================================================
   LA CRÊPERIE — Premium Restaurant CSS
   Palette: Deep Green #1B4D3E | Cream #F5EFE0 | Gold #C9A84C
   =================================================== */

/* ── VARIABLES ───────────────────────────────────── */
:root {
  --green-dark: #0E2D23;
  --green: #1B4D3E;
  --green-mid: #2A6250;
  --green-light: #3D7A67;
  --gold: #C9A84C;
  --gold-light: #E4C97A;
  --gold-dark: #9A7A2A;
  --cream: #F5EFE0;
  --cream-light: #FAF6EE;
  --cream-dark: #E8DFCC;
  --wood: #6B4226;
  --text-light: #F5EFE0;
  --text-muted: rgba(245, 239, 224, 0.6);
  --text-dark: #1A1A18;

  --font-display: 'Great Vibes', cursive;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Lato', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold: 0 8px 32px rgba(201, 168, 76, 0.18);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.35);
}

/* ── RESET & BASE ────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--green-dark);
  color: var(--cream);
  font-family: var(--font-serif);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
  background: transparent;
}

/* ── SCROLLBAR ──────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--green-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: var(--radius-full);
}

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

/* ── SECTION BASE ───────────────────────────────── */
.section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-title em {
  color: var(--gold-light);
  font-style: italic;
}

.section-subtitle {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

.gold-rule {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1rem 0;
}

.gold-rule.centered {
  margin: 1rem auto;
}

.body-text {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

/* ── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--green-dark);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 6px 28px rgba(201, 168, 76, 0.55);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
  transform: translateY(-2px);
}

.btn-outline-light {
  border: 1px solid rgba(245, 239, 224, 0.5);
  color: var(--cream);
}

.btn-outline-light:hover {
  background: rgba(245, 239, 224, 0.08);
  border-color: var(--cream);
  transform: translateY(-2px);
}

/* ── ORNAMENTAL DIVIDER ─────────────────────────── */
.ornamental-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0 2rem;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3));
}

.ornamental-divider .divider-line:last-child {
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.3), transparent);
}

.divider-icon {
  color: var(--gold);
  font-size: 0.7rem;
  opacity: 0.7;
}

/* ====================================================
   NAVBAR
   ==================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 1.25rem 3rem;
  transition: var(--transition);
}

/* Pushes the right-side group (lang + reservar) to the screen edge */
.navbar .nav-links {
  flex: 1;
  justify-content: center;
}

.nav-right-group {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: auto;
}

.navbar.scrolled {
  background: rgba(14, 45, 35, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.85rem 3rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-lc {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  transition: var(--transition);
}

.logo-lc:hover {
  color: var(--gold-light);
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.5);
}

/* Logo imagen (icono sin texto) en navbar */
.nav-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
  filter: drop-shadow(0 0 0px rgba(201, 168, 76, 0));
}

.nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.5));
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.8;
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover {
  opacity: 1;
  color: var(--gold-light);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.55rem 1.4rem;
  font-size: 0.72rem;
  white-space: nowrap;
}

/* ── Language nav button ────────────────────────── */
.lang-nav-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(201, 168, 76, 0.25);
  background: rgba(201, 168, 76, 0.06);
  cursor: pointer;
  transition: var(--transition);
  color: var(--cream);
  font-family: var(--font-sans);
  line-height: 1;
}

.lang-nav-btn:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.14);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.2);
}

.lang-nav-flag {
  font-size: 1rem;
  line-height: 1;
}

.lang-nav-code {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.lang-nav-chevron {
  color: var(--gold);
  opacity: 0.7;
  transition: transform 0.25s ease;
}

.lang-nav-btn:hover .lang-nav-chevron {
  transform: translateY(2px);
  opacity: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 80vw);
  height: 100vh;
  background: var(--green-dark);
  border-left: 1px solid rgba(201, 168, 76, 0.2);
  z-index: 999;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.mobile-menu a {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-menu .btn-gold {
  margin-top: 1rem;
}

/* ====================================================
   HERO
   ==================================================== */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/hero.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 45, 35, 0.5) 0%, rgba(14, 45, 35, 0.1) 40%, rgba(14, 45, 35, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem 2rem 5rem;
  max-width: 700px;
  width: 100%;
  animation: heroFadeUp 1.2s ease-out 0.3s both;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  /* Individual margins handled per element */
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 0.35rem 1.2rem;
  border-radius: var(--radius-full);
  margin-top: -2rem;
  margin-bottom: clamp(1.5rem, 3vh, 3rem);
}

/* Logo con texto en el hero (tamaño mediano) */
.hero-logo-text-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto clamp(1.5rem, 3vh, 3rem);
  width: clamp(220px, 38vw, 380px);
}

.hero-logo-text-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  animation: logoGlow 3s ease-in-out infinite alternate;
  filter: drop-shadow(0 2px 18px rgba(201, 168, 76, 0.0));
}

@keyframes logoGlow {
  from {
    filter: drop-shadow(0 0 0px rgba(201, 168, 76, 0));
  }

  to {
    filter: drop-shadow(0 0 14px rgba(201, 168, 76, 0.45));
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
  margin-bottom: clamp(0.5rem, 1vh, 1rem);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: clamp(0.75rem, 1.5vh, 1.25rem);
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: clamp(2rem, 4vh, 3.5rem);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: clamp(1rem, 2.5vh, 2.5rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: float 2.5s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

.hero-scroll-hint span {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
}

/* ====================================================
   NOSOTROS
   ==================================================== */
.nosotros {
  background: linear-gradient(180deg, var(--green-dark) 0%, #0A2019 100%);
}

.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.nosotros-img-wrap {
  position: relative;
}

.nosotros-img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  filter: brightness(0.9);
}

.nosotros-img-accent {
  position: absolute;
  inset: -16px;
  border-radius: calc(var(--radius-lg) + 6px);
  border: 1px solid rgba(201, 168, 76, 0.2);
  pointer-events: none;
}

.nosotros-img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
}

.badge-year {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-dark);
  text-align: center;
  line-height: 1.3;
}

.nosotros-text {
  padding: 1rem 0;
}



/* ====================================================
   MENÚ TEASER
   ==================================================== */
.menu-teaser-section {
  background: linear-gradient(180deg, #0A2019 0%, var(--green-dark) 50%, #0A2019 100%);
}

.menu-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.menu-teaser-img-col {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.menu-teaser-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  filter: brightness(0.8);
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-teaser-img-col:hover .menu-teaser-img {
  transform: scale(1.04);
}

.menu-teaser-img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(180deg, transparent 0%, rgba(14, 45, 35, 0.85) 100%);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--cream);
}

.menu-teaser-text-col {
  padding: 1rem 0;
}

.menu-teaser-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.5rem 0 2.5rem;
}

.menu-teaser-highlights li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  font-style: italic;
}

.highlight-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.8;
}



/* ====================================================
   HORARIO
   ==================================================== */
.horario-section {
  background: linear-gradient(180deg, var(--green-dark) 0%, #0A2019 100%);
  position: relative;
  overflow: hidden;
}

.horario-section::before {
  content: 'lc';
  position: absolute;
  font-family: var(--font-display);
  font-size: 25rem;
  color: rgba(201, 168, 76, 0.02);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
}

.horario-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.horario-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.horario-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.horario-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.horario-icon {
  font-size: 3rem;
}

.horario-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.horario-days {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.horario-hours {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold-light);
  line-height: 1;
}

.horario-ampm {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  vertical-align: middle;
}

.horario-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  background: rgba(201, 168, 76, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.note-icon {
  font-size: 0.9rem;
}

.horario-note p {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-muted);
}

.horario-quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ====================================================
   CONTACTO
   ==================================================== */
.contacto-section {
  background: linear-gradient(180deg, #0A2019 0%, var(--green-dark) 100%);
}

.contacto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 168, 76, 0.12);
  background: rgba(255, 255, 255, 0.025);
  transition: var(--transition);
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.06);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.contact-card:hover .contact-icon-wrap {
  background: rgba(201, 168, 76, 0.2);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
}

.contact-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.contact-info p {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-muted);
}

.contact-arrow {
  font-size: 1.2rem;
  color: var(--gold);
  opacity: 0;
  transition: var(--transition);
  transform: translateX(-5px);
}

.contact-card:hover .contact-arrow {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-card:hover {
  border-color: rgba(37, 211, 102, 0.4);
}

.instagram-card:hover {
  border-color: rgba(225, 48, 108, 0.35);
}

.maps-card:hover {
  border-color: rgba(66, 133, 244, 0.35);
}

.contacto-address {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 1.5rem;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}

/* ====================================================
   FOOTER
   ==================================================== */
.site-footer {
  background: #050F0A;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.footer-lc {
  font-size: 2rem;
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--cream);
  opacity: 0.7;
}

/* Logo imagen (icono sin texto) en footer */
.footer-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: var(--transition);
  filter: drop-shadow(0 0 0px rgba(201, 168, 76, 0));
}

.footer-logo-img:hover {
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.4));
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--gold);
  opacity: 0.7;
}

.footer-copy {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  opacity: 0.5;
}

/* ====================================================
   ANIMATIONS (reduced motion safe)
   ==================================================== */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-right"] {
  transform: translateX(-24px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(24px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    opacity: 1;
    transform: none !important;
    transition: none !important;
  }

  .hero-img {
    transform: none !important;
    transition: none !important;
  }
}

/* ── Laptops estándar (1366×768, 1280×800) ───────
   Combinación de ancho ≤1400 Y alto ≤820          */
@media (max-width: 1400px) and (max-height: 820px) {
  .hero-content {
    padding-top: 5.5rem;
    padding-bottom: 3rem;
  }

  .hero-logo-text-wrap {
    display: flex;
    width: clamp(180px, 28vw, 300px);
    margin-bottom: 1.25rem;
  }

  .hero-badge {
    margin-bottom: 1rem;
  }

  .hero-tagline {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
  }

  .hero-sub {
    margin-bottom: 1.5rem;
    font-size: 0.68rem;
  }

  .hero-scroll-hint {
    bottom: 0.75rem;
  }

  .scroll-line {
    height: 28px;
  }
}

/* ── Altura muy limitada (landscape móvil / laptops cortos) */
@media (max-height: 680px) {
  .hero-logo-text-wrap {
    width: clamp(160px, 22vw, 260px);
    margin-bottom: 0.75rem;
  }

  .hero-badge {
    margin-bottom: 0.5rem;
  }

  .hero-tagline {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .hero-sub {
    display: none;
  }

  .hero-scroll-hint {
    display: none;
  }

  .hero-content {
    padding-top: 5rem;
    padding-bottom: 2rem;
  }
}

@media (max-width: 1024px) {
  .nosotros-grid {
    gap: 3rem;
  }

  .menu-teaser-inner {
    gap: 3rem;
  }

  .contacto-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.5rem;
  }

  .navbar.scrolled {
    padding: 0.75rem 1.5rem;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  /* Keep lang button visible on mobile, collapse right group */
  .nav-right-group {
    gap: 0.5rem;
  }

  .nav-right-group .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Fix hero image on mobile — background-attachment: fixed breaks on iOS */
  .hero-bg {
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
  }

  .nosotros-grid {
    grid-template-columns: 1fr;
  }

  .nosotros-img {
    height: 350px;
  }

  .nosotros-img-badge {
    right: 0;
    bottom: -1rem;
  }

  .menu-teaser-inner {
    grid-template-columns: 1fr;
  }

  .menu-teaser-img {
    height: 300px;
  }

  .horario-card {
    padding: 2rem 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
    max-width: 260px;
  }

  .nosotros-pillars {
    justify-content: center;
  }

  .section {
    padding: 4rem 0;
  }
}

@media (max-width: 480px) {
  .horario-main {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ====================================================
   PROMOTIONS SECTION
   ==================================================== */

.promociones-section {
  display: none;
  background: linear-gradient(180deg, var(--green-dark) 0%, #0A2019 50%, var(--green-dark) 100%);
  position: relative;
  overflow: hidden;
}

.promociones-section.has-promos {
  display: block;
}

.promociones-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.promociones-section.has-promos {
  display: block;
}

.promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.promo-card {
  opacity: 1 !important;
  transform: none !important;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.14);
  transition: var(--transition);
  position: relative;
}

.promo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
  z-index: 1;
}

.promo-card:hover {
  border-color: rgba(201, 168, 76, 0.38);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 24px rgba(201, 168, 76, 0.08);
}

.promo-card-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.promo-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82);
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
}

.promo-card:hover .promo-card-img {
  transform: scale(1.06);
  filter: brightness(0.9);
}

.promo-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 32, 25, 0.85) 100%);
}

.promo-card-body {
  padding: 1.5rem 1.5rem 1.75rem;
}

.promo-card-icon {
  font-size: 0.7rem;
  color: var(--gold);
  opacity: 0.75;
  margin-bottom: 0.5rem;
}

.promo-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 0.65rem;
  transition: color 0.25s ease;
}

.promo-card:hover .promo-card-title {
  color: var(--gold-light);
}

.promo-card-desc {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.75;
}

.promo-card--no-img .promo-card-body {
  padding: 2rem 1.75rem;
}

@media (max-width: 768px) {
  .promos-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .promo-card-img-wrap {
    height: 180px;
  }
}

/* ====================================================
   LANGUAGE PICKER MODAL
   ==================================================== */

/* ── Overlay ── */
#lang-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(6, 18, 13, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 0.5s ease;
}

#lang-overlay.lang-overlay--visible {
  opacity: 1;
}

#lang-overlay.lang-overlay--hiding {
  opacity: 0;
  transition: opacity 0.55s ease;
}

/* ── Modal card ── */
.lang-modal {
  position: relative;
  background: linear-gradient(160deg, #0E2D23 0%, #0A1F18 60%, #071510 100%);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 28px;
  padding: 3rem 2.5rem 2.5rem;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow:
    0 0 0 1px rgba(201, 168, 76, 0.08),
    0 32px 80px rgba(0, 0, 0, 0.7),
    0 0 60px rgba(201, 168, 76, 0.06) inset;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
  overflow: hidden;
}

#lang-overlay.lang-overlay--visible .lang-modal {
  transform: translateY(0) scale(1);
}

/* Top decorative glow line */
.lang-modal-deco {
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ── Logo ── */
.lang-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.lang-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.35));
  animation: langLogoGlow 2.5s ease-in-out infinite alternate;
}

@keyframes langLogoGlow {
  from {
    filter: drop-shadow(0 0 4px rgba(201, 168, 76, 0.2));
  }

  to {
    filter: drop-shadow(0 0 16px rgba(201, 168, 76, 0.55));
  }
}

/* ── Text ── */
.lang-welcome {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
  opacity: 0.85;
}

.lang-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.lang-subtitle {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* ── Language options ── */
.lang-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.lang-option::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.07), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lang-option:hover {
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.06);
  transform: translateX(4px);
}

.lang-option:hover::before {
  opacity: 1;
}

.lang-option--selected {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.12), 0 4px 16px rgba(0, 0, 0, 0.3);
}

.lang-option--selected::before {
  opacity: 1;
}

.lang-flag {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
}

.lang-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.lang-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
  transition: color 0.3s ease;
}

.lang-option--selected .lang-name {
  color: var(--gold-light);
}

.lang-native {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 300;
}

.lang-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: rgba(201, 168, 76, 0.12);
}

.lang-option--selected .lang-check {
  opacity: 1;
  transform: scale(1);
}

/* ── Confirm button ── */
.lang-confirm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--green-dark);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.lang-confirm::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lang-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.55);
}

.lang-confirm:hover::before {
  opacity: 1;
}

.lang-confirm:active {
  transform: translateY(0);
}

.lang-confirm-text,
.lang-confirm-arrow {
  position: relative;
  z-index: 1;
}

.lang-confirm-arrow {
  transition: transform 0.3s ease;
}

.lang-confirm:hover .lang-confirm-arrow {
  transform: translateX(4px);
}

/* ── Bottom ornament ── */
.lang-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
}

.lang-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.25));
}

.lang-ornament .lang-line:last-child {
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.25), transparent);
}

.lang-dot {
  font-size: 0.6rem;
  color: var(--gold);
  opacity: 0.6;
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .lang-modal {
    padding: 2.5rem 1.5rem 2rem;
    border-radius: 22px;
  }

  .lang-logo {
    height: 46px;
  }

  .lang-flag {
    font-size: 1.5rem;
  }
}

/* ── Pantallas de altura limitada (laptops 768px–820px de alto) ── */
@media (max-height: 820px) {
  #lang-overlay {
    align-items: flex-start;
    padding: 1rem;
    overflow-y: auto;
  }

  .lang-modal {
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    padding: 2rem 2rem 1.75rem;
    margin: auto;
  }

  .lang-logo-wrap {
    margin-bottom: 1rem;
  }

  .lang-logo {
    height: 44px;
  }

  .lang-welcome {
    margin-bottom: 0.4rem;
  }

  .lang-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    margin-bottom: 0.25rem;
  }

  .lang-subtitle {
    font-size: 0.82rem;
    margin-bottom: 1.25rem;
  }

  .lang-options {
    gap: 0.5rem;
    margin-bottom: 1.25rem;
  }

  .lang-option {
    padding: 0.75rem 1rem;
  }

  .lang-flag {
    font-size: 1.5rem;
  }

  .lang-confirm {
    padding: 0.8rem 2rem;
  }

  .lang-ornament {
    margin-top: 1.1rem;
  }
}