/* ============================================
   PROYECTO CANTINA — Landing Page Styles
   Aesthetic: Light Theme — Sports Lounge
   ============================================ */

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

:root {
  /* Colors — Light theme with Packers accent palette */
  --color-bg: #f7f5f0;
  --color-surface: #edeae4;
  --color-surface-elevated: #ffffff;
  --color-neon-blue: #00B341;
  --color-neon-blue-dim: #006d28;
  --color-neon-green: #34D058;
  --color-gold: #FFB612;
  --color-gold-dim: #cc9200;
  --color-text: #1a1a2e;
  --color-text-muted: #5c5c6e;
  --color-text-dim: #9a9aae;
  --color-white: #ffffff;
  --color-black: #000000;

  /* Dark palette (for dark sections) */
  --color-dark-bg: #07070e;
  --color-dark-surface: #0d0d18;
  --color-dark-text: #f0ece4;
  --color-dark-text-muted: #7a7a8e;
  --color-dark-text-dim: #4a4a5e;

  /* Typography */
  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-accent: 'Righteous', cursive;
  --font-body: 'Outfit', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Layout */
  --container-max: 1280px;
  --nav-height: 72px;
}

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  line-height: 1.7;
}

/* Subtle grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 128px;
  opacity: 0.015;
  pointer-events: none;
  z-index: 9999;
}

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

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

ul { list-style: none; }

::selection {
  background: var(--color-neon-blue);
  color: var(--color-white);
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb {
  background: var(--color-neon-blue-dim);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--color-neon-blue); }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* --- LOADER --- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__logo {
  width: 80px;
  height: 80px;
  animation: loaderPulse 1.2s ease-in-out infinite alternate;
}

.loader__bar {
  width: 160px;
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 1px;
  overflow: hidden;
}

.loader__progress {
  width: 0%;
  height: 100%;
  background: var(--color-neon-blue);
  box-shadow: 0 0 12px var(--color-neon-blue);
  animation: loaderFill 1.6s var(--ease-out) forwards;
}

@keyframes loaderPulse {
  from { filter: brightness(0.6); transform: scale(0.95); }
  to { filter: brightness(1.2) drop-shadow(0 0 20px rgba(0, 179, 65, 0.4)); transform: scale(1); }
}

@keyframes loaderFill {
  to { width: 100%; }
}

/* --- NAVIGATION --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-sm) 0;
  transition: all 0.5s var(--ease-out);
}

.nav.scrolled {
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.6rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  transition: transform 0.3s var(--ease-out);
}

.nav__logo:hover img {
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(0, 179, 65, 0.5));
}

.nav__links {
  display: none;
  gap: var(--space-lg);
}

.nav__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color 0.3s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-neon-blue);
  box-shadow: 0 0 6px var(--color-neon-blue);
  transition: width 0.3s var(--ease-out);
}

.nav__link:hover {
  color: var(--color-text);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  display: none;
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all 0.4s var(--ease-out);
  transform-origin: center;
}

.nav__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(247, 245, 240, 0.97);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease-out);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  transition: all 0.3s;
  transform: translateY(20px);
  opacity: 0;
}

.mobile-menu.open .mobile-menu__link {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu.open .mobile-menu__link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-menu__link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-menu__link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-menu__cta { transition-delay: 0.3s; }

.mobile-menu__link:hover {
  color: var(--color-neon-blue);
  text-shadow: 0 0 20px rgba(0, 179, 65, 0.4);
}

.mobile-menu__cta {
  margin-top: var(--space-sm);
  transform: translateY(20px);
  opacity: 0;
}

.mobile-menu.open .mobile-menu__cta {
  transform: translateY(0);
  opacity: 1;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85em 2.2em;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn--neon {
  color: var(--color-neon-blue);
  border: 1px solid var(--color-neon-blue);
  background: transparent;
  box-shadow:
    0 0 8px rgba(0, 179, 65, 0.15),
    inset 0 0 8px rgba(0, 179, 65, 0.05);
}

.btn--neon:hover {
  color: var(--color-white);
  background: var(--color-neon-blue);
  box-shadow:
    0 0 20px rgba(0, 179, 65, 0.4),
    0 0 60px rgba(0, 179, 65, 0.15),
    inset 0 0 20px rgba(0, 179, 65, 0.1);
}

.btn--ghost {
  color: var(--color-text-muted);
  border: 1px solid var(--color-text-dim);
  background: transparent;
}

.btn--ghost:hover {
  color: var(--color-text);
  border-color: var(--color-text-muted);
}

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

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
  animation: heroZoom 20s var(--ease-in-out) infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 80%, rgba(0, 179, 65, 0.08) 0%, transparent 60%),
    linear-gradient(180deg,
      rgba(7, 7, 14, 0.55) 0%,
      rgba(7, 7, 14, 0.25) 40%,
      rgba(7, 7, 14, 0.35) 65%,
      rgba(247, 245, 240, 1) 100%
    );
}

.hero__noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 128px;
  opacity: 0.04;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: var(--space-md);
}

.hero__logo {
  width: 90px;
  height: 90px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  filter: drop-shadow(0 0 30px rgba(0, 179, 65, 0.5));
  animation: logoGlow 3s ease-in-out infinite alternate;
  opacity: 0;
  animation: heroFadeIn 1s 0.3s var(--ease-out) forwards, logoGlow 3s 1.3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  from { filter: drop-shadow(0 0 20px rgba(0, 179, 65, 0.3)); }
  to { filter: drop-shadow(0 0 40px rgba(0, 179, 65, 0.6)) drop-shadow(0 0 80px rgba(0, 179, 65, 0.2)); }
}

.hero__title {
  margin-bottom: var(--space-sm);
}

.hero__title-main {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.06em;
  color: #f0ece4;
  opacity: 0;
  animation: heroFadeIn 1s 0.5s var(--ease-out) forwards;
}

.hero__title-accent {
  display: block;
  font-family: var(--font-accent);
  font-size: clamp(1.8rem, 5.5vw, 4rem);
  letter-spacing: 0.2em;
  color: var(--color-gold);
  text-shadow:
    0 0 10px rgba(255, 182, 18, 0.6),
    0 0 30px rgba(255, 182, 18, 0.3),
    0 0 60px rgba(255, 182, 18, 0.1);
  opacity: 0;
  animation: heroFadeIn 1s 0.7s var(--ease-out) forwards;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: heroFadeIn 1s 0.9s var(--ease-out) forwards;
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeIn 1s 1.1s var(--ease-out) forwards;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero buttons (stay light on dark image) */
.hero .btn--ghost {
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.25);
}

