/* ==========================================================================
   DIAMOND REST & LOUNGE - STYLE SHEET
   ========================================================================== */

/* Design Tokens & System Variables */
:root {
  --bg-dark-deep: #030306;
  --bg-dark-accent: #0b0c13;
  --bg-card: rgba(13, 14, 25, 0.6);
  --bg-card-hover: rgba(20, 22, 38, 0.75);
  --bg-nav: rgba(5, 6, 12, 0.8);
  
  --neon-white: #ffffff;
  --neon-blue: #00f0ff;
  --neon-purple: #b026ff;
  --neon-amber: #ffaa00;
  
  /* Glow Effects */
  --glow-white: 0 0 6px #ffffff, 0 0 15px rgba(255,255,255,0.5), 0 0 25px rgba(255,255,255,0.2);
  --glow-blue: 0 0 5px #00f0ff, 0 0 12px #00f0ff, 0 0 25px rgba(0, 240, 255, 0.4);
  --glow-purple: 0 0 5px #b026ff, 0 0 12px #b026ff, 0 0 25px rgba(176, 38, 255, 0.4);
  
  /* Borders */
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-neon-blue: rgba(0, 240, 255, 0.25);
  --border-neon-purple: rgba(176, 38, 255, 0.25);
  --border-neon-white: rgba(255, 255, 255, 0.2);

  /* Fonts */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Timing */
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark-deep);
  color: #e5e9f0;
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark-deep);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--neon-blue);
  box-shadow: 0 0 8px var(--neon-blue);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Ambient Background Canvas & Orbs */
#particleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
  opacity: 0.6;
}

.glow-bg-orb {
  position: fixed;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -3;
  pointer-events: none;
  opacity: 0.15;
  mix-blend-mode: screen;
}

.orb-blue {
  background: radial-gradient(circle, var(--neon-blue) 0%, rgba(0, 0, 0, 0) 70%);
  top: -10vw;
  right: -10vw;
  animation: floatOrb 25s ease-in-out infinite alternate;
}

.orb-purple {
  background: radial-gradient(circle, var(--neon-purple) 0%, rgba(0, 0, 0, 0) 70%);
  bottom: -15vw;
  left: -10vw;
  animation: floatOrb 30s ease-in-out infinite alternate-reverse;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(4vw, -5vw) scale(1.1); }
  100% { transform: translate(-3vw, 3vw) scale(0.9); }
}

/* Header & Glassmorphic Navigation */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--bg-nav);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-glass);
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  padding: 5px 0;
  background: rgba(3, 3, 6, 0.95);
  border-bottom: 1px solid var(--border-neon-blue);
  box-shadow: 0 4px 30px rgba(0, 240, 255, 0.05);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mini {
  width: 32px;
  height: 32px;
}

.logo-mini svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 4px #fff);
}

.logo-text {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--neon-white);
  text-shadow: var(--glow-white);
}

/* Desktop Navigation */
.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 6px 0;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--neon-white);
  text-shadow: var(--glow-white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-blue);
  box-shadow: var(--glow-blue);
  transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language Selector */
.lang-selector-container {
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 3px 4px;
  gap: 2px;
}

.lang-btn {
  background: none;
  border: 1px solid transparent;
  color: var(--text-secondary);
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lang-btn:hover {
  color: var(--neon-white);
}

.lang-btn.active {
  color: var(--neon-white);
  background: linear-gradient(90deg, rgba(0, 240, 255, 0.15), rgba(176, 38, 255, 0.15));
  border-color: var(--neon-blue);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.15);
  text-shadow: var(--glow-white);
}

/* Mobile Language Selector styling */
.mobile-lang {
  margin-bottom: 24px;
  align-self: center;
  padding: 4px 6px;
}

.mobile-lang .lang-btn {
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 16px;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  flex-direction: column;
  gap: 6px;
}

