/* ============================================
   PIRATAZ BAR — Landing Page Styles
   Dark Pirate Theme | Gold & Crimson Accents
   Premium Professional Design
   ============================================ */

:root {
  --black:    #0a0704;
  --dark:     #110e08;
  --dark2:    #1a1510;
  --dark3:    #221c14;
  --gold:     #c9922a;
  --gold2:    #e8b44a;
  --amber:    #f0c060;
  --crimson:  #8b1a1a;
  --red:      #c0392b;
  --cream:    #f5e6c8;
  --muted:    #a08060;
  --wa:       #25D366;
  --wa-dark:  #128C7E;
  --radius:   16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Selection */
::selection {
  background: rgba(201, 146, 42, 0.35);
  color: var(--cream);
}

/* ── CANVAS PARTICLES ── */
#particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 0 2rem;
}
#navbar.scrolled {
  background: rgba(10, 7, 4, 0.92);
  box-shadow: 0 2px 40px rgba(201,146,42,0.12), 0 1px 0 rgba(201,146,42,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo {
  height: 48px;
  filter: invert(1) sepia(1) saturate(2) hue-rotate(5deg) brightness(0.9);
  transition: transform var(--transition);
}
.nav-brand:hover .nav-logo { transform: scale(1.05); }
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--amber); }
.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-wa {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--wa);
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: transform 0.2s, box-shadow 0.3s;
}
.nav-wa svg { width: 18px; height: 18px; }
.nav-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 7, 4, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.mobile-menu ul li a {
  color: var(--cream);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.mobile-menu ul li a:hover { color: var(--gold); }
.mobile-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--wa);
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
}
.mobile-wa svg { width: 22px; height: 22px; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,146,42,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(139,26,26,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(201,146,42,0.06) 0%, transparent 50%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,7,4,0.2) 0%, rgba(10,7,4,0.6) 70%, rgba(10,7,4,0.95) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}

/* Logo hero */
.logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}
.hero-logo {
  width: 180px;
  height: 180px;
  object-fit: contain;
  filter: invert(1) sepia(1) saturate(3) hue-rotate(5deg) brightness(0.85);
  animation: float 5s ease-in-out infinite;
}
.logo-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse, rgba(201,146,42,0.30) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.hero-tagline {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  animation: fadeUp 1s 0.3s both;
}
.hero-title {
  font-family: 'Pirata One', cursive;
  font-size: clamp(3.5rem, 10vw, 7rem);
  line-height: 1;
  color: var(--cream);
  text-shadow:
    0 0 80px rgba(201,146,42,0.3),
    0 0 40px rgba(201,146,42,0.15),
    0 4px 30px rgba(0,0,0,0.8);
  animation: fadeUp 1s 0.5s both;
}
.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-top: 1.2rem;
  animation: fadeUp 1s 0.7s both;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  animation: fadeUp 1s 0.9s both;
}

/* Buttons */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--wa) 0%, var(--wa-dark) 100%);
  color: #fff;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.25);
}
.btn-wa svg { width: 22px; height: 22px; }
.btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  color: var(--amber);
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  border: 1px solid rgba(201,146,42,0.4);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,146,42,0.15) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn-outline:hover {
  border-color: var(--amber);
  transform: translateY(-2px);
}
.btn-outline:hover::before { opacity: 1; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: fadeIn 1s 1.5s both;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim {
  0%  { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100%{ transform: scaleY(0); transform-origin: bottom; }
}

/* ── STATUS BAR ── */
.status-bar {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark) 100%);
  border-top: 1px solid rgba(201,146,42,0.1);
  border-bottom: 1px solid rgba(201,146,42,0.1);
  padding: 1rem 2rem;
}
.status-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.status-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.status-item a {
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition);
}
.status-item a:hover { color: var(--amber); }
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--crimson);
  animation: dot-pulse 2s ease-in-out infinite;
}
.status-dot.open {
  background: var(--wa);
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.status-divider {
  width: 1px;
  height: 20px;
  background: rgba(201,146,42,0.2);
}
.status-icon {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  animation: svgPulse 4s ease-in-out infinite;
}
@keyframes svgPulse {
  0%, 100% { filter: drop-shadow(0 0 3px rgba(201,146,42,0.2)); }
  50%      { filter: drop-shadow(0 0 10px rgba(232,180,74,0.5)); }
}
.status-text {
  font-weight: 500;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── UNIFIED BRAND ICON SYSTEM (SVG) ── */
@keyframes iconPulse {
  0%, 100% {
    filter: drop-shadow(0 0 4px rgba(201,146,42,0.15));
    opacity: 0.85;
  }
  50% {
    filter: drop-shadow(0 0 14px rgba(232,180,74,0.45));
    opacity: 1;
  }
}
.menu-emoji,
.show-icon,
.info-icon,
.contact-card > span,
.gallery-placeholder > span {
  color: var(--gold2);
  animation: iconPulse 4s ease-in-out infinite;
  will-change: filter, opacity;
}
.menu-emoji svg,
.show-icon svg,
.info-icon svg,
.contact-card > span svg,
.gallery-placeholder > span svg {
  width: 100%;
  height: 100%;
  display: block;
}
/* Badge SVG icons */
.badge-icon {
  width: 16px;
  height: 16px;
  vertical-align: -2px;
  flex-shrink: 0;
  color: var(--gold2);
}

/* ── REVEAL ON SCROLL ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── SECTION STYLING ── */
.section-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-family: 'Cinzel', serif;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-family: 'Pirata One', cursive;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--cream);
}
.section-subtitle {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 0.8rem;
  font-style: italic;
}

