/* ========================================================= */
/*                  RESET & GLOBAL VARIABLES                 */
/* ========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #d4af37;
  --gold-light: #ffcf4d;
  --dark-bg: #0b0000;
  --text-light: #f5f5f5;
  --transition: all 0.3s ease;
  --shadow-gold: 0 0 25px rgba(212, 175, 55, 0.4);
  --shadow-pink: 0 0 35px rgba(255, 100, 180, 0.35);
  --shadow-glow: 0 0 45px rgba(255, 215, 0, 0.3);
  --font-main: 'Montserrat', sans-serif;
  --font-title: 'Playfair Display', serif;
}

body {
  font-family: var(--font-main);
  background: radial-gradient(circle at center, #0b0000, #000);
  color: var(--text-light);
  overflow-x: hidden;
  scroll-behavior: smooth;
}


/* ========================================================= */
/*                          MAIN                           */
/* ========================================================= */


/* ============================= */
/* LOGO COMO IMAGEN — AJUSTES    */
/* ============================= */

.logo img {
  height: 55px;   /* tamaño editable */
  width: auto;
  display: block;
}

/* Desactivar hover heredado */
.logo:hover {
  color: inherit;
  text-shadow: none;
}

.logo img:hover {
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
  transform: scale(1.03);
}




/* ========================================================= */
/*                          HEADER                           */
/* ========================================================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid #5c3c1e;
  backdrop-filter: blur(8px);
  transition: background 0.4s ease, box-shadow 0.4s ease;
  z-index: 1000;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.15);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 14px 60px;
}

.logo {
  color: var(--gold);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: var(--transition);
}

.logo:hover {
  color: var(--gold-light);
  text-shadow: var(--shadow-gold);
}

/* --- NAV LINKS --- */
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-light);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: #fff5b0;
}

/* --- BOOK BUTTON --- */
.book-btn {
  background: linear-gradient(180deg, #ffd700, #cfa600);
  color: #000;
  font-weight: bold;
  padding: 10px 19px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.book-btn:hover {
  background: linear-gradient(180deg, #fff06a, #d1ae00);
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.7);
}

/* ========================================================= */
/*                        HERO SECTION                       */
/* ========================================================= */
.hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
  padding-top: 90px;
  overflow: hidden;
  background: url('hero-bg.jpg') center/cover no-repeat fixed;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(10, 10, 10, 0.95));
  z-index: 1;
}

.hero img {
  position: relative;
  z-index: 2;
  width: 75%;
  max-width: 1100px;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: var(--shadow-pink);
  transition: transform 0.4s ease;
}

.hero img:hover {
  transform: scale(1.03);
}

/* Parallax background effect */
@supports (background-attachment: fixed) {
  .hero {
    background-attachment: fixed;
  }
}

/* Animation fade-in */
@keyframes fadeInHero {
  from {
    opacity: 0;
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ========================================================= */
/*                        EVENTS SECTION                      */
/* ========================================================= */
.events {
  text-align: center;
  padding: 90px 20px;
  background: #0a0a0a;
}

.events h2 {
  font-family: var(--font-title);
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 2.3rem;
  margin-bottom: 50px;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.event-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 35px;
}

.event-card {
  background: #111;
  border: 1px solid var(--gold);
  border-radius: 12px;
  overflow: hidden;
  width: 300px;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  position: relative;
}

.event-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 120%, rgba(255, 215, 0, 0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.event-card:hover::before {
  opacity: 1;
}

.event-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.event-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.event-card h3 {
  margin-top: 15px;
  color: var(--gold-light);
  font-size: 1.2rem;
  font-weight: 600;
}

.event-card p {
  margin: 10px 0 20px;
  color: #bbb;
  font-size: 0.9rem;
}

/* ========================================================= */
/*                            FOOTER                          */
/* ========================================================= */
footer {
  background: #0b0b0b;
  text-align: center;
  padding: 50px 0;
  border-top: 1px solid #2a1a00;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1), transparent 70%);
  opacity: 0.2;
}

.footer-logo {
  color: var(--gold);
  font-weight: 600;
  font-family: var(--font-title);
  font-size: 1.3rem;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.socials img {
  width: 28px;
  filter: brightness(0) saturate(100%) invert(91%) sepia(67%) saturate(635%)
    hue-rotate(3deg) brightness(94%) contrast(97%);
  transition: 0.3s;
}

.socials img:hover {
  transform: scale(1.2);
  filter: brightness(1.2);
}

footer p {
  color: #aaa;
  font-size: 0.9rem;
  margin-top: 10px;
}

/* ========================================================= */
/*                     MODAL ZOOM DE FLYERS                  */
/* ========================================================= */

.flyer-modal {
  position: fixed;
  inset: 0;
  display: flex;                 /* siempre flex */
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.9);
  z-index: 3000;
  padding: 40px;

  /* estado inicial oculto (para animación) */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.flyer-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.flyer-modal img {
  max-width: 85vw;
  max-height: 85vh;
  border-radius: 14px;
  box-shadow: 0 0 25px rgba(255, 200, 80, 0.55);
  object-fit: contain;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* pequeño zoom suave al abrir */
.flyer-modal.active img {
  transform: scale(1.01);
  box-shadow: 0 0 50px rgba(255, 210, 80, 0.7);
}

/* ❌ Ocultar la X (pero dejamos el botón por si lo necesitas luego) */
.flyer-modal-close {
  display: none;
}

body.modal-open {
  overflow: hidden;
}



/* ========================================================= */
/*                  SLIDER MEMORIES NUEVO                    */
/* ========================================================= */

:root {
  --index: calc(1vw + 1vh);
  --transition: cubic-bezier(.1, .7, 0, 1);
}

.memories-section {
  padding-top: 175px;
  padding-bottom: 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;          /* <– centrado vertical suave */
  justify-content: center;
  background: radial-gradient(circle at center, #0b0000, #000);
}

/* Contenedor del carrusel */
.wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}

/* Fila de flyers */
.items {
  display: flex;
  gap: 0.4rem;
  /* puedes dejar la perspectiva, pero ya no es necesaria
     perspective: calc(var(--index) * 35); */
}

/* Cada flyer */
.item {
  position: relative;
  width: calc(var(--index) * 4.8);
  height: calc(var(--index) * 18);
  background-size: cover;
  background-position: center;
  cursor: pointer;

  filter: grayscale(1) brightness(.55);
  transition:
    transform 0.4s var(--transition),
    filter 0.6s var(--transition),
    box-shadow 0.4s var(--transition),
    border-color 0.4s var(--transition);

  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);

  transform-origin: center center;   /* evita que “salte” raro */
}

/* Hover: que crezca pero sin descuadrar nada */
.item:hover {
  filter: brightness(1) saturate(1.2);
  transform: scale(1.08);           /* <– en vez de translateZ */
  border-color: #d4af37;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
  z-index: 10;
}

.item img,
.item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 900px) {
  .item {
    width: calc(var(--index) * 4);
    height: calc(var(--index) * 12);
  }
  .memories-section {
    padding-top: 135px;
  }
}



/* ========================================================= */
/*                   ZOOM VIEWER MEMORIES                   */
/* ========================================================= */

#zoom-viewer {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 1200;
}

#zoom-viewer.active {
  opacity: 1;
  pointer-events: all;
}

/* Imagen o vídeo ampliado */
#zoom-viewer img,
#zoom-viewer video {
  max-width: min(90vw, 1100px);
  max-height: 85vh;
  border-radius: 18px;
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.7);
  transform: scale(0.92);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