.mobile-nav-toggle .bar {
  width: 25px;
  height: 2px;
  background-color: var(--neon-white);
  box-shadow: var(--glow-white);
  transition: var(--transition-smooth);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn-nav {
  padding: 8px 18px;
  font-size: 13px;
}

.btn-primary {
  background: linear-gradient(135deg, #ffffff 0%, #e0e6f8 100%);
  color: #000000;
  box-shadow: var(--glow-white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px #fff, 0 0 30px var(--neon-blue);
  background: #ffffff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--neon-white);
  border: 1px solid var(--border-neon-blue);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(0, 240, 255, 0.1);
  box-shadow: var(--glow-blue);
  border-color: var(--neon-blue);
}

.btn-whatsapp-header {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-header:hover {
  background: #25d366;
  color: #000;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
  border-color: #25d366;
  transform: translateY(-2px);
}

.btn-pdf {
  background: linear-gradient(135deg, rgba(176, 38, 255, 0.2) 0%, rgba(0, 240, 255, 0.2) 100%);
  color: var(--neon-white);
  border: 1px solid var(--border-glass);
  font-size: 15px;
  padding: 14px 32px;
}

.btn-pdf:hover {
  border-color: var(--neon-purple);
  box-shadow: var(--glow-purple);
  transform: translateY(-2px);
}

.btn-submit {
  width: 100%;
  background: linear-gradient(90deg, var(--neon-blue) 0%, var(--neon-purple) 100%);
  color: #ffffff;
  font-size: 15px;
  padding: 14px;
  box-shadow: var(--glow-blue);
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.btn-submit:hover::before {
  left: 100%;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.6), 0 0 35px rgba(176, 38, 255, 0.6);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 12px;
}

/* Mobile Navigation Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: rgba(3, 3, 6, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 1px solid var(--border-neon-blue);
}

.mobile-menu-overlay.open {
  right: 0;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.mobile-link {
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.mobile-link:hover, .mobile-link.active {
  color: var(--neon-white);
  text-shadow: var(--glow-white);
}

.mobile-menu-socials {
  margin-top: 48px;
  display: flex;
  gap: 24px;
}

.mobile-menu-socials a {
  font-size: 24px;
  color: var(--text-secondary);
}

.mobile-menu-socials a:hover {
  color: var(--neon-blue);
  text-shadow: var(--glow-blue);
}

/* Page Layout and Sections */
main {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
  position: relative;
}

.section-container {
  display: none;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
}

/* Tab/Section Fading In animation */
@keyframes fadeInSection {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-container.section-active {
  display: block;
  animation: fadeInSection 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* SECTION 1: INICIO / PRESENTACIÓN */
#inicio.section-container {
  max-width: 100%;
  padding: 0;
}

.hero-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.85) 60%,
    rgba(0, 0, 0, 0.98) 100%
  ), url('assets/images/local_bg.webp') no-repeat center center;
  background-size: cover;
  z-index: 0;
  opacity: 0.22;
  transition: transform 0.05s ease-out, opacity 0.05s ease-out;
  pointer-events: none;
  transform-origin: center center;
  will-change: transform, opacity;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 64px;
}

/* SVG Logo Styling */
.main-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.main-logo-container::after {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.12) 0%, transparent 70%);
  filter: blur(15px);
  z-index: -1;
}

.diamond-logo {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

/* Neon animations on SVG lines */
.neon-line-white {
  animation: neonFlickerWhite 6s infinite alternate;
}

.neon-line-blue {
  stroke-dasharray: 2000;
  stroke-dashoffset: 0;
  animation: neonFlickerBlue 4s infinite alternate;
}

.neon-line-blue-dash {
  animation: rotateDash 40s linear infinite;
  transform-origin: 250px 250px;
}

.neon-cup-white {
  animation: neonFlickerWhite 5s infinite alternate-reverse;
}

.neon-straw-blue {
  animation: neonFlickerBlue 7s infinite alternate-reverse;
}

.neon-liquid {
  animation: liquidPulse 3s ease-in-out infinite alternate;
  transform-origin: 250px 250px;
  filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.8)) drop-shadow(0 0 15px rgba(0, 110, 255, 0.45));
}

/* Keyframes for SVG animations */
@keyframes rotateDash {
  100% { transform: rotate(360deg); }
}

@keyframes liquidPulse {
  0% { opacity: 0.75; transform: scaleY(0.96) translateY(2px); }
  100% { opacity: 0.95; transform: scaleY(1); }
}

@keyframes neonFlickerWhite {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    stroke: #ffffff;
    filter: drop-shadow(0 0 3px #fff) drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
  }
  20%, 24%, 55% {
    stroke: rgba(255, 255, 255, 0.85);
    filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.2));
  }
}