/* ── ABOUT ── */
.about {
  position: relative;
  padding: 8rem 2rem;
  z-index: 1;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 50%, var(--dark) 100%);
}
.about-deco {
  position: absolute;
  font-family: 'Pirata One', cursive;
  font-size: 18vw;
  color: rgba(201,146,42,0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.1em;
}
.about-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about-text h2 {
  font-family: 'Pirata One', cursive;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.about-text h2 em { color: var(--gold); font-style: normal; }
.about-text p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}
.badge {
  background: rgba(201,146,42,0.08);
  border: 1px solid rgba(201,146,42,0.2);
  color: var(--amber);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all var(--transition);
  cursor: default;
  animation: badgePulse 5s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,146,42,0); }
  50%      { box-shadow: 0 0 12px 1px rgba(201,146,42,0.12); }
}
.badge:nth-child(2) { animation-delay: 0.4s; }
.badge:nth-child(3) { animation-delay: 0.8s; }
.badge:nth-child(4) { animation-delay: 1.2s; }
.badge:nth-child(5) { animation-delay: 1.6s; }
.badge:nth-child(6) { animation-delay: 2.0s; }
.badge:hover {
  background: rgba(201,146,42,0.18);
  border-color: rgba(201,146,42,0.4);
  transform: translateY(-2px);
}
.about-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.info-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,146,42,0.12);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.info-card:hover {
  border-color: rgba(201,146,42,0.3);
  transform: translateX(4px);
  background: rgba(255,255,255,0.04);
}
.info-card:hover::before { opacity: 1; }
.info-icon {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
  animation-delay: 0.3s;
  width: 28px;
  height: 28px;
}
.info-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.info-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.7; }
.info-card .closed { color: var(--crimson); margin-top: 0.4rem; font-weight: 500; }
.map-link {
  display: inline-block;
  margin-top: 0.6rem;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 0.2s, transform 0.2s;
}
.map-link:hover { color: var(--amber); transform: translateX(4px); }

/* ── MENU ── */
.menu-section {
  position: relative;
  padding: 8rem 2rem;
  z-index: 1;
  background: linear-gradient(180deg, var(--black) 0%, var(--dark) 50%, var(--black) 100%);
}
.menu-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.menu-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,146,42,0.10);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
  opacity: 0;
  transform: translateY(20px);
  position: relative;
  overflow: hidden;
}
.menu-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,146,42,0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
}
.menu-card.visible {
  animation: fadeUp 0.6s forwards;
}
.menu-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,146,42,0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 40px rgba(201,146,42,0.06);
  background: rgba(255,255,255,0.04);
}
.menu-card:hover::after { opacity: 1; }
.menu-emoji {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  transition: transform var(--transition), filter 0.4s ease;
}
.menu-card:nth-child(2) .menu-emoji { animation-delay: 0.5s; }
.menu-card:nth-child(3) .menu-emoji { animation-delay: 1s; }
.menu-card:nth-child(4) .menu-emoji { animation-delay: 1.5s; }
.menu-card:nth-child(5) .menu-emoji { animation-delay: 2s; }
.menu-card:nth-child(6) .menu-emoji { animation-delay: 2.5s; }
.menu-card:hover .menu-emoji {
  transform: scale(1.15) rotate(-5deg);
  filter: drop-shadow(0 0 20px rgba(232,180,74,0.6));
  opacity: 1;
  animation: none;
}
.menu-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--amber);
  letter-spacing: 0.1em;
  margin-bottom: 0.7rem;
  position: relative;
  z-index: 1;
}
.menu-card p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* Menu Promo */
.menu-promo {
  max-width: 1100px;
  margin: 2.5rem auto 0;
  display: flex;
  justify-content: center;
}
.promo-card {
  background: linear-gradient(135deg, rgba(139,26,26,0.15) 0%, rgba(201,146,42,0.08) 100%);
  border: 1px solid rgba(201,146,42,0.25);
  border-radius: var(--radius);
  padding: 1.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.promo-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--crimson) 0%, #a02020 100%);
  color: var(--cream);
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 0.6rem;
}
.promo-card h4 {
  font-family: 'Cinzel', serif;
  color: var(--amber);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}