/* Estado visible con zoom suave */
#zoom-viewer.active img,
#zoom-viewer.active video {
  transform: scale(1);
  opacity: 1;
}


#zoom-viewer.active {
  opacity: 1;
  visibility: visible;
}

#zoom-viewer img,
#zoom-viewer video {
  max-width: 80%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 0 35px rgba(255, 215, 0, 0.4);
}


/* ========================================================= */
/*                    RESPONSIVE DESIGN                       */
/* ========================================================= */

/* --- Large Laptops --- */
@media (max-width: 1200px) {
  .navbar-container {
    padding: 12px 40px;
  }

  .hero img {
    width: 85%;
  }

  .event-card {
    width: 280px;
  }
}

/* --- Tablets --- */
@media (max-width: 900px) {
  .navbar-container {
    flex-direction: column;
    gap: 12px;
    padding: 12px 20px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .book-btn {
    margin-top: 5px;
  }

  .hero {
    height: 70vh;
    background-attachment: scroll;
  }

  .hero img {
    width: 90%;
    max-height: 60vh;
  }

  .event-container {
    flex-direction: column;
    align-items: center;
  }

  .events h2 {
    font-size: 1.9rem;
  }
}

/* --- Mobile --- */
@media (max-width: 600px) {
  .logo {
    font-size: 1.2rem;
  }

  .hero {
    height: 60vh;
    padding-top: 110px;
  }

  .hero img {
    width: 95%;
    max-height: 50vh;
  }

  .event-card {
    width: 90%;
  }

  footer p {
    font-size: 0.8rem;
  }

  .book-btn {
    font-size: 0.8rem;
    padding: 7px 14px;
  }
}

/* --- Small Phones --- */
@media (max-width: 400px) {
  .logo {
    font-size: 1rem;
  }

  .nav-links {
    gap: 15px;
  }

  .hero img {
    width: 100%;
    max-height: 45vh;
  }

  .event-card img {
    height: 180px;
  }
}

/* ========================================================= */
/*                   SCROLL REVEAL ANIMATIONS                */
/* ========================================================= */

/* Estado inicial oculto */
.reveal {
  opacity: 0.3;
  transform: translateY(40px);
  transition: all 0.9s cubic-bezier(0.17, 0.55, 0.55, 1);
  will-change: transform, opacity;
}

/* Estado visible */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Efectos personalizados por tipo */
.reveal.fade-left {
  transform: translateX(-60px);
}

.reveal.fade-right {
  transform: translateX(60px);
}

.reveal.fade-left.active,
.reveal.fade-right.active {
  transform: translateX(0);
}

/* Animación más lenta para hero o secciones principales */
.reveal.slow {
  transition-duration: 1.3s;
}

/* Pequeño brillo dorado al activarse */
.reveal.active {
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.15);
}


/* ========================================================= */
/*                    HERO SLIDER SECTION                    */
/* ========================================================= */
.hero-slider {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 110px; /* espacio para header */
  margin-bottom: 50px;
  overflow: hidden;
}

.slider {
  position: relative;
  width: 80%;
  max-width: 1100px;
  height: 500px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.25);
}

/* Cada slide ocupa todo el espacio y se superpone */
.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Slide activo visible */
.slide.active {
  opacity: 1;
  z-index: 2;
}

/* Añadimos efecto Ken Burns (zoom lento) */
.slide.active img {
  animation: kenburns 7s ease-in-out forwards;
}

/* Animación de zoom suave */
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

/* Responsive */
@media (max-width: 900px) {
  .slider {
    width: 90%;
    height: 340px;
  }
}

/* ========================================================= */
/*                    LOCATIONS SECTION FINAL                */
/* ========================================================= */
.locations-section {
  position: relative;
  background: radial-gradient(circle at center, #0b0000 0%, #000 100%);
  padding: 160px 0 180px;
  text-align: center;
  color: #f5f5f5;
  overflow: hidden;
  min-height: 100vh;
  z-index: 1;
}

.locations-section h2 {
  color: #d4af37;
  font-size: 2.4rem;
  letter-spacing: 2px;
  margin-bottom: 80px;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* === Contenedor general === */
.locations-slider {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  z-index: 2;
  padding-bottom: 120px;
}

.locations-track {
  position: relative;
  height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}

/* === Tarjetas base === */
.location-card {
  position: absolute;
  width: 380px;
  height: 480px;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 215, 0, 0.25);
  box-shadow: 0 0 30px rgba(255, 200, 80, 0.2);
  cursor: pointer;
  opacity: 0.85;
  transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Imagen */
.location-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.9) contrast(1.05);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.location-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.15) contrast(1.15);
}

/* Gradiente oscuro inferior */
.location-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
  z-index: 2;
}

/* Info inferior */
.location-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  padding: 20px;
  color: #ffd560;
  text-align: left;
  z-index: 3;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
}

.location-info h3 {
  font-size: 1.3rem;
  color: #ffd700;
  margin-bottom: 6px;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
}

.location-info p {
  font-size: 0.9rem;
  color: #bbb;
  margin-bottom: 10px;
}