@keyframes neonFlickerBlue {
  0%, 29%, 31%, 33%, 35%, 64%, 66%, 100% {
    stroke: var(--neon-blue);
    filter: drop-shadow(0 0 4px var(--neon-blue)) drop-shadow(0 0 10px rgba(0, 240, 255, 0.6));
  }
  30%, 34%, 65% {
    stroke: rgba(0, 240, 255, 0.6);
    filter: none;
  }
}

.logo-text-top, .logo-text-bottom {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  fill: #ffffff;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.7));
  text-shadow: var(--glow-white);
}

/* Hero Typography */
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 54px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 2px;
}

.highlight-white {
  color: var(--neon-white);
  text-shadow: var(--glow-white);
}

.highlight-neon {
  color: var(--neon-blue);
  text-shadow: var(--glow-blue);
  animation: glowCycle 6s infinite alternate;
}

@keyframes glowCycle {
  0% { color: var(--neon-blue); text-shadow: var(--glow-blue); }
  100% { color: var(--neon-purple); text-shadow: var(--glow-purple); }
}

.hero-tagline {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 1px;
}

.hero-description {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 580px;
}

.hero-buttons {
  margin-top: 15px;
  display: flex;
  gap: 16px;
}

/* Experience Cards Section */
.experience-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section-title {
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  border-radius: 2px;
  box-shadow: var(--glow-blue);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.exp-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  transition: var(--transition-smooth);
}

.exp-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  border-color: var(--neon-blue);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.08);
}

.exp-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-neon-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--neon-blue);
  text-shadow: var(--glow-blue);
  box-shadow: 0 0 15px rgba(176, 38, 255, 0.1);
  transition: var(--transition-smooth);
  animation: floatIcon 4s ease-in-out infinite alternate;
}

.exp-card:hover .exp-icon-wrapper {
  color: var(--neon-white);
  border-color: var(--neon-blue);
  background: rgba(0, 240, 255, 0.08);
  text-shadow: var(--glow-white);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

@keyframes floatIcon {
  0% { transform: translateY(0); }
  100% { transform: translateY(-4px); }
}

.exp-card h3 {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  color: var(--neon-white);
}

.exp-card p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* Gallery Section */
.gallery-preview-section {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 320px;
  border: 1px solid var(--border-glass);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(3, 3, 6, 0.9) 0%, rgba(3, 3, 6, 0.3) 70%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0.85;
  transition: var(--transition-smooth);
}

.gallery-overlay span {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  color: var(--neon-white);
  letter-spacing: 0.5px;
  text-shadow: var(--glow-white);
  position: relative;
  padding-bottom: 6px;
}

.gallery-overlay span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--neon-blue);
  box-shadow: var(--glow-blue);
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  background: linear-gradient(to top, rgba(3, 3, 6, 0.95) 0%, rgba(0, 240, 255, 0.1) 70%, transparent 100%);
}

.gallery-item:hover .gallery-overlay span::after {
  width: 100%;
  background: var(--neon-blue);
}

/* SECTION 2: LA CARTA */
.section-header-wrapper {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.section-title-large {
  font-family: var(--font-title);
  font-size: 44px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--neon-white);
  text-shadow: var(--glow-white);
  letter-spacing: 2px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 600px;
}

.pdf-download-container {
  margin-top: 10px;
}

/* Menu Tab Filters */
.menu-filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-tab {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition-smooth);
  letter-spacing: 0.5px;
}

.filter-tab:hover {
  color: var(--neon-white);
  border-color: var(--border-neon-purple);
  background: rgba(176, 38, 255, 0.08);
}

.filter-tab.active {
  color: var(--neon-white);
  background: linear-gradient(90deg, rgba(0,240,255,0.15), rgba(176,38,255,0.15));
  border-color: var(--neon-blue);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
  text-shadow: var(--glow-white);
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.menu-item-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: var(--transition-smooth);
}

.menu-item-card:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  border-color: var(--border-neon-purple);
  box-shadow: 0 6px 20px rgba(176, 38, 255, 0.05);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.menu-item-header h3 {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  color: var(--neon-white);
  letter-spacing: 0.5px;
}

.menu-item-price {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  color: var(--neon-blue);
  text-shadow: var(--glow-blue);
  white-space: nowrap;
}

.menu-item-desc {
  font-size: 14px;
  color: var(--text-secondary);
  flex-grow: 1;
}

.menu-item-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 4px 12px;
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.02);
}

.menu-item-card:hover .menu-item-tag {
  color: var(--neon-blue);
  border-color: var(--border-neon-blue);
  background: rgba(0,240,255,0.02);
}