.promo-card p { color: var(--muted); font-size: 0.88rem; }

/* ── SHOWS ── */
.shows-section {
  position: relative;
  padding: 8rem 2rem;
  z-index: 1;
  background: linear-gradient(135deg, rgba(139,26,26,0.08) 0%, transparent 40%, rgba(201,146,42,0.04) 100%);
  border-top: 1px solid rgba(201,146,42,0.08);
  border-bottom: 1px solid rgba(201,146,42,0.08);
}
.shows-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.shows-inner h2 {
  font-family: 'Pirata One', cursive;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--cream);
  margin-bottom: 3rem;
}
.shows-inner h2 em { color: var(--gold); font-style: normal; }
.shows-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  text-align: left;
}
.show-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,146,42,0.12);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.show-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.show-item:hover {
  border-color: rgba(201,146,42,0.3);
  background: rgba(255,255,255,0.04);
  transform: translateY(-3px);
}
.show-item:hover::before { transform: scaleX(1); }
.show-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  transition: transform var(--transition), filter 0.4s ease;
}
.show-item:nth-child(2) .show-icon { animation-delay: 0.6s; }
.show-item:nth-child(3) .show-icon { animation-delay: 1.2s; }
.show-item:nth-child(4) .show-icon { animation-delay: 1.8s; }
.show-item:hover .show-icon {
  transform: scale(1.15);
  filter: drop-shadow(0 0 20px rgba(232,180,74,0.6));
  opacity: 1;
  animation: none;
}
.show-item h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: var(--amber);
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}
.show-item p { color: var(--muted); font-size: 0.83rem; }

/* ── GALLERY ── */
.gallery-section {
  position: relative;
  padding: 6rem 0;
  z-index: 1;
  overflow: hidden;
  background: var(--black);
}
.gallery-section .section-header {
  padding: 0 2rem;
}
.gallery-marquee {
  overflow: hidden;
  width: 100%;
  margin-top: 2rem;
}
.gallery-track {
  display: flex;
  gap: 1.5rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.gallery-track:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.gallery-item {
  flex-shrink: 0;
  width: 280px;
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201,146,42,0.12);
  transition: all var(--transition);
}
.gallery-item:hover {
  border-color: rgba(201,146,42,0.4);
  transform: scale(1.03);
}
.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark3) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.gallery-placeholder span {
  width: 48px;
  height: 48px;
  display: block;
  animation-delay: calc(var(--i, 0) * 0.5s);
}
.gallery-placeholder p {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Cinzel', serif;
}

/* ── MAP SECTION ── */
.map-section {
  position: relative;
  z-index: 1;
  padding: 0;
}
.map-container {
  position: relative;
  max-width: 100%;
}
.map-container iframe {
  display: block;
  width: 100%;
  height: 400px;
  filter: grayscale(0.7) contrast(1.1) brightness(0.7) sepia(0.3);
  transition: filter 0.5s;
}
.map-container:hover iframe {
  filter: grayscale(0.3) contrast(1) brightness(0.85) sepia(0.1);
}
.map-overlay-card {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(10, 7, 4, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201,146,42,0.2);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  max-width: 300px;
}
.map-overlay-card h4 {
  font-family: 'Pirata One', cursive;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.map-overlay-card p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
}
.map-directions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 0.8rem;
  transition: color var(--transition);
}
.map-directions:hover { color: var(--amber); }
.map-directions svg { color: var(--gold); }