/* Botón */
.discover-btn {
  background: linear-gradient(180deg, #ffb700, #ff6600);
  color: #000;
  font-weight: 600;
  border: none;
  padding: 7px 14px;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.discover-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.6);
}

/* === Posiciones 3D === */
.location-card.center {
  transform: scale(1.08);
  z-index: 3;
  opacity: 1;
  box-shadow: 0 0 70px rgba(255, 200, 80, 0.45),
              0 0 140px rgba(255, 100, 0, 0.25);
}

.location-card.left {
  transform: translateX(-480px) scale(0.9) rotateY(12deg);
  z-index: 2;
}

.location-card.right {
  transform: translateX(480px) scale(0.9) rotateY(-12deg);
  z-index: 2;
}

.location-card.hidden {
  opacity: 0;
  transform: scale(0.8) translateY(50px);
  pointer-events: none;
}

/* === Responsive === */
@media (max-width: 1000px) {
  .location-card {
    width: 300px;
    height: 400px;
  }

  .location-card.left {
    transform: translateX(-320px) scale(0.9);
  }

  .location-card.right {
    transform: translateX(320px) scale(0.9);
  }
}

@media (max-width: 700px) {
  .locations-track {
    flex-direction: column;
    height: auto;
  }

  .location-card {
    position: relative;
    width: 85%;
    height: auto;
    transform: none !important;
    margin: 30px 0;
    opacity: 1;
  }

  .locations-section h2 {
    font-size: 1.8rem;
  }
}


/* ========================================================= */
/*                 LUCES DIFUMINADAS LATERALES               */
/* ========================================================= */

.neon-fade {
  position: absolute;
  top: 0;
  width: 320px;
  height: 100%;
  pointer-events: none;
  filter: blur(140px);
  opacity: 0.6;
  transition: opacity 0.5s ease;
  z-index: 0;
  animation: ambientGlow 6s ease-in-out infinite;
}

.neon-fade.left {
  left: 0;
  background: radial-gradient(circle at 15% 50%, rgba(255, 210, 60, 0.35), transparent 70%);
}

.neon-fade.right {
  right: 0;
  background: radial-gradient(circle at 85% 50%, rgba(255, 50, 0, 0.35), transparent 70%);
}

/* Animación de respiración suave */
@keyframes ambientGlow {
  0% { opacity: 0.3; filter: blur(100px); }
  50% { opacity: 0.6; filter: blur(140px); }
  100% { opacity: 0.3; filter: blur(100px); }
}

/* ========================================================= */
/*                        RESPONSIVE                         */
/* ========================================================= */
@media (max-width: 1000px) {
  .location-card {
    width: 300px;
    height: 380px;
  }

  .location-card.left {
    transform: translateX(-320px) scale(0.9);
  }

  .location-card.right {
    transform: translateX(320px) scale(0.9);
  }

  .neon-fade {
    display: none;
  }
}

@media (max-width: 700px) {
  .locations-track {
    flex-direction: column;
    height: auto;
  }

  .location-card {
    position: relative;
    width: 85%;
    height: auto;
    transform: none !important;
    margin: 30px 0;
    opacity: 1;
  }

  .locations-section h2 {
    font-size: 1.8rem;
  }
}

/* === Fix: mantener bloque inferior también en la carta central === */
.location-card.center .location-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.65);
  padding: 20px;
  color: #ffd560;
  text-align: left;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  z-index: 5; /* aseguramos que quede encima del gradiente ::after */
}

/* texto dentro de la info */
.location-card.center .location-info h3 {
  font-size: 1.4rem;
  color: #ffd700;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
  margin-bottom: 6px;
}

.location-card.center .location-info p {
  font-size: 0.9rem;
  color: #aaa;
  margin: 6px 0 12px;
}

/* botón igual al resto */
.location-card.center .discover-btn {
  background: linear-gradient(180deg, #ffb700, #ff6600);
  border: none;
  color: #000;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 25px rgba(255, 150, 0, 0.4);
}

.location-card.center .discover-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(255, 140, 0, 0.6);
}


/* Reajuste de las tarjetas centrales para mantener proporción limpia */
.location-card.center {
  transform: scale(1.07);
  box-shadow: 0 0 70px rgba(255, 200, 80, 0.5),
              0 0 140px rgba(255, 100, 0, 0.25);
}

