/* =========================================
   LA PERLA DEL BORN — EVENTOS CORPORATIVOS
   Paleta: negro / carbón / dorado / blanco roto
   ========================================= */

:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #9A7A30;
  --black: #0A0A0A;
  --dark: #111111;
  --dark-2: #1A1A1A;
  --dark-3: #222222;
  --white: #F5F0E8;
  --white-dim: rgba(245, 240, 232, 0.7);
  --white-faint: rgba(245, 240, 232, 0.15);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
}

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

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

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── LANGUAGE BAR ── */
.lang-bar {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
}

.lang-btn {
  background: none;
  border: none;
  color: var(--white-dim);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  cursor: pointer;
  padding: 4px 2px;
  transition: color 0.25s;
}

.lang-btn:hover,
.lang-btn.active {
  color: var(--gold);
}

.lang-sep {
  color: var(--white-faint);
  font-size: 10px;
}

/* ── CONTAINER ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.container.narrow {
  max-width: 760px;
}

.text-center {
  text-align: center;
}

/* ── TYPOGRAPHY ── */
.section-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 32px;
}

.btn-gold {
  display: inline-block;
  margin-top: 32px;
  padding: 14px 40px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
  background: transparent;
}

.btn-gold:hover {
  background: var(--gold);
  color: var(--black);
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.55);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0.3) 50%,
    rgba(0,0,0,0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  width: min(320px, 70vw);
  margin-bottom: 32px;
}

.hero-logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 20px rgba(0,0,0,0.6));
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  max-width: 600px;
  line-height: 1.5;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-hint span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ── INTRO ── */
.intro {
  padding: 120px 32px;
  text-align: center;
  background: var(--dark);
}

.intro-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.intro-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 28px;
}

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

.intro-text {
  font-size: 1rem;
  color: var(--white-dim);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.9;
}

/* ── EL ESPACIO ── */
.espacio {
  padding: 120px 32px;
  background: var(--black);
}

.espacio .container {
  margin-bottom: 0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 8px;
  margin-top: 48px;
}

.gallery-item {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item.large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.9) saturate(0.85);
}

.gallery-item img:hover {
  transform: scale(1.04);
  filter: brightness(1) saturate(1);
}

/* ── QUÉ INCLUYE ── */
.incluye {
  padding: 120px 32px;
  background: var(--dark);
}

.pack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
  margin-top: 48px;
}

.pack-item {
  border-top: 1px solid var(--gold-dark);
  padding-top: 24px;
}

.pack-icon {
  color: var(--gold);
  font-size: 6px;
  margin-bottom: 16px;
  letter-spacing: 4px;
}

.pack-item h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.pack-item p {
  font-size: 0.85rem;
  color: var(--white-dim);
  line-height: 1.8;
}

/* ── LOS ESPECTÁCULOS ── */
.shows {
  padding: 120px 32px;
  background: var(--black);
}

.shows-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

.show-card {
  display: flex;
  flex-direction: column;
}

.show-img-wrap {
  overflow: hidden;
  aspect-ratio: 16/9;
  margin-bottom: 24px;
}

.show-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: saturate(0.8);
}

.show-img-wrap img:hover {
  transform: scale(1.04);
  filter: saturate(1);
}

.show-info h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}

.show-info p {
  font-size: 0.85rem;
  color: var(--white-dim);
  line-height: 1.9;
}

/* ── MENÚ ── */
.menu {
  padding: 120px 32px;
  background: var(--dark-2);
}

.menu-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-top: 48px;
}

.menu-cat {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.menu-cat--top {
  margin-top: 32px;
}

.menu-list {
  list-style: none;
  padding: 0;
}

.menu-list li {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 300;
  color: var(--white-dim);
  padding: 6px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  line-height: 1.4;
}

.menu-nota {
  margin-top: 40px;
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.35);
  font-style: italic;
  text-align: center;
  letter-spacing: 0.05em;
}

/* ── GALERÍA STRIP ── */
.galeria-bottom {
  background: var(--black);
}

.gallery--strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
}

.gallery--strip img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.85) saturate(0.75);
  transition: filter 0.5s ease;
  display: block;
}

.gallery--strip img:hover {
  filter: brightness(1) saturate(1);
}

/* ── PRECIO ── */
.precio {
  padding: 120px 32px;
  background: var(--dark);
}

.precio-amount {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
}

.precio-amount span {
  font-size: 0.4em;
  font-style: italic;
  color: var(--white-dim);
  vertical-align: middle;
}

.precio-incluye {
  font-size: 0.9rem;
  color: var(--white-dim);
  margin-bottom: 12px;
  line-height: 1.8;
}

.precio-nota {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.4);
  font-style: italic;
}

/* ── CONTACTO ── */
.contacto {
  padding: 140px 32px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.contacto::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.contacto-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--white-dim);
  margin-bottom: 40px;
  line-height: 1.8;
}

.contacto-datos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contacto-link {
  color: var(--gold);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  transition: color 0.25s;
}

.contacto-link:hover {
  color: var(--gold-light);
}

/* ── FOOTER ── */
.footer {
  padding: 60px 32px;
  background: var(--dark-3);
  text-align: center;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 20px;
  opacity: 0.7;
}

.footer-text {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--white-dim);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(245, 240, 232, 0.25);
  letter-spacing: 0.1em;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .pack-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .menu-cols {
    grid-template-columns: repeat(2, 1fr);
  }
  .shows-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item.large {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .container,
  .container.narrow {
    padding: 0 20px;
  }
  .intro,
  .espacio,
  .incluye,
  .shows,
  .menu,
  .precio,
  .contacto {
    padding: 80px 20px;
  }
  .pack-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .menu-cols {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
  .gallery-item.large {
    grid-column: span 1;
  }
  .gallery--strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery--strip img {
    aspect-ratio: 1;
  }
}