/* Highlighted Menu Card (Bestsellers / Combos) */
.menu-item-card-highlight {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(13, 14, 25, 0.75) 0%, rgba(25, 15, 40, 0.75) 100%);
  border: 1px solid rgba(176, 38, 255, 0.3);
  box-shadow: 0 4px 20px rgba(176, 38, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: var(--transition-smooth);
}

.menu-item-card-highlight:hover {
  transform: translateY(-4px);
  border-color: var(--neon-purple);
  box-shadow: 0 10px 30px rgba(176, 38, 255, 0.15), 0 0 15px rgba(0, 240, 255, 0.08);
}

.highlight-badge {
  position: absolute;
  top: -12px;
  left: 32px;
  background: linear-gradient(90deg, var(--neon-purple) 0%, var(--neon-blue) 100%);
  color: #ffffff;
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 20px;
  box-shadow: var(--glow-purple);
}

.menu-item-card-highlight h3 {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 800;
  color: var(--neon-white);
  text-shadow: var(--glow-white);
}

.menu-item-card-highlight .menu-item-price {
  font-size: 22px;
  color: var(--neon-blue);
  text-shadow: var(--glow-blue);
}

.menu-item-subitems {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 12px;
  margin-top: 4px;
}

.menu-item-subitems span {
  font-weight: 500;
  color: var(--neon-white);
}

/* SECTION 3: CONTACTO Y RESERVAS */
.contacto-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  margin-bottom: 64px;
}

.contacto-info-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contacto-intro-text {
  color: var(--text-secondary);
  font-size: 15px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--neon-blue);
  text-shadow: var(--glow-blue);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.info-item:hover .info-icon {
  border-color: var(--neon-blue);
  box-shadow: 0 0 10px rgba(0,240,255,0.2);
  color: var(--neon-white);
  text-shadow: var(--glow-white);
}

.info-text h4 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 16px;
  color: var(--neon-white);
  margin-bottom: 4px;
}

.info-text p {
  font-size: 14px;
  color: var(--text-secondary);
}

.info-accent {
  font-size: 12px !important;
  color: var(--neon-amber) !important;
  margin-top: 2px;
}

.glow-link:hover {
  color: var(--neon-white);
  text-shadow: var(--glow-white);
}

.social-channels {
  margin-top: 16px;
}

.social-channels h4 {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.01);
  transition: var(--transition-smooth);
}

.social-btn:hover {
  transform: translateY(-3px);
  color: var(--neon-white);
}

.social-btn.instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
  border-color: #d6249f;
  box-shadow: 0 0 15px rgba(214, 36, 159, 0.4);
}

.social-btn.whatsapp:hover {
  background: #25d366;
  color: #000;
  border-color: #25d366;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

.social-btn.google-maps:hover {
  background: #4285f4;
  border-color: #4285f4;
  box-shadow: 0 0 15px rgba(66, 133, 244, 0.4);
}

.social-btn.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  box-shadow: 0 0 15px rgba(24, 119, 242, 0.4);
}

.social-btn.tiktok:hover {
  background: #000000;
  border-color: #ff0050;
  box-shadow: -3px -3px 8px rgba(0, 242, 254, 0.6), 3px 3px 8px rgba(254, 9, 121, 0.6);
}

/* Reservation Card & Form */
.reservation-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-neon-blue);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 240, 255, 0.04);
  position: relative;
  overflow: hidden;
}

.reservation-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(176, 38, 255, 0.1) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.reservation-card h3 {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 800;
  color: var(--neon-white);
  margin-bottom: 8px;
}

.reservation-card > p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

label {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 16px;
  color: var(--text-secondary);
  font-size: 14px;
  pointer-events: none;
  transition: var(--transition-fast);
}

input, select, textarea {
  width: 100%;
  background: rgba(5, 5, 8, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  padding: 12px 16px 12px 46px;
  color: var(--neon-white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: var(--transition-smooth);
}

textarea {
  padding-left: 16px;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--neon-blue);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
  background: rgba(5, 5, 8, 0.9);
}

input:focus + .input-icon, select:focus + .input-icon {
  color: var(--neon-blue);
  text-shadow: var(--glow-blue);
}

/* Date/Time picker browser style overrides for dark mode */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.5;
  cursor: pointer;
}