/* ── CONTACT ── */
.contact-section {
  padding: 8rem 2rem;
  text-align: center;
  z-index: 1;
  position: relative;
  background: linear-gradient(180deg, var(--black) 0%, var(--dark) 100%);
}
.contact-section h2 {
  font-family: 'Pirata One', cursive;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--cream);
}
.contact-grid {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto 3rem;
}
.contact-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,146,42,0.12);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  min-width: 220px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.contact-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.contact-card:hover {
  border-color: rgba(201,146,42,0.3);
  transform: translateY(-6px);
  background: rgba(255,255,255,0.04);
}
.contact-card:hover::after { opacity: 1; }
.contact-card span {
  width: 36px;
  height: 36px;
  display: block;
  margin: 0 auto 0.8rem;
  transition: filter 0.4s ease;
}
.contact-card:nth-child(2) > span { animation-delay: 0.5s; }
.contact-card:nth-child(3) > span { animation-delay: 1s; }
.contact-card:hover > span {
  filter: drop-shadow(0 0 20px rgba(232,180,74,0.6));
  opacity: 1;
  animation: none;
}
.contact-card h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.contact-card a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}
.contact-card a:hover { color: var(--amber); }

/* Social Links */
.social-links {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 0.3rem;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201,146,42,0.2);
  color: var(--muted);
  transition: all var(--transition);
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover {
  border-color: var(--gold);
  color: var(--amber);
  transform: translateY(-2px);
  background: rgba(201,146,42,0.1);
}

.btn-wa-big {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, var(--wa) 0%, var(--wa-dark) 100%);
  color: #fff;
  text-decoration: none;
  padding: 1.1rem 3rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 6px 30px rgba(37,211,102,0.3);
  transition: transform 0.2s, box-shadow 0.3s;
}
.btn-wa-big:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.45);
}

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(201,146,42,0.1);
  position: relative;
  z-index: 1;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand {}
.footer-logo {
  height: 60px;
  filter: invert(1) sepia(1) saturate(2) hue-rotate(5deg) brightness(0.6);
  margin-bottom: 0.8rem;
}
.footer-tagline {
  color: var(--muted);
  font-size: 0.85rem;
  font-style: italic;
}
.footer h5 {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--amber); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-contact p {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 0;
}
.footer-contact a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--amber); }
.footer-social-links {
  display: flex;
  gap: 0.8rem;
}
.footer-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201,146,42,0.15);
  color: var(--muted);
  transition: all var(--transition);
}
.footer-social-links a svg { width: 18px; height: 18px; }
.footer-social-links a:hover {
  border-color: var(--gold);
  color: var(--amber);
  transform: translateY(-2px);
  background: rgba(201,146,42,0.1);
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(201,146,42,0.08);
  text-align: center;
}
.footer-bottom p {
  color: var(--muted);
  font-size: 0.75rem;
  margin: 0.15rem 0;
  opacity: 0.7;
}

/* ── WA FLOTANTE ── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--wa) 0%, var(--wa-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 200;
  transition: transform 0.2s, box-shadow 0.3s;
  animation: wa-bounce 3s ease-in-out infinite 2s;
}
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(-100%) translateX(-12px) translateY(-50%);
}
.wa-tooltip {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateX(-100%) translateX(-12px) translateY(-50%);
  background: rgba(10, 7, 4, 0.92);
  backdrop-filter: blur(10px);
  color: var(--cream);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  border: 1px solid rgba(201,146,42,0.15);
}
@keyframes wa-bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .shows-list { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-wa span { display: none; }
  .nav-wa { padding: 0.5rem; border-radius: 50%; width: 38px; height: 38px; justify-content: center; }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .footer-social-links { justify-content: center; }
  .map-overlay-card {
    position: relative;
    bottom: auto;
    left: auto;
    max-width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }
  .status-divider { display: none; }
  .status-inner {
    flex-direction: column;
    gap: 0.8rem;
  }
}

@media (max-width: 600px) {
  .menu-grid { grid-template-columns: 1fr; }
  .contact-grid { flex-direction: column; align-items: center; }
  .contact-card { width: 100%; max-width: 340px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-logo { width: 140px; height: 140px; }
  .hero-title { font-size: clamp(2.8rem, 12vw, 5rem); }
  .promo-card { padding: 1.2rem 1.5rem; }
  .btn-wa-big { padding: 0.9rem 2rem; font-size: 0.95rem; }
  .gallery-item { width: 240px; height: 170px; }
}

@media (max-width: 380px) {
  .hero-logo { width: 120px; height: 120px; }
  .about { padding: 5rem 1.2rem; }
  .menu-section { padding: 5rem 1.2rem; }
  .shows-section { padding: 5rem 1.2rem; }
  .contact-section { padding: 5rem 1.2rem; }
}