/* Suavizado global para entrada/salida */
.location-card {
  transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* ============================= */
/* 🔧 FIX FINAL LOCATIONS LAYOUT */
/* ============================= */

.locations-section h2 {
  color: #d4af37;
  font-size: 2.4rem;
  letter-spacing: 2px;
  margin-bottom: 80px;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* Transición más suave de las tarjetas */
.location-card {
  transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Suaviza la entrada de la carta central */
.location-card.center {
  transform: scale(1.07);
  box-shadow: 0 0 70px rgba(255, 200, 80, 0.45),
              0 0 140px rgba(255, 100, 0, 0.25);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 1s ease, opacity 0.8s ease;
}

/* Pequeño efecto de fade/blur al cambiar carta */
.location-card {
  opacity: 0.85;
  filter: blur(0px);
}

.location-card.center {
  opacity: 1;
  filter: blur(0px);
}

/* ============================= */
/* 🔧 FIX FINAL LOCATIONS LAYOUT */
/* ============================= */


.locations-section h2 {
  color: #d4af37;
  font-size: 2.4rem;
  letter-spacing: 2px;
  margin-bottom: 80px;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}


/* Transición más suave de las tarjetas */
.location-card {
  transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Suaviza la entrada de la carta central */
.location-card.center {
  transform: scale(1.07);
  box-shadow: 0 0 70px rgba(255, 200, 80, 0.45),
              0 0 140px rgba(255, 100, 0, 0.25);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 1s ease, opacity 0.8s ease;
}

/* Pequeño efecto de fade/blur al cambiar carta */
.location-card {
  opacity: 0.85;
  filter: blur(0px);
}

.location-card.center {
  opacity: 1;
  filter: blur(0px);
}

/* === FIX FINAL DE ALTURA Y ALINEACIÓN === */

/* Misma altura estricta para TODAS las cards */
.location-card,
.location-card.center,
.location-card.left,
.location-card.right {
  height: 480px !important;
  max-height: 480px !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* asegura que el bloque de info quede abajo */
  overflow: hidden;
}

/* Imagen siempre rellena toda la card sin deformarse */
.location-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.location-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Gradiente oscuro inferior uniforme en todas las cards */
.location-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
  z-index: 2;
}

/* Bloque de texto / botón */
.location-info {
  position: relative;
  z-index: 3;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  padding: 18px 20px 15px;
  color: #ffd560;
  text-align: left;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.location-info h3 {
  font-size: 1.3rem;
  color: #ffd700;
  margin-bottom: 5px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.location-info p {
  font-size: 0.9rem;
  color: #bbb;
  margin-bottom: 10px;
}

.discover-btn {
  background: linear-gradient(180deg, #ffb700, #ff6600);
  color: #000;
  font-weight: 600;
  border: none;
  padding: 7px 14px;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.discover-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
}

/* Mantiene el glow general y margen inferior correcto */
.locations-section {
  padding-bottom: 180px !important;
  overflow: hidden;
}


/* ========================================================= */
/*                       FOOTER MODERNO                     */
/* ========================================================= */

.footer-modern {
  background: #0b0b0b;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-modern::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 215, 0, 0.25), transparent 70%);
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-logo {
  height: 85px;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.55));
}

/* Redes sociales */
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin: 25px 0;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffd560;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s ease;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.45));
}

.footer-social img {
  width: 24px;
  filter: none; /* Importante: NO recolorear */
}

.footer-social:hover {
  transform: scale(1.08);
  color: #fff3a6;
}

/* Dirección */
.footer-address {
  margin-top: 20px;
  font-size: 0.95rem;
  color: #ddd;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.25);
}

/* ========================================================= */
/*                        FOOTER LEGAL                       */
/* ========================================================= */

.footer-legal-links {
  margin-top: 20px;
  font-size: 0.85rem;
  color: #ccc;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: #ffd560;
  text-decoration: none;
  transition: 0.2s ease;
  font-weight: 500;
}

.footer-legal-links a:hover {
  color: #fff3a6;
  text-shadow: 0 0 6px rgba(255, 215, 0, 0.5);
}

/* ========================================================= */
/*                     LEGAL PAGES LAYOUT                    */
/* ========================================================= */

.legal-section {
  margin-top: 140px;
  padding: 40px 20px 80px;
  display: flex;
  justify-content: center;
}

.legal-card {
  background: rgba(15, 10, 0, 0.65);
  padding: 50px 45px;
  border-radius: 18px;
  max-width: 1050px;
  width: 100%;
  border: 1px solid rgba(255, 215, 0, 0.25);
  box-shadow: 0 0 35px rgba(255, 215, 0, 0.12);
  backdrop-filter: blur(6px);
}

/* TITULOS GENERALES */
.contact-header {
  text-align: center;
  margin-bottom: 25px;
}

.contact-label {
  color: #ffd560;
  letter-spacing: 2px;
  font-size: 0.8rem;
}

.contact-title {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  margin-top: 10px;
  color: #fff;
}

/* CONTENIDO LEGAL */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.65;
  font-size: 1rem;
  color: #ddd;
}

.legal-title {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  margin-top: 40px;
  margin-bottom: 12px;
  color: #ffd560;
}

.legal-content p {
  margin-bottom: 12px;
}

.legal-content a {
  color: #ffd560;
  text-decoration: underline;
  transition: 0.25s;
}

.legal-content a:hover {
  color: #fff3a6;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}




/* ========================================================= */
/*                         EVENTS PAGE                       */
/* ========================================================= */

/* ===== Ajuste base EVENTS PAGE (fondo negro + capas) ===== */

.events-page {
  position: relative;
  min-height: 100vh;
  padding: 150px 20px 140px;
  background: #000;              /* fondo negro puro */
  display: flex;
  justify-content: center;
  overflow: hidden;
  z-index: 0;
}

.events-page-inner {
  width: 100%;
  max-width: 1150px;
  position: relative;
  z-index: 2;                    /* por encima de las luces */
}


/* Header principal */
.events-page-header {
  text-align: center;
  margin-bottom: 45px;
}

.events-label {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.events-title {
  font-family: var(--font-title);
  font-size: 2.6rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.events-subtitle {
  font-size: 0.95rem;
  color: #d6d6d6;
}

/* Bloques de sección */
.events-section-block {
  margin-bottom: 40px;
}

.events-section-title {
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 18px;
  text-align: left;
}

/* Grids */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

/* Tarjeta base */
.event-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.6);
  background: #050002;
  box-shadow: 0 0 26px rgba(212, 175, 55, 0.4);
  cursor: pointer;
}

/* Fondo con imagen */
.event-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.9) saturate(1.15);
  transition: transform 0.6s ease, filter 0.6s ease;
}

/* Overlay gradiente */
.event-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
              rgba(10, 0, 0, 0.1),
              rgba(0, 0, 0, 0.85));
  z-index: 1;
}

/* Contenido */
.event-card-content {
  position: relative;
  z-index: 2;
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 150px;
}

.event-name {
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.event-meta {
  font-size: 0.85rem;
  color: #e4e4e4;
  margin-bottom: 10px;
}

/* Botón Discover */
.event-cta-btn {
  align-self: flex-start;
  border: none;
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, #ffd700, #ff8300);
  color: #000;
  box-shadow:
    0 0 16px rgba(255, 215, 0, 0.7),
    0 0 28px rgba(255, 120, 0, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.event-cta-btn.small {
  padding-inline: 14px;
}

.event-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 22px rgba(255, 215, 0, 0.9),
    0 0 36px rgba(255, 140, 0, 0.65);
}

/* Hover image */
.event-card:hover .event-card-bg {
  transform: scale(1.06);
  filter: brightness(1.05) saturate(1.25);
}

/* Featured tienen un poco más de altura */
.featured-events .event-card {
  min-height: 210px;
}

/* Weekly más compactas */
.weekly-events .event-card {
  min-height: 180px;
}

/* ========= SPECIAL EVENTS (fila desplazable) ========= */

.special-events-row {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 175, 55, 0.8) transparent;
}

.special-events-row::-webkit-scrollbar {
  height: 6px;
}

.special-events-row::-webkit-scrollbar-track {
  background: transparent;
}

.special-events-row::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.75);
  border-radius: 999px;
}

/* Chips de eventos especiales */
.event-chip-card {
  position: relative;
  min-width: 260px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.7);
  background: #050002;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.45);
}