/* Error Messages */
.error-msg {
  display: none;
  font-size: 11px;
  color: #ff3366;
  font-weight: 500;
}

.form-group.has-error input,
.form-group.has-error select {
  border-color: rgba(255, 51, 102, 0.5);
  box-shadow: 0 0 8px rgba(255, 51, 102, 0.15);
}

.form-group.has-error .error-msg {
  display: block;
}

/* Success Form screen */
.form-success-message {
  width: 100%;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 0 0;
  z-index: 10;
  animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.success-icon {
  font-size: 64px;
  color: #25d366;
  filter: drop-shadow(0 0 12px rgba(37, 211, 102, 0.4));
  margin-bottom: 20px;
  animation: scaleUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes scaleUp {
  from { transform: scale(0.6); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.form-success-message h3 {
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 800;
  color: var(--neon-white);
  margin-bottom: 12px;
}

.form-success-message p {
  color: var(--text-secondary);
  font-size: 14px;
  max-width: 320px;
  margin-bottom: 32px;
}

/* Map Section */
.map-section {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 64px;
}

.map-title {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 700;
  color: var(--neon-white);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.map-title i {
  color: var(--neon-blue);
  text-shadow: var(--glow-blue);
}

.map-container-wrapper {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-neon-blue);
  box-shadow: 0 4px 25px rgba(0, 240, 255, 0.05);
  height: 400px;
  background: var(--bg-card);
}

.map-container-wrapper iframe {
  width: 100%;
  height: 100%;
  filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
  opacity: 0.95;
}

/* Footer Section */
.main-footer {
  background: #020204;
  border-top: 1px solid var(--border-glass);
  padding: 64px 24px 32px;
  position: relative;
  z-index: 10;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 800;
  color: var(--neon-white);
  text-shadow: var(--glow-white);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 14px;
  max-width: 320px;
}

.footer-links h4 {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--neon-blue);
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--neon-white);
  text-shadow: var(--glow-white);
}

.footer-legal {
  grid-column: span 3;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-secondary);
  flex-wrap: wrap;
  gap: 12px;
}

/* Toast Notification */
.notification-toast {
  position: fixed;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card-hover);
  border: 1px solid var(--neon-blue);
  border-radius: 30px;
  padding: 12px 32px;
  color: var(--neon-white);
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0,240,255,0.25);
  z-index: 1000;
  transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}