.hero .btn--ghost:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

/* Nav stays light on hero (before scroll) */
.nav:not(.scrolled) .nav__link {
  color: rgba(255, 255, 255, 0.6);
}

.nav:not(.scrolled) .nav__link:hover {
  color: #ffffff;
}

.nav:not(.scrolled) .nav__hamburger span {
  background: #f0ece4;
}

/* Hero scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: heroFadeIn 1s 1.5s var(--ease-out) forwards;
}

.hero__scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-neon-blue), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

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

/* Hero chevron divider */
.hero__chevron-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 4;
  line-height: 0;
}

.hero__chevron-bottom svg {
  width: 100%;
  height: 50px;
}

/* --- SECTION HEADERS --- */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-neon-blue);
  margin-bottom: var(--space-sm);
  position: relative;
  padding: 0 var(--space-md);
}

.section-header__tag::before,
.section-header__tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--color-neon-blue-dim);
}

.section-header__tag::before { right: 100%; }
.section-header__tag::after { left: 100%; }

.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 0.06em;
  line-height: 1;
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-neon-blue), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- EXPERIENCE --- */
.experience {
  padding: var(--space-2xl) 0 var(--space-xl);
}

.experience__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.experience__text {
  order: 2;
}

.experience__lead {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.experience__text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}

.experience__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stat {
  text-align: center;
}

.stat__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-neon-blue);
  line-height: 1;
}

.stat__plus {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-neon-blue);
}

.stat__label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.experience__images {
  position: relative;
  order: 1;
}

.experience__img-main {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.experience__img-main img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 6s var(--ease-out);
}

.experience__img-main:hover img {
  transform: scale(1.05);
}

.experience__img-glow {
  position: absolute;
  bottom: -20%;
  left: 10%;
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(0, 179, 65, 0.1) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

.experience__img-secondary {
  display: none;
}

/* --- HIGHLIGHTS --- */
.highlights {
  padding: 0 0 var(--space-2xl);
}

.highlights__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.highlight-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--color-surface-elevated);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.5s var(--ease-out);
}

.highlight-card:hover {
  border-color: rgba(0, 179, 65, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 0 40px rgba(0, 179, 65, 0.05);
}

.highlight-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.highlight-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s var(--ease-out);
}

.highlight-card:hover .highlight-card__image img {
  transform: scale(1.08);
}

.highlight-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 60%);
  pointer-events: none;
}

.highlight-card__content {
  padding: var(--space-md);
}

.highlight-card__icon {
  width: 36px;
  height: 36px;
  margin-bottom: var(--space-sm);
  color: var(--color-neon-blue);
}

.highlight-card__icon svg {
  width: 100%;
  height: 100%;
}

.highlight-card__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
}