.event-chip-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.95) saturate(1.2);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.event-chip-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
              rgba(0, 0, 0, 0.15),
              rgba(0, 0, 0, 0.85));
  z-index: 1;
}

.event-chip-content {
  position: relative;
  z-index: 2;
  padding: 14px 16px 16px;
}

.event-chip-tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.85);
  margin-bottom: 7px;
}

.event-chip-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2px;
}

.event-chip-meta {
  font-size: 0.8rem;
  color: #dfdfdf;
}

.event-chip-card:hover .event-chip-bg {
  transform: scale(1.05);
  filter: brightness(1.05) saturate(1.3);
}

/* ========= Responsive ========= */

@media (max-width: 1050px) {
  .events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 750px) {
  .events-page {
    padding-top: 135px;
    padding-bottom: 120px;
  }

  .events-title {
    font-size: 2.1rem;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .featured-events .event-card,
  .weekly-events .event-card {
    min-height: 190px;
  }
}


/* ===== LUCES / HUMO LATERALES (EVENTS) ===== */

.events-glow {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30%;
  pointer-events: none;
  mix-blend-mode: screen;
  filter: blur(80px);
  opacity: 0.75;
  z-index: 1;
}

/* Lateral izquierdo */
.events-glow-left {
  left: -20%;
  background:
    radial-gradient(circle at 100% 20%, rgba(255, 200, 80, 0.38) 0, transparent 60%),
    radial-gradient(circle at 100% 80%, rgba(150, 80, 255, 0.30) 0, transparent 60%);
  animation: glowLeftMove 18s ease-in-out infinite alternate;
}

/* Lateral derecho */
.events-glow-right {
  right: -20%;
  background:
    radial-gradient(circle at 0% 25%, rgba(255, 220, 140, 0.38) 0, transparent 60%),
    radial-gradient(circle at 0% 75%, rgba(130, 70, 240, 0.30) 0, transparent 60%);
  animation: glowRightMove 20s ease-in-out infinite alternate;
}

/* Animaciones suaves (sube/baja un poco el humo) */
@keyframes glowLeftMove {
  0%   { transform: translateY(-25px); }
  50%  { transform: translateY(15px); }
  100% { transform: translateY(-10px); }
}

@keyframes glowRightMove {
  0%   { transform: translateY(20px); }
  50%  { transform: translateY(-15px); }
  100% { transform: translateY(5px); }
}

/* Opcional: en móviles reducir intensidad */
@media (max-width: 768px) {
  .events-glow {
    opacity: 0.5;
    filter: blur(60px);
  }
}

/* ========================================================= */
/*                 BOOKING MODAL (VIP TABLE)                 */
/* ========================================================= */

/* Overlay del modal */
.booking-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2500;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Estado visible (JS quita la clase .hidden) */
.booking-modal:not(.hidden) {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Tarjeta central del formulario */
.booking-modal-content {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: radial-gradient(circle at top,
              rgba(255, 215, 0, 0.16),
              rgba(10, 0, 0, 0.96));
  border-radius: 22px;
  padding: 28px 30px 26px;
  border: 1px solid rgba(212, 175, 55, 0.75);
  box-shadow:
    0 0 35px rgba(212, 175, 55, 0.6),
    0 0 90px rgba(0, 0, 0, 0.9);
}

/* Header del modal */
.booking-modal-header {
  margin-bottom: 18px;
}

.booking-modal-title {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 4px;
}

.booking-modal-subtitle {
  font-size: 0.9rem;
  color: #dedede;
}

/* Botón de cierre (X) */
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.2s ease, color 0.2s ease;
}

.modal-close:hover {
  transform: scale(1.15);
  color: var(--gold-light);
}

/* Formulario de reserva */
.booking-form {
  margin-top: 8px;
}

.booking-form-row {
  margin-bottom: 14px;
}

.booking-form-row label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #f5f5f5;
  margin-bottom: 5px;
}

.booking-form-row input,
.booking-form-row select {
  width: 100%;
  padding: 9px 11px;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.7);
  background: rgba(5, 0, 0, 0.9);
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.booking-form-row input:focus,
.booking-form-row select:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.7);
  background: rgba(15, 0, 0, 0.95);
}

/* Botón de envío */
.booking-submit-btn {
  width: 100%;
  margin-top: 6px;
  border: none;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  background: linear-gradient(135deg, #ffd700, #ff8300);
  color: #000;
  box-shadow:
    0 0 20px rgba(255, 215, 0, 0.8),
    0 0 40px rgba(255, 120, 0, 0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.booking-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 26px rgba(255, 215, 0, 0.95),
    0 0 50px rgba(255, 140, 0, 0.65);
}

/* Mensaje de estado */
#msg {
  margin-top: 10px;
  font-size: 0.85rem;
  min-height: 18px;
}

/* Ya tienes esta clase arriba para otros modales, también sirve aquí: */
/* body.modal-open { overflow: hidden; } */

/* ========================================================= */
/*                     CONTACT & BOOKINGS PAGE               */
/* ========================================================= */

.contact-section {
  position: relative;
  min-height: 100vh;
  padding: 150px 20px 150px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: radial-gradient(circle at center, #0b0000 0%, #000 100%);
  overflow: hidden;
}

/* Card central */
.contact-card {
  position: relative;
  width: 100%;
  max-width: 1050px;
  background:
    radial-gradient(circle at top, rgba(255, 215, 0, 0.12), transparent 55%),
    rgba(10, 0, 0, 0.9);
  border-radius: 26px;
  padding: 38px 48px 42px;
  border: 1px solid rgba(212, 175, 55, 0.6);
  box-shadow:
    0 0 40px rgba(212, 175, 55, 0.35),
    0 0 80px rgba(0, 0, 0, 0.95);
}

/* Glow suave detrás */
.contact-card::before {
  content: "";
  position: absolute;
  inset: -40px;
  background:
    radial-gradient(circle at 10% 100%, rgba(255, 150, 0, 0.18), transparent 65%),
    radial-gradient(circle at 90% 0%, rgba(140, 60, 255, 0.22), transparent 65%);
  opacity: 0.75;
  filter: blur(45px);
  z-index: -1;
}

/* Header del bloque */
.contact-header {
  text-align: center;
  margin-bottom: 32px;
}

.contact-label {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.contact-title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 6px;
}

.contact-subtitle {
  font-size: 0.95rem;
  color: #d0d0d0;
}

/* Grid 2 columnas */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  margin-top: 10px;
}

.contact-column-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 18px;
}

