body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: #f5f2ed;
  color: #222;
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

/* MARCA DE AGUA */
body::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 420px;
  height: 420px;
  background-image: url("images/logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(-50%, -50%);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

/* HERO */
.hero {
  filter: contrast(1.1) saturate(1.15) brightness(1.05);
  background-image: url("images/comida1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 85vh;
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.hero-overlay {
  background: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.35));
  color: #e7d7bb;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 24px 20px;
  box-sizing: border-box;
}

.hero-mini {
  font-size: 14px;
  letter-spacing: 4px;
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  color: #eadcc4;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero-mini::after {
  content: "";
  display: block;
  width: 70px;
  height: 1.3px;
  background-color: #eadcc4;
  margin: 18px auto 0;
  border-radius: 2px;
  opacity: 1;
}

.hero-subtitle {
  font-size: 18px;
  margin: 14px 0 0 0;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f0e2c8;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero-logo {
  filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.5));
  width: 520px;
  max-width: 90%;
  margin: 10px 0 10px 0;
  display: block;
  opacity: 0.98;
}

.hero-claim {
  font-size: 18px; /* más presencia */
  letter-spacing: 3px; /* menos separación = más impacto */
  text-transform: uppercase;
  color: #f0e3c8; /* un poco más claro y limpio */
  font-weight: 700;
  margin-top: 18px;
  opacity: 1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

/* INTRO */
.intro {
  background-color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.intro p.intro-script {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  color: #6b1e3b;
  font-style: italic;
  margin: 0 auto 10px auto;
  letter-spacing: 0.5px;
  line-height: 1.2;
  opacity: 0.9;
}

.intro .section-label,
.gallery-section .section-label,
.locations-section .section-label {
  font-size: 13px;
  letter-spacing: 4px;
}
.intro h2,
.titulo-futuro {
  font-family: "Cormorant Garamond", serif;
  color: #6b1e3b;
  font-size: 64px;
  margin-bottom: 25px;
  font-weight: 700;
  text-transform: none;
  position: relative;
  line-height: 1;
}

.titulo-futuro {
  display: none;
}



.intro h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 3px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(212, 191, 128, 0), #d4bf80, rgba(212, 191, 128, 0));
  opacity: 0.95;
}

.intro p {
  max-width: 850px;
  margin: 0 auto 18px auto;
  line-height: 1.8;
  font-size: 18px;
}

.intro p.intro-highlight {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  color: #6b1e3b;
  font-style: italic;
  font-weight: 500;
  margin: 30px auto 0 auto;
  line-height: 1.4;
  opacity: 0.85;
}

/* 👇 AÑADE ESTO AQUÍ */
.intro-script {
  font-size: 72px;
}

.intro-highlight {
  font-size: 56px;
}


/* ETIQUETA DE SECCIÓN */
.section-label {
  text-align: center;
  color: #2e7d32;
  font-size: 13px;
  letter-spacing: 4px;
  opacity: 0.7;
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-label-lines {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
}

.section-label-lines::before,
.section-label-lines::after {
  content: "";
  display: block;
  width: 40px;
  height: 1.5px;
  background: #2e7d32;
  opacity: 0.9;
  border-radius: 2px;
}

/* GALERÍA */
.gallery-section {
  background-color: #f5f2ed;
  padding: 100px 20px;
  text-align: center;
}

.gallery-section h2 {
  font-family: "Montserrat", sans-serif;
  color: #6b1e3b;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 60px;
  letter-spacing: 0.5px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 1 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.72);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 18px 20px 26px 20px;
  box-sizing: border-box;
  text-align: left;
  color: white;
  opacity: 0;
  transform: translateY(0px);
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.00) 0%,
    rgba(0, 0, 0, 0.00) 100%
  );
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.gallery-overlay h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
}

.gallery-overlay p {
  margin: 6px 0 0 0;
  font-size: 14px;
  opacity: 0.95;
  line-height: 1.35;
}