.highlight-card__text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* --- BUTTON GOLD VARIANT --- */
.btn--gold {
  color: #1a1a2e;
  background: linear-gradient(135deg, var(--color-gold), #ffc940);
  border: 1px solid var(--color-gold);
  font-weight: 700;
  box-shadow: 0 0 20px rgba(255, 182, 18, 0.2);
}

.btn--gold:hover {
  background: linear-gradient(135deg, #ffc940, var(--color-gold));
  box-shadow:
    0 0 30px rgba(255, 182, 18, 0.4),
    0 0 80px rgba(255, 182, 18, 0.15);
  transform: translateY(-2px);
}

/* --- KARAOKE FRIDAYS --- */
.karaoke {
  position: relative;
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.karaoke__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255, 182, 18, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(0, 179, 65, 0.06) 0%, transparent 50%),
    var(--color-dark-surface);
}

.karaoke__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 128px;
  opacity: 0.03;
  pointer-events: none;
}

.karaoke__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.karaoke__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(255, 182, 18, 0.1);
  border: 1px solid rgba(255, 182, 18, 0.25);
  padding: 0.5em 1.5em;
  border-radius: 2px;
  margin-bottom: var(--space-md);
}

.karaoke__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  letter-spacing: 0.05em;
  line-height: 0.95;
  margin-bottom: var(--space-md);
}

.karaoke__highlight {
  color: var(--color-gold);
  text-shadow:
    0 0 10px rgba(255, 182, 18, 0.5),
    0 0 30px rgba(255, 182, 18, 0.25),
    0 0 60px rgba(255, 182, 18, 0.1);
  animation: karaokeGlow 2.5s ease-in-out infinite alternate;
}

@keyframes karaokeGlow {
  from {
    text-shadow:
      0 0 10px rgba(255, 182, 18, 0.4),
      0 0 30px rgba(255, 182, 18, 0.15);
  }
  to {
    text-shadow:
      0 0 15px rgba(255, 182, 18, 0.7),
      0 0 40px rgba(255, 182, 18, 0.35),
      0 0 80px rgba(255, 182, 18, 0.15);
  }
}

.karaoke__text {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.karaoke__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
  margin-bottom: var(--space-lg);
}

.karaoke__detail {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.95rem;
}

.karaoke__detail svg {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
  flex-shrink: 0;
}

/* Karaoke dark section overrides */
.karaoke__title {
  color: var(--color-dark-text);
}

.karaoke__text {
  color: var(--color-dark-text-muted);
}

.karaoke__detail {
  color: var(--color-dark-text);
}

@media (min-width: 768px) {
  .karaoke__details {
    flex-direction: row;
    justify-content: center;
    gap: var(--space-lg);
  }
}

/* --- GALLERY --- */
.gallery {
  padding: var(--space-xl) 0 var(--space-2xl);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
  aspect-ratio: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.gallery__item--wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery__item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 179, 65, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  border: 2px solid transparent;
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
  border-color: rgba(0, 179, 65, 0.4);
  box-shadow: inset 0 0 30px rgba(0, 179, 65, 0.1);
}

.gallery__item-overlay span {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-white);
  padding: 0.5em 1.5em;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* --- VISIT --- */
.visit {
  padding: var(--space-xl) 0 var(--space-2xl);
}

/* Map */
.visit__map-wrapper {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto var(--space-lg);
  padding: 0 var(--space-md);
}

.visit__map {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 21/9;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.visit__map iframe {
  width: 100%;
  height: 100%;
}

.visit__map-link {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.6em 1.2em;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s var(--ease-out);
  z-index: 2;
}

.visit__map-link svg {
  width: 14px;
  height: 14px;
}

.visit__map-link:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(0, 179, 65, 0.3);
  color: var(--color-neon-blue);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Cards */
.visit__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.visit__card {
  position: relative;
  background: var(--color-surface-elevated);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 6px;
  padding: var(--space-md) var(--space-md) var(--space-md) calc(var(--space-md) + 4px);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}

.visit__card:hover {
  border-color: rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.visit__card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-neon-blue);
  box-shadow: 0 0 12px rgba(0, 179, 65, 0.3);
}

.visit__card-accent--green {
  background: var(--color-neon-green);
  box-shadow: 0 0 12px rgba(52, 208, 88, 0.3);
}

.visit__card-accent--gold {
  background: var(--color-gold);
  box-shadow: 0 0 12px rgba(255, 182, 18, 0.3);
}

.visit__card-icon {
  width: 28px;
  height: 28px;
  color: var(--color-neon-blue);
  margin-bottom: 12px;
}

.visit__card-icon--green { color: var(--color-neon-green); }
.visit__card-icon--gold { color: var(--color-gold); }