/* Items de contacto (pill) */
.contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, rgba(40, 10, 0, 0.9), rgba(10, 0, 30, 0.95));
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.35);
  margin-bottom: 12px;
}

.contact-main {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #000;
  background: radial-gradient(circle at 30% 0%, #fff5c5, #ffb700);
  box-shadow: 0 0 16px rgba(255, 215, 0, 0.7);
}

.contact-text h4 {
  font-size: 0.95rem;
  color: #ffffff;
}

.contact-text p {
  font-size: 0.8rem;
  color: #d8d8d8;
}

/* Botón pequeño al lado derecho */
.contact-chip-btn {
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 215, 0, 0.12);
  color: var(--gold-light);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-chip-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 215, 0, 0.2);
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.65);
}

/* Columna derecha */
.contact-column-right {
  display: flex;
  flex-direction: column;
}

.contact-body-text {
  font-size: 0.9rem;
  color: #e4e4e4;
  line-height: 1.6;
  margin-bottom: 22px;
}

/* Botones grandes */
.contact-cta-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.contact-cta {
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-cta {
  background: linear-gradient(135deg, #ffd700, #ff8300);
  color: #000;
  box-shadow:
    0 0 20px rgba(255, 215, 0, 0.7),
    0 0 40px rgba(255, 120, 0, 0.45);
}

.primary-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 26px rgba(255, 215, 0, 0.9),
    0 0 50px rgba(255, 140, 0, 0.6);
}

.secondary-cta {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.8);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.4);
}

.secondary-cta:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

.contact-small-note {
  font-size: 0.8rem;
  color: #c9c9c9;
}

/* Responsive CONTACT */
@media (max-width: 950px) {
  .contact-card {
    padding: 32px 26px 34px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-column-right {
    margin-top: 10px;
  }
}

@media (max-width: 600px) {
  .contact-title {
    font-size: 2.1rem;
  }

  .contact-section {
    padding-top: 135px;
    padding-bottom: 120px;
  }

  .contact-item {
    align-items: flex-start;
  }

  .contact-chip-btn {
    padding-inline: 10px;
  }
}

/* ========================================================= */
/*                 BOOKING MODAL (VIP TABLE)                 */
/* ========================================================= */

/* Overlay del modal */
.booking-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2500;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Estado visible (JS quita la clase .hidden) */
.booking-modal:not(.hidden) {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Tarjeta central del formulario */
.booking-modal-content {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: radial-gradient(circle at top,
              rgba(255, 215, 0, 0.16),
              rgba(10, 0, 0, 0.96));
  border-radius: 22px;
  padding: 28px 30px 26px;
  border: 1px solid rgba(212, 175, 55, 0.75);
  box-shadow:
    0 0 35px rgba(212, 175, 55, 0.6),
    0 0 90px rgba(0, 0, 0, 0.9);
}

/* Header del modal */
.booking-modal-header {
  margin-bottom: 18px;
}

.booking-modal-title {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 4px;
}

.booking-modal-subtitle {
  font-size: 0.9rem;
  color: #dedede;
}

/* Botón de cierre (X) */
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.2s ease, color 0.2s ease;
}

.modal-close:hover {
  transform: scale(1.15);
  color: var(--gold-light);
}

/* Formulario de reserva */
.booking-form {
  margin-top: 8px;
}

.booking-form-row {
  margin-bottom: 14px;
}

.booking-form-row label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #f5f5f5;
  margin-bottom: 5px;
}

.booking-form-row input,
.booking-form-row select {
  width: 100%;
  padding: 9px 11px;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.7);
  background: rgba(5, 0, 0, 0.9);
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.booking-form-row input:focus,
.booking-form-row select:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.7);
  background: rgba(15, 0, 0, 0.95);
}

/* Botón de envío */
.booking-submit-btn {
  width: 100%;
  margin-top: 6px;
  border: none;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  background: linear-gradient(135deg, #ffd700, #ff8300);
  color: #000;
  box-shadow:
    0 0 20px rgba(255, 215, 0, 0.8),
    0 0 40px rgba(255, 120, 0, 0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.booking-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 26px rgba(255, 215, 0, 0.95),
    0 0 50px rgba(255, 140, 0, 0.65);
}

/* Mensaje de estado */
#msg {
  margin-top: 10px;
  font-size: 0.85rem;
  min-height: 18px;
}

/* =========================================
   EVENT DETAIL PAGE - GENERIC TEMPLATE
   ========================================= */

.event-detail-body {
  background: radial-gradient(circle at center, #0b0000, #000);
}

/* HERO */

.event-hero {
  position: relative;
  margin-top: 80px; /* espacio bajo la navbar */
  min-height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 80px 40px 70px;
  overflow: hidden;
}

.event-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0,0,0,0.85));
}

.event-hero-inner {
  position: relative;
  max-width: 1100px;
  width: 100%;
  text-align: left;
  color: #fff;
  z-index: 1;
}

.event-hero-label {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.event-hero-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin: 12px 0 8px;
  letter-spacing: 0.05em;
}

.event-hero-meta {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.event-hero-meta span {
  white-space: nowrap;
}

.event-hero-actions {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.event-hero-btn {
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.event-hero-btn.primary {
  background: linear-gradient(135deg, #ffb400, #ff6b00);
  color: #1a1203;
  box-shadow: 0 0 25px rgba(255, 184, 0, 0.6);
}

.event-hero-btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 35px rgba(255, 184, 0, 0.9);
}

.event-hero-btn.secondary {
  background: transparent;
  color: #ffd580;
  border: 1px solid rgba(255, 213, 128, 0.6);
}

.event-hero-btn.secondary:hover {
  background: rgba(0,0,0,0.4);
}

.event-hero-dj {
  margin-top: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

.event-hero-dj span {
  color: #ffd580;
}

/* MAIN CONTAINER */

.event-detail-main {
  max-width: 1200px;
  margin: 40px auto 80px;
  padding: 0 24px 40px;
}

/* SECTIONS */

.event-section {
  margin-bottom: 48px;
}

.event-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.event-section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: #f8f5e9;
}

.event-section-glow {
  flex: 1;
  height: 1px;
  background: radial-gradient(circle, rgba(255, 215, 128, 0.9), transparent 60%);
  opacity: 0.7;
}

/* DESCRIPTION GRID */

.event-description-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 2fr);
  gap: 28px;
}

.event-description-text p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 0.9rem;
}