/* RESTAURANTES */
.locations-section {
  padding: 110px 20px;
  background-color: #f5f2ed;
}

.locations-section h2 {
  font-family: "Montserrat", sans-serif;
  text-align: center;
  color: #6b1e3b;
  font-size: 42px;
  margin-bottom: 50px;
  font-weight: 800;
}

.locations-grid {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
}

.restaurant-card {
  width: 50%;
  background-color: white;
  padding: 30px;
  border-radius: 16px;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.04);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.restaurant-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.14);
}

.restaurant-card:hover {
  transform: translateY(-8px) scale(1.01);
}

.restaurant-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin-bottom: 25px;
  transition: transform 0.5s ease;
}

.restaurant-card:hover img {
  transform: scale(1.03);
}

.restaurant-info {
  text-align: left;
}

.restaurant-info h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 38px;
  color: #6b1e3b;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-label {
  font-weight: bold;
  color: #2e7d32;
  margin-bottom: 8px;
  margin-top: 20px;
}

.info-link {
  color: #222;
  text-decoration: none;
  line-height: 1.7;
  font-size: 18px;
}

.info-link:hover {
  color: #6b1e3b;
}

.phone-link {
  color: #6b1e3b;
  text-decoration: none;
  font-size: 24px;
  font-weight: 800;
}

.phone-link:hover {
  color: #2e7d32;
}

/* ICONOS */
.info-link i,
.phone-link i,
.info-label i {
  margin-right: 8px;
}

i.fa-instagram {
  color: #e1306c;
  transition: transform 0.2s ease;
}

.info-link:hover i.fa-instagram,
.info-link:hover i.fa-location-dot {
  transform: scale(1.15);
}

.info-link i.fa-location-dot {
  color: #6b1e3b;
  font-size: 16px;
  transition: transform 0.2s ease;
}