.visit__card-icon svg {
  width: 100%;
  height: 100%;
}

.visit__card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.visit__card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.visit__hours li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.88rem;
}

.visit__hours li:last-child { border-bottom: none; }

.visit__hours li span:first-child {
  color: var(--color-text-muted);
}

.visit__hours li span:last-child {
  color: var(--color-text);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.visit__address {
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.visit__directions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-neon-green);
  font-size: 0.85rem;
  font-weight: 600;
  transition: gap 0.3s var(--ease-out);
}

.visit__directions svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease-out);
}

.visit__directions:hover {
  gap: 10px;
}

.visit__directions:hover svg {
  transform: translateX(3px);
}

.visit__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: #ffffff;
  background: #25D366;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.7em 1.4em;
  border-radius: 3px;
  transition: all 0.3s var(--ease-out);
}

.visit__whatsapp svg {
  width: 18px;
  height: 18px;
}

.visit__whatsapp:hover {
  background: #20bd5a;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .visit__map {
    aspect-ratio: 21/9;
  }

  .visit__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .visit__cards {
    margin-top: calc(var(--space-lg) * -1);
    position: relative;
    z-index: 2;
  }

  .visit__card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  }
}

/* --- FOOTER (stays dark) --- */
.footer {
  position: relative;
  background: var(--color-dark-surface);
  padding: var(--space-xl) 0 var(--space-lg);
  color: var(--color-dark-text);
}

.footer__chevron-top {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}

.footer__chevron-top svg {
  width: 100%;
  height: 40px;
}

.footer__content {
  text-align: center;
}

.footer__brand {
  margin-bottom: var(--space-md);
}

.footer__logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto var(--space-sm);
  opacity: 0.7;
  transition: opacity 0.3s;
}

.footer__logo:hover {
  opacity: 1;
  filter: drop-shadow(0 0 12px rgba(0, 179, 65, 0.3));
}

.footer__tagline {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--color-dark-text-muted);
  letter-spacing: 0.05em;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark-text-muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transition: all 0.4s var(--ease-out);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__social-link:hover {
  color: var(--color-neon-blue);
  border-color: var(--color-neon-blue);
  box-shadow: 0 0 15px rgba(0, 179, 65, 0.2);
  transform: translateY(-2px);
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--color-dark-text-dim);
  letter-spacing: 0.05em;
}

/* --- LIGHTBOX --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-out);
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox__img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__image {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.4s var(--ease-out);
}

.lightbox.open .lightbox__image {
  transform: scale(1);
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: none;
  border: none;
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
}

.lightbox__close {
  top: var(--space-md);
  right: var(--space-md);
  font-size: 2.5rem;
  line-height: 1;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__close:hover {
  color: var(--color-neon-blue);
  transform: rotate(90deg);
}

.lightbox__prev,
.lightbox__next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.lightbox__prev { left: var(--space-sm); }
.lightbox__next { right: var(--space-sm); }

.lightbox__prev:hover,
.lightbox__next:hover {
  color: var(--color-neon-blue);
  background: rgba(0, 179, 65, 0.1);
}

.lightbox__counter {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--color-text-dim);
}

/* --- SCROLL REVEAL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }

/* --- RESPONSIVE — Tablet (768px+) --- */
@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }

  .nav__hamburger {
    display: none;
  }

  .nav__cta {
    display: inline-block;
  }

  .hero__logo {
    width: 110px;
    height: 110px;
  }

  .experience__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .experience__text {
    order: 1;
  }

  .experience__images {
    order: 2;
  }

  .experience__img-secondary {
    display: block;
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 55%;
    border-radius: 4px;
    overflow: hidden;
    border: 3px solid var(--color-bg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  }

  .experience__img-secondary img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
  }

  .highlights__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .gallery__item--wide {
    grid-column: span 2;
  }


  .lightbox__prev { left: var(--space-md); }
  .lightbox__next { right: var(--space-md); }
}

/* --- RESPONSIVE — Desktop (1024px+) --- */
@media (min-width: 1024px) {
  .hero__logo {
    width: 130px;
    height: 130px;
  }

  .stat__number {
    font-size: 3rem;
  }

  .gallery__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .gallery__item--wide {
    grid-column: span 2;
  }

  .gallery__item--tall {
    grid-row: span 2;
  }

  .highlight-card__content {
    padding: var(--space-md) var(--space-md) var(--space-lg);
  }
}

/* --- RESPONSIVE — Wide (1440px+) --- */
@media (min-width: 1440px) {
  :root {
    --container-max: 1400px;
  }
}

/* --- REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero__bg img {
    transform: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  html { scroll-behavior: auto; }
}