.event-description-text strong {
  color: #ffd580;
}

.event-description-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.event-fact-card {
  background: radial-gradient(circle at top, rgba(255, 191, 73, 0.18), rgba(10, 0, 0, 0.95));
  border-radius: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 198, 109, 0.35);
  box-shadow: 0 0 18px rgba(255, 191, 73, 0.25);
}

.event-fact-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 230, 200, 0.8);
  margin-bottom: 4px;
}

.event-fact-value {
  font-size: 0.82rem;
  color: #fff7e3;
}

/* GALLERY */

.event-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.event-gallery-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 198, 109, 0.35);
  box-shadow: 0 0 15px rgba(255, 191, 73, 0.25);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.event-gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.event-gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(255, 191, 73, 0.8);
}

/* LOCATION + VIP GRID */

.event-bottom-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 2fr);
  gap: 26px;
}

/* LOCATION */

.event-location-card {
  background: radial-gradient(circle at top, rgba(255, 191, 73, 0.16), #050100);
  border-radius: 18px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(255, 198, 109, 0.35);
  box-shadow: 0 0 20px rgba(255, 191, 73, 0.3);
  color: #f8f5e9;
}

.event-location-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.event-location-map {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 198, 109, 0.4);
}

.event-location-map img {
  display: block;
  width: 100%;
  height: auto;
}

.event-location-address {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 6px;
}

.event-location-note {
  font-size: 0.8rem;
  color: rgba(255, 235, 210, 0.8);
}

/* VIP TABLES */

.event-vip-wrapper h3 {
  font-size: 1.1rem;
  color: #f8f5e9;
  margin-bottom: 8px;
}

.event-vip-intro {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 14px;
  max-width: 520px;
}

.event-vip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.event-vip-card {  
  background: radial-gradient(circle at top, rgba(255, 191, 73, 0.22), #050100);
  border-radius: 16px;
  padding: 14px 14px 16px;
  border: 1px solid rgba(255, 198, 109, 0.4);
  box-shadow: 0 0 20px rgba(255, 191, 73, 0.35);
  color: #fff7e3;
}

.event-vip-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(255, 230, 190, 0.8);
  margin-bottom: 6px;
}

.event-vip-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.event-vip-meta {
  font-size: 0.8rem;
  margin-bottom: 2px;
  color: rgba(255, 245, 225, 0.9);
}

.event-vip-price {
  font-size: 0.95rem;
  margin-top: 6px;
  margin-bottom: 10px;
  color: #ffd580;
  font-weight: 600;
}

.event-vip-btn {
  border-radius: 999px;
  width: 100%;
  padding: 8px 0;
  border: none;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, #ffb400, #ff6b00);
  color: #1a1203;
  box-shadow: 0 0 18px rgba(255, 184, 0, 0.7);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event-vip-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(255, 184, 0, 1);
}

/* RELATED EVENTS */

.event-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.event-related-card {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  border: 1px solid rgba(255, 198, 109, 0.4);
  box-shadow: 0 0 18px rgba(255, 191, 73, 0.35);
}

.event-related-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
  filter: grayscale(0.2);
}

.event-related-info {
  position: absolute;
  inset: auto 0 0 0;
  padding: 8px 10px 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.event-related-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffd580;
}

.event-related-info h4 {
  font-size: 0.9rem;
  color: #fff7e3;
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .event-description-grid {
    grid-template-columns: 1fr;
  }

  .event-bottom-grid {
    grid-template-columns: 1fr;
  }

  .event-vip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .event-hero {
    padding: 70px 18px 60px;
  }

  .event-hero-title {
    font-size: 2.3rem;
  }

  .event-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-vip-grid {
    grid-template-columns: 1fr;
  }

  .event-related-grid {
    grid-template-columns: 1fr;
  }
}


/* Asegurar que el botón siempre quede por encima del glow */
.contact-item {
  position: relative;
}

.contact-chip-btn {
  position: relative;
  z-index: 2;           /* por encima del ::before del contact-item */
}

/* Por si el texto es largo (teléfono) y empuja el botón,
   obligamos al botón a quedarse a la derecha */
.contact-main {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.contact-chip-btn {
  flex-shrink: 0;       /* no se encoge ni se esconde */
  min-width: 80px;      /* opcional: ancho mínimo del botón */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* FIX: evitar que una tarjeta se superponga visualmente a otra */
.contact-item {
  position: relative;
  z-index: 1;
}

/* IMPORTANTE: si alguna tarjeta sube con hover en el futuro */
.contact-item:hover {
  z-index: 10;
  transform: scale(1.01);  /* efecto suave sin desplazar */
}


/* ========================================================= */
/*                   LOCATION DETAIL PAGE                    */
/* ========================================================= */

.location-detail-body {
  background: radial-gradient(circle at center, #0b0000, #000);
}

.location-detail-main {
  max-width: 1200px;
  margin: 110px auto 120px;
  padding: 0 24px;
}

/* HERO BLOCK */

.location-hero {
  background:
    radial-gradient(circle at top, rgba(255, 215, 0, 0.18), rgba(10, 0, 0, 0.94));
  border-radius: 26px;
  padding: 32px 34px 36px;
  border: 1px solid rgba(212, 175, 55, 0.7);
  box-shadow:
    0 0 40px rgba(212, 175, 55, 0.35),
    0 0 80px rgba(0, 0, 0, 0.95);
}

.location-hero-header {
  text-align: center;
  margin-bottom: 26px;
}

.location-hero-label {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.location-hero-title {
  font-family: var(--font-title);
  font-size: 2.6rem;
  color: #fff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
  text-shadow: 0 0 18px rgba(255, 215, 0, 0.7);
}

.location-hero-subtitle {
  font-size: 0.95rem;
  color: #e5e5e5;
}

/* GRID 3 COLUMNAS */

.location-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.3fr) minmax(0, 0.95fr);
  gap: 20px;
  align-items: stretch;
}

/* CARDS LATERALES */

.location-card-left,
.location-card-right {
  background: radial-gradient(circle at top, rgba(255, 191, 73, 0.18), #050002);
  border-radius: 20px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(255, 198, 109, 0.4);
  box-shadow: 0 0 24px rgba(255, 191, 73, 0.35);
  color: #fff7e3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.location-card-title {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #ffd98a;
}

.location-card-address {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.location-card-hours span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 235, 200, 0.8);
}

.location-card-hours {
  font-size: 0.88rem;
  margin-bottom: 14px;
}

.location-directions-btn {
  align-self: flex-start;
  border: none;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, #ffd700, #ff8300);
  color: #000;
  box-shadow:
    0 0 18px rgba(255, 215, 0, 0.8),
    0 0 30px rgba(255, 120, 0, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.location-directions-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 24px rgba(255, 215, 0, 1),
    0 0 42px rgba(255, 140, 0, 0.7);
}

.location-map-embed {
  width: 100%;
  height: 210px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 198, 109, 0.4);
}

.location-card-note {
  font-size: 0.8rem;
  color: rgba(255, 235, 210, 0.9);
}

/* HERO IMAGE CENTER */

.location-hero-media {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 198, 109, 0.6);
  box-shadow: 0 0 28px rgba(255, 191, 73, 0.6);
}

.location-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
}