.notification-toast.show {
  bottom: 32px;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .main-logo-container {
    max-width: 320px;
    margin: 0 auto;
  }

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

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

  .contacto-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  /* Navigation */
  .desktop-nav {
    display: none;
  }

  .header-container {
    padding: 12px 16px;
  }

  .logo-link {
    gap: 8px;
  }

  .logo-text {
    font-size: 18px;
    letter-spacing: 1.5px;
  }

  .header-actions {
    gap: 12px;
  }

  .btn-whatsapp-header {
    display: none !important;
  }

  .mobile-nav-toggle {
    display: flex;
    z-index: 101;
  }

  /* Grid adaptations */
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gallery-item {
    height: 250px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-item-card-highlight {
    grid-column: span 1;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-legal {
    grid-column: span 1;
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
  
  /* Titles font sizes */
  .hero-title {
    font-size: 38px;
  }

  .section-title-large {
    font-size: 32px;
  }

  .reservation-card {
    padding: 30px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ==========================================================================
   CHALLENGE LED CARD & CATEGORY HEADERS STYLING
   ========================================================================== */

/* Cartel LED Challenge Card */
.challenge-led-card {
  grid-column: span 2;
  border: 2px solid #ff007f !important;
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.4), inset 0 0 15px rgba(255, 0, 127, 0.2) !important;
  animation: led-border-glow 3s infinite alternate ease-in-out;
  overflow: visible;
}

.challenge-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.challenge-text {
  flex: 1;
}

.challenge-image-container {
  flex-shrink: 0;
  width: 150px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.challenge-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid #b026ff;
  box-shadow: 0 0 15px rgba(176, 38, 255, 0.8), 0 0 30px rgba(0, 240, 255, 0.4);
  animation: floatBurger 4s ease-in-out infinite alternate;
}

/* LED border and glow animations */
@keyframes led-border-glow {
  0% {
    border-color: #ff007f;
    box-shadow: 0 0 12px rgba(255, 0, 127, 0.5), 0 0 25px rgba(0, 240, 255, 0.2), inset 0 0 8px rgba(255, 0, 127, 0.2);
  }
  30% {
    border-color: #00f0ff;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.6), 0 0 30px rgba(176, 38, 255, 0.3), inset 0 0 10px rgba(0, 240, 255, 0.3);
  }
  35% {
    border-color: rgba(0, 240, 255, 0.2);
    box-shadow: 0 0 4px rgba(0, 240, 255, 0.1), inset 0 0 2px rgba(0, 240, 255, 0.1);
  }
  38% {
    border-color: #00f0ff;
    box-shadow: 0 0 18px rgba(0, 240, 255, 0.7), 0 0 35px rgba(0, 240, 255, 0.4), inset 0 0 12px rgba(0, 240, 255, 0.4);
  }
  70% {
    border-color: #b026ff;
    box-shadow: 0 0 15px rgba(176, 38, 255, 0.6), 0 0 30px rgba(255, 0, 127, 0.3), inset 0 0 10px rgba(176, 38, 255, 0.3);
  }
  100% {
    border-color: #ff007f;
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.8), 0 0 40px rgba(255, 0, 127, 0.5), inset 0 0 15px rgba(255, 0, 127, 0.5);
  }
}

@keyframes floatBurger {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-10px) rotate(2deg);
  }
}

@media (max-width: 768px) {
  .challenge-led-card {
    grid-column: span 1;
  }
  .challenge-content-wrapper {
    flex-direction: column-reverse;
    text-align: center;
    gap: 16px;
  }
  .challenge-image-container {
    width: 135px;
    height: 180px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   BEST PRODUCTS HEADING
   ========================================================================== */

.best-products-heading {
  text-align: center;
  margin: 48px 0 8px;
  position: relative;
}

.best-products-heading h3 {
  font-family: var(--font-title);
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
  position: relative;
  display: inline-block;
}

.best-products-heading h3::after {
  content: '';
  display: block;
  margin: 10px auto 0;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), var(--neon-purple), transparent);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
}

/* Shisha Premium Card Custom Styling */
.shisha-card {
  gap: 16px !important;
}

.shisha-details-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.shisha-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--neon-purple);
  border: 1px solid rgba(176, 38, 255, 0.2);
  border-radius: 12px;
  padding: 6px 14px;
  background: rgba(176, 38, 255, 0.03);
  text-shadow: 0 0 5px rgba(176, 38, 255, 0.2);
  transition: var(--transition-smooth);
}

.shisha-tag i {
  font-size: 12px;
}

.shisha-card:hover .shisha-tag {
  border-color: var(--neon-blue);
  color: var(--neon-blue);
  background: rgba(0, 240, 255, 0.03);
  text-shadow: 0 0 5px rgba(0, 240, 255, 0.2);
}

.shisha-flavors-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
  margin-top: 4px;
}

.flavors-heading {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  color: var(--neon-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: var(--glow-blue);
}

.flavors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.flavor-pill {
  font-size: 12px;
  font-weight: 500;
  color: var(--neon-white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 4px 12px;
  transition: var(--transition-smooth);
}

.flavor-pill:hover {
  background: rgba(0, 240, 255, 0.1);
  border-color: var(--border-neon-blue);
  color: var(--neon-blue);
  transform: scale(1.05);
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.2);
}

/* Guests row custom layout */
.guests-row {
  grid-template-columns: 1fr;
  transition: all 0.3s ease;
}
.guests-row.has-custom {
  grid-template-columns: repeat(2, 1fr);
}

/* Google Reviews Section Styling */
.reviews-section {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 64px;
  margin-top: 64px;
}

.reviews-title {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 700;
  color: var(--neon-white);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviews-title i {
  color: #4285F4; /* Google Blue */
  text-shadow: 0 0 10px rgba(66, 133, 244, 0.4);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition-smooth);
}

.review-card:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  border-color: rgba(66, 133, 244, 0.3);
  box-shadow: 0 8px 30px rgba(66, 133, 244, 0.08);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-purple) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.review-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-author {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 600;
  color: var(--neon-white);
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.review-source {
  font-size: 10px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.review-source i {
  color: #4285F4;
}

.review-rating {
  font-size: 10px;
  color: #ffaa00;
  text-shadow: 0 0 5px rgba(255, 170, 0, 0.3);
  display: flex;
  gap: 1px;
}

.review-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
  flex-grow: 1;
  font-style: italic;
}