/* CAJA CARTA */
.restaurant-menu {
  margin-top: 25px;
  padding: 14px;
  background: linear-gradient(135deg, #6b1e3b, #8b234d);
  border-radius: 10px;
  color: white;
}

.restaurant-menu-label {
  margin: 0 0 12px 0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.restaurant-menu-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.restaurant-menu-btn {
  display: inline-block;
  padding: 8px 14px;
  background: white;
  color: #6b1e3b;
  text-decoration: none;
  border-radius: 20px;
  font-weight: 700;
  font-size: 13px;
  transition: all 0.25s ease;
}

.restaurant-menu-btn:hover {
  transform: translateY(-2px);
  background: #f4eadf;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.restaurant-menu-btn-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.restaurant-menu-btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* HORARIO */
.schedule {
  margin-top: 10px;
  padding: 12px 14px;
  background: #f8f6f2;
  border-radius: 10px;
  line-height: 1.5;
}

.schedule p {
  margin: 3px 0;
  font-size: 16px;
}

.schedule-status {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.schedule-status.open {
  color: #2e7d32;
}

.schedule-status.closed {
  color: #6b1e3b;
}

.schedule-closed {
  color: #222;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 12px;
  margin-bottom: 8px;
  opacity: 0.75;
}

.schedule-days {
  font-weight: 600;
  margin-bottom: 4px;
}

/* MÓVIL */
@media (max-width: 900px) {
  .hero {
  height: 62vh;
  min-height: 380px;
}

 .hero-logo {
  width: 260px;
  max-width: 78%;
  margin: 6px 0 8px 0;
}


  .hero-mini {
    font-size: 12px;
    letter-spacing: 3px;
  }

  .hero-subtitle {
  font-size: 14px;
  letter-spacing: 1.5px;
}


 .hero-claim {
  letter-spacing: 2px;
  font-size: 10px;
}

.gallery-section h2,
.locations-section h2 {
  font-size: 26px;
  line-height: 1.15;
  margin-bottom: 38px;
}

.gallery-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 4px 6px 4px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.gallery-grid::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex: 0 0 85%;
  min-height: 260px;
  scroll-snap-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 18px 20px 20px 20px;
  box-sizing: border-box;
  text-align: left;
  color: white;
  border-radius: 18px;
  opacity: 0;
  pointer-events: none;
  background: none;
  transition: opacity 0.28s ease;
}

.gallery-overlay h3,
.gallery-overlay p {
  position: relative;
  z-index: 2;
}

.gallery-overlay {
  text-shadow: 0 3px 14px rgba(0,0,0,0.45);
}

.gallery-overlay h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.gallery-overlay p {
  font-size: 12px;
  line-height: 1.35;
  opacity: 0.92;
  max-width: 88%;
}

.gallery-item.is-active .gallery-overlay {
  opacity: 1;
  background: linear-gradient(
    to top,
    rgba(18, 10, 14, 0.78) 0%,
    rgba(18, 10, 14, 0.52) 24%,
    rgba(18, 10, 14, 0.18) 45%,
    rgba(18, 10, 14, 0.00) 68%
  );
}

.gallery-item.is-active img {
  transform: scale(1.02);
  filter: brightness(1);
}

.gallery-item.clean-view .gallery-overlay {
  opacity: 0 !important;
  background: none !important;
}

.gallery-item.clean-view img {
  transform: scale(1) !important;
  filter: brightness(1) !important;
}

.gallery-item {
  height: 260px;
  min-height: 0;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

  .section-label-lines {
  gap: 12px;
}

.section-label-lines::before,
.section-label-lines::after {
  width: 40px;
}

.locations-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: flex-start;
  align-items: stretch;
}

.restaurant-card {
  width: 100%;
  padding: 20px;
  border-radius: 16px;
  box-sizing: border-box;
}

.restaurant-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin-bottom: 18px;
}

.restaurant-info {
  text-align: center;
}

.restaurant-info h3 {
  font-size: 30px;
  margin-bottom: 16px;
  line-height: 1.05;
  word-break: break-word;
}

.info-label {
  margin-top: 18px;
  margin-bottom: 6px;
}

.info-link {
  display: block;
  font-size: 16px;
  line-height: 1.55;
  word-break: break-word;
}

.phone-link {
  display: block;
  font-size: 20px;
  line-height: 1.3;
  word-break: break-word;
}

.schedule {
  padding: 12px;
}

.schedule p {
  font-size: 15px;
}

.restaurant-menu {
  margin-top: 20px;
}

.restaurant-menu-buttons {
  justify-content: center;
}

.reserve-btn {
  padding: 15px;
  font-size: 15px;
  border-radius: 12px;
}

.reserva-oculta {
  display: none;
}

.restaurant-card:hover img {
  transform: none;
}

.restaurant-image {
  overflow: hidden;
  border-radius: 12px;
}

.restaurant-card:hover {
  transform: none;
  box-shadow: none;
}

}

.reserve-btn {
  display: block;
  margin: 20px 0;
  padding: 15px 18px;
  background: linear-gradient(135deg, #2e7d32, #3f9c45);
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 14px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.3px;
  box-shadow: 0 12px 26px rgba(46, 125, 50, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.reserve-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(46, 125, 50, 0.28);
  filter: brightness(1.03);
}

.reserve-btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(46, 125, 50, 0.2);
}

.lang-switch {
  position: fixed;
  right: 18px;
  bottom: 26px;
  z-index: 9999;

  display: flex;
  align-items: center;
  gap: 2px;

  padding: 3px;

  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;

  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.lang-switch span {
  width: 1px;
  height: 12px;
  background: rgba(107,30,59,0.14);
}

.lang-switch button {
  border: none;
  background: transparent;

  color: #6b1e3b;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.6px;

  padding: 7px 11px;

  border-radius: 999px;
  cursor: pointer;

  transition: all 0.2s ease;
}

.lang-switch button.active {
  background: rgba(107, 30, 59, 0.82);
  color: white;
}