/* ================= LOWER BLOCKS ================= */

.location-lower {
  margin-top: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr);
  gap: 26px;
}

/* Shared header */

.location-strip-header h2 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 6px;
}

.location-strip-header p {
  font-size: 0.9rem;
  color: #dcdcdc;
}

/* ALL LOCATIONS STRIP */

.location-strip-grid {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.location-thumb-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 11px;
  border-radius: 16px;
  background: radial-gradient(circle at left, rgba(255, 191, 73, 0.16), #050002);
  border: 1px solid rgba(255, 198, 109, 0.4);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 0 16px rgba(255, 191, 73, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.location-thumb-card.active {
  border-color: #ffd700;
  box-shadow:
    0 0 22px rgba(255, 215, 0, 0.7),
    0 0 40px rgba(255, 120, 0, 0.5);
}

.location-thumb-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 22px rgba(255, 191, 73, 0.55);
}

.location-thumb-image {
  width: 70px;
  height: 70px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}

.location-thumb-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-thumb-info h4 {
  font-size: 0.95rem;
  color: #fff7e3;
}

.location-thumb-info p {
  font-size: 0.8rem;
  color: #d0d0d0;
}

/* UPCOMING EVENTS STRIP */

.location-events-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.location-event-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(255, 198, 109, 0.5);
  background: #050002;
  box-shadow: 0 0 18px rgba(255, 191, 73, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.location-event-card:hover {
  transform: translateY(-2px);
  border-color: #ffd980;
  box-shadow: 0 0 26px rgba(255, 191, 73, 0.65);
}

.location-event-image {
  height: 110px;
  overflow: hidden;
}

.location-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-event-info {
  padding: 9px 10px 10px;
}

.location-event-tag {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #ffd580;
  margin-bottom: 2px;
}

.location-event-info h4 {
  font-size: 0.9rem;
  color: #fff7e3;
}

.location-event-info p {
  font-size: 0.8rem;
  color: #d6d6d6;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .location-hero-grid {
    grid-template-columns: 1fr;
  }

  .location-hero-media img {
    max-height: 260px;
  }

  .location-lower {
    grid-template-columns: 1fr;
  }

  .location-events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .location-detail-main {
    margin-top: 100px;
    padding-inline: 18px;
  }

  .location-hero {
    padding-inline: 20px;
  }

  .location-hero-title {
    font-size: 2.2rem;
  }

  .location-events-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================================= */
/*                      COOKIES BANNER                       */
/* ========================================================= */

.cookies-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 10, 0, 0.9);
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: 18px;
  padding: 25px 30px;
  width: 90%;
  max-width: 650px;
  backdrop-filter: blur(7px);
  color: #fff;
  z-index: 9999;
  display: none;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.25);
}

.cookies-box h3 {
  color: #ffd560;
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.cookies-buttons {
  margin-top: 15px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.cookies-btn {
  padding: 8px 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: 0.25s ease;
}

.cookies-btn.accept {
  background: #ffd560;
  color: #000;
}

.cookies-btn.accept:hover {
  background: #ffe58f;
}

.cookies-btn.refuse {
  background: #333;
  color: #ddd;
}

.cookies-btn.refuse:hover {
  background: #444;
}

.cookies-btn.customize {
  background: #222;
  color: #ffd560;
}

.cookies-btn.customize:hover {
  background: #333;
}

/* ===================== SETTINGS POPUP ===================== */

.cookies-settings {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(4px);
  z-index: 99999;
  display: none;
  justify-content: center;
  align-items: center;
}

.cookies-settings-box {
  background: rgba(15, 10, 0, 0.95);
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: 15px;
  padding: 35px;
  width: 90%;
  max-width: 550px;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.25);
}

.cookie-option {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
  color: #eee;
}

.settings-buttons {
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* ========================================================= */
/*                    LANGUAGE SWITCHER                      */
/* ========================================================= */

.lang-switcher {
  position: relative;
  margin-left: 20px;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.lang-current {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.6);
  color: #ffd560;
  padding: 6px 12px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.35);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.lang-current:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.6);
}

.lang-current-code {
  font-weight: 600;
}

.lang-arrow {
  font-size: 0.65rem;
  transform: translateY(1px);
}

/* Dropdown */

.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  background: rgba(10, 10, 10, 0.95);
  border-radius: 16px;
  padding: 6px;
  border: 1px solid rgba(255, 215, 0, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75);
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 999;
}

.lang-switcher.open .lang-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-option {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 8px 10px;
  border-radius: 12px;
  color: #ddd;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.18s ease, color 0.18s ease;
}

.lang-option:hover {
  background: rgba(255, 215, 0, 0.08);
  color: #ffd560;
}

.lang-option.active {
  background: rgba(255, 215, 0, 0.16);
  color: #ffd560;
  font-weight: 600;
}

/* Responsive: en mobile pegado al botón */

@media (max-width: 768px) {
  .lang-switcher {
    margin-left: 10px;
  }

  .lang-current {
    padding: 5px 10px;
    font-size: 0.7rem;
  }

  .lang-menu {
    min-width: 130px;
  }
}
