/* ============================================
   EL PASO — Dyskoteka w Przyjezierzu
   Disco / Nightclub Theme
   ============================================ */

:root {
  --bg: #0a0612;
  --bg-card: #110b1a;
  --bg-surface: #1a1028;

  --text: #f0e6ff;
  --text-muted: #6b5f80;

  --neon-green: #00ff87;
  --neon-pink: #ff2d78;
  --neon-blue: #00c8ff;
  --neon-yellow: #ffe14d;
  --neon-purple: #b44dff;

  --glow-green: 0 0 20px rgba(0, 255, 135, 0.4), 0 0 60px rgba(0, 255, 135, 0.15);
  --glow-pink: 0 0 20px rgba(255, 45, 120, 0.4), 0 0 60px rgba(255, 45, 120, 0.15);
  --glow-blue: 0 0 20px rgba(0, 200, 255, 0.4), 0 0 60px rgba(0, 200, 255, 0.15);
  --glow-yellow: 0 0 20px rgba(255, 225, 77, 0.4), 0 0 60px rgba(255, 225, 77, 0.15);

  --font-display: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-full: 100px;
  --transition: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* --- Animated disco light beams (background) --- */
.disco-lights {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  opacity: 0.35;
}

.light-beam {
  position: absolute;
  top: -20%;
  width: 3px;
  height: 140%;
  transform-origin: top center;
  animation: beamSweep 8s ease-in-out infinite;
}

.beam-1 { left: 20%; background: linear-gradient(to bottom, var(--neon-pink), transparent 70%); animation-delay: 0s; animation-duration: 7s; }
.beam-2 { left: 40%; background: linear-gradient(to bottom, var(--neon-blue), transparent 70%); animation-delay: -1.5s; animation-duration: 9s; }
.beam-3 { left: 55%; background: linear-gradient(to bottom, var(--neon-green), transparent 70%); animation-delay: -3s; animation-duration: 6s; }
.beam-4 { left: 70%; background: linear-gradient(to bottom, var(--neon-yellow), transparent 70%); animation-delay: -4.5s; animation-duration: 8s; }
.beam-5 { left: 85%; background: linear-gradient(to bottom, var(--neon-purple), transparent 70%); animation-delay: -2s; animation-duration: 10s; }

@keyframes beamSweep {
  0%   { transform: rotate(-15deg); opacity: 0.3; }
  25%  { opacity: 0.8; }
  50%  { transform: rotate(15deg); opacity: 0.3; }
  75%  { opacity: 0.8; }
  100% { transform: rotate(-15deg); opacity: 0.3; }
}

/* --- Subtle grid overlay --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(180, 77, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 77, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

/* --- Container --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav-bar {
  background: rgba(10, 6, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid rgba(180, 77, 255, 0.1);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.06em;
  display: flex;
  gap: 6px;
}

.logo-el {
  color: var(--neon-pink);
  text-shadow: var(--glow-pink);
}

.logo-paso {
  color: var(--neon-green);
  text-shadow: var(--glow-green);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition), text-shadow var(--transition);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 103;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--neon-pink);
  box-shadow: var(--glow-pink);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 48px 80px;
}

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

/* Disco ball */
.disco-ball {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
}

.ball-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff 0%, #ddd 10%, #888 30%, #444 60%, #222 100%);
  box-shadow:
    0 0 40px rgba(255, 255, 255, 0.15),
    0 0 100px rgba(180, 77, 255, 0.1),
    inset 0 0 20px rgba(0, 0, 0, 0.5);
  animation: discoBallSpin 20s linear infinite;
  background-image:
    repeating-conic-gradient(from 0deg, rgba(255, 255, 255, 0.1) 0deg 10deg, transparent 10deg 20deg);
}

@keyframes discoBallSpin {
  to { transform: rotate(360deg); }
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-20vh) scale(1); opacity: 0; }
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  border: 1px solid rgba(0, 255, 135, 0.3);
  border-radius: var(--radius-full);
  margin-bottom: 32px;
  background: rgba(0, 255, 135, 0.05);
}

.badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: var(--glow-green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.badge-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--neon-green);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.9;
  margin-bottom: 24px;
}

.title-line {
  display: block;
}

.title-el {
  font-size: clamp(80px, 16vw, 180px);
  color: var(--neon-pink);
  text-shadow:
    0 0 40px rgba(255, 45, 120, 0.5),
    0 0 100px rgba(255, 45, 120, 0.2);
  letter-spacing: 0.08em;
}

.title-paso {
  font-size: clamp(80px, 16vw, 180px);
  color: var(--neon-green);
  text-shadow:
    0 0 40px rgba(0, 255, 135, 0.5),
    0 0 100px rgba(0, 255, 135, 0.2);
  letter-spacing: 0.12em;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(16px, 2.5vw, 24px);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-yellow);
  text-shadow: var(--glow-yellow);
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 16px;
  font-weight: 200;
  color: var(--text);
  opacity: 0.6;
  max-width: 480px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-next-event {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 28px;
  background: rgba(255, 45, 120, 0.08);
  border: 1px solid rgba(255, 45, 120, 0.2);
  border-radius: var(--radius-full);
  flex-wrap: wrap;
  justify-content: center;
}

.next-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.next-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--neon-pink);
}

.next-date {
  font-size: 13px;
  font-weight: 300;
  color: var(--text);
  opacity: 0.5;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(240, 230, 255, 0.2);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--neon-green);
  border-radius: 3px;
  box-shadow: var(--glow-green);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ============================================
   NEON BUTTONS
   ============================================ */
.button-neon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  min-height: 48px;
}

.button-neon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--transition);
}

.button-neon:hover {
  transform: translateY(-3px);
}

.button-neon:active {
  transform: translateY(0);
}

.button-neon-green {
  background: var(--neon-green);
  color: #000;
  box-shadow: 0 0 20px rgba(0, 255, 135, 0.3);
}

.button-neon-green:hover {
  box-shadow: 0 0 30px rgba(0, 255, 135, 0.5), 0 0 60px rgba(0, 255, 135, 0.2);
}

.button-neon-pink {
  background: transparent;
  color: var(--neon-pink);
  box-shadow: inset 0 0 0 2px var(--neon-pink), 0 0 15px rgba(255, 45, 120, 0.15);
}

.button-neon-pink:hover {
  background: var(--neon-pink);
  color: #fff;
  box-shadow: 0 0 30px rgba(255, 45, 120, 0.5), 0 0 60px rgba(255, 45, 120, 0.2);
}

.button-full {
  width: 100%;
  padding: 16px 36px;
  font-size: 14px;
}

/* ============================================
   NEON DIVIDER
   ============================================ */
.neon-divider {
  display: flex;
  height: 3px;
  position: relative;
  z-index: 1;
}

.neon-line {
  flex: 1;
  position: relative;
}

.neon-green  { background: var(--neon-green);  box-shadow: 0 0 10px var(--neon-green), 0 0 30px rgba(0, 255, 135, 0.3); }
.neon-pink   { background: var(--neon-pink);   box-shadow: 0 0 10px var(--neon-pink), 0 0 30px rgba(255, 45, 120, 0.3); }
.neon-blue   { background: var(--neon-blue);   box-shadow: 0 0 10px var(--neon-blue), 0 0 30px rgba(0, 200, 255, 0.3); }
.neon-yellow { background: var(--neon-yellow); box-shadow: 0 0 10px var(--neon-yellow), 0 0 30px rgba(255, 225, 77, 0.3); }

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section-dark {
  background: rgba(0, 0, 0, 0.3);
}

.section-header {
  margin-bottom: 48px;
}

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

.section-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--neon-blue);
  text-shadow: var(--glow-blue);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}

.text-glow-green  { color: var(--neon-green);  text-shadow: 0 0 30px rgba(0, 255, 135, 0.4); }
.text-glow-pink   { color: var(--neon-pink);   text-shadow: 0 0 30px rgba(255, 45, 120, 0.4); }
.text-glow-blue   { color: var(--neon-blue);   text-shadow: 0 0 30px rgba(0, 200, 255, 0.4); }
.text-glow-yellow { color: var(--neon-yellow); text-shadow: 0 0 30px rgba(255, 225, 77, 0.4); }

.section-desc {
  font-size: 16px;
  font-weight: 200;
  opacity: 0.6;
  max-width: 550px;
  margin: 0 auto 48px;
}

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-text p {
  margin-bottom: 24px;
  line-height: 1.8;
  opacity: 0.75;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid rgba(180, 77, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
}

.stat-card:nth-child(1):hover { border-color: var(--neon-green); box-shadow: var(--glow-green); }
.stat-card:nth-child(2):hover { border-color: var(--neon-pink); box-shadow: var(--glow-pink); }
.stat-card:nth-child(3):hover { border-color: var(--neon-blue); box-shadow: var(--glow-blue); }
.stat-card:nth-child(4):hover { border-color: var(--neon-yellow); box-shadow: var(--glow-yellow); }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number[data-color="green"]  { color: var(--neon-green);  text-shadow: 0 0 20px rgba(0, 255, 135, 0.3); }
.stat-number[data-color="pink"]   { color: var(--neon-pink);   text-shadow: 0 0 20px rgba(255, 45, 120, 0.3); }
.stat-number[data-color="blue"]   { color: var(--neon-blue);   text-shadow: 0 0 20px rgba(0, 200, 255, 0.3); }
.stat-number[data-color="yellow"] { color: var(--neon-yellow); text-shadow: 0 0 20px rgba(255, 225, 77, 0.3); }

.stat-label {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
}

/* ============================================
   EVENTS
   ============================================ */
.events-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.event-card {
  display: flex;
  align-items: stretch;
  background: var(--bg-card);
  border: 1px solid rgba(180, 77, 255, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition), border-color var(--transition);
}

.event-card:hover {
  transform: translateX(4px);
}

.event-card[data-accent="pink"]:hover  { border-color: var(--neon-pink); }
.event-card[data-accent="yellow"]:hover { border-color: var(--neon-yellow); }
.event-card[data-accent="blue"]:hover   { border-color: var(--neon-blue); }

.event-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
}

.event-card[data-accent="pink"] .event-glow   { background: var(--neon-pink);   box-shadow: 0 0 15px var(--neon-pink); }
.event-card[data-accent="yellow"] .event-glow  { background: var(--neon-yellow); box-shadow: 0 0 15px var(--neon-yellow); }
.event-card[data-accent="blue"] .event-glow    { background: var(--neon-blue);   box-shadow: 0 0 15px var(--neon-blue); }

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 32px;
  min-width: 100px;
}

.event-day {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.event-card[data-accent="pink"] .event-day   { color: var(--neon-pink); }
.event-card[data-accent="yellow"] .event-day  { color: var(--neon-yellow); }
.event-card[data-accent="blue"] .event-day    { color: var(--neon-blue); }

.event-month {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-top: 4px;
}

.event-info {
  padding: 24px 32px;
  flex: 1;
  border-left: 1px solid rgba(180, 77, 255, 0.08);
}

.event-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.event-desc {
  font-size: 14px;
  font-weight: 200;
  opacity: 0.55;
  margin-bottom: 16px;
  line-height: 1.6;
}

.event-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.event-time {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.event-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: var(--radius-full);
}

.badge-pink   { background: var(--neon-pink);   color: #fff; box-shadow: 0 0 10px rgba(255, 45, 120, 0.3); }
.badge-yellow { background: var(--neon-yellow); color: #000; box-shadow: 0 0 10px rgba(255, 225, 77, 0.3); }
.badge-blue   { background: var(--neon-blue);   color: #000; box-shadow: 0 0 10px rgba(0, 200, 255, 0.3); }

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}

.gallery-large { grid-column: span 2; grid-row: span 2; }
.gallery-wide  { grid-column: span 2; }

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(180, 77, 255, 0.08);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

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

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.gp-pink   { background: linear-gradient(135deg, rgba(255, 45, 120, 0.12), rgba(180, 77, 255, 0.05)); }
.gp-green  { background: linear-gradient(135deg, rgba(0, 255, 135, 0.12), rgba(0, 200, 255, 0.05)); }
.gp-blue   { background: linear-gradient(135deg, rgba(0, 200, 255, 0.12), rgba(180, 77, 255, 0.05)); }
.gp-yellow { background: linear-gradient(135deg, rgba(255, 225, 77, 0.12), rgba(255, 45, 120, 0.05)); }

.gallery-item:nth-child(1):hover { border-color: var(--neon-pink); box-shadow: var(--glow-pink); }
.gallery-item:nth-child(2):hover { border-color: var(--neon-yellow); box-shadow: var(--glow-yellow); }
.gallery-item:nth-child(3):hover { border-color: var(--neon-green); box-shadow: var(--glow-green); }
.gallery-item:nth-child(4):hover { border-color: var(--neon-blue); box-shadow: var(--glow-blue); }
.gallery-item:nth-child(5):hover { border-color: var(--neon-pink); box-shadow: var(--glow-pink); }

.gp-icon {
  font-size: 48px;
  filter: saturate(1.5);
}

.gallery-placeholder p {
  font-size: 13px;
  font-weight: 300;
  opacity: 0.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================
   RESERVATION
   ============================================ */
.section-reservation {
  padding-top: 100px;
  padding-bottom: 120px;
}

.reservation-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.floor-plan-wrapper {
  position: sticky;
  top: 100px;
}

.floor-plan-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.floor-plan {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--bg-card);
  border: 1px solid rgba(180, 77, 255, 0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.floor-stage {
  position: absolute;
  top: 0;
  left: 35%;
  width: 30%;
  height: 12%;
  background: linear-gradient(to bottom, rgba(255, 45, 120, 0.2), rgba(255, 45, 120, 0.05));
  border-bottom: 2px solid var(--neon-pink);
  box-shadow: 0 2px 20px rgba(255, 45, 120, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--neon-pink);
}

.floor-dancefloor {
  position: absolute;
  top: 30%;
  left: 20%;
  width: 60%;
  height: 40%;
  border: 1px dashed rgba(180, 77, 255, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.floor-dancefloor span {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--neon-purple);
  opacity: 0.4;
  z-index: 1;
}

.dancefloor-pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(180, 77, 255, 0.08), transparent 70%);
  animation: dancefloorPulse 3s ease-in-out infinite;
}

@keyframes dancefloorPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.floor-bar {
  position: absolute;
  bottom: 3%;
  left: 10%;
  width: 80%;
  height: 8%;
  background: linear-gradient(to top, rgba(0, 200, 255, 0.15), rgba(0, 200, 255, 0.03));
  border-top: 2px solid var(--neon-blue);
  box-shadow: 0 -2px 20px rgba(0, 200, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--neon-blue);
}

.floor-table {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(240, 230, 255, 0.2);
  background: rgba(240, 230, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  transform: translate(-50%, -50%);
}

.floor-table span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  pointer-events: none;
}

.floor-table:hover {
  border-color: var(--neon-green);
  background: rgba(0, 255, 135, 0.12);
  box-shadow: 0 0 15px rgba(0, 255, 135, 0.3);
  transform: translate(-50%, -50%) scale(1.15);
}

.floor-table.selected {
  border-color: var(--neon-green);
  background: rgba(0, 255, 135, 0.2);
  box-shadow: 0 0 20px rgba(0, 255, 135, 0.5), 0 0 40px rgba(0, 255, 135, 0.15);
  animation: selectedPulse 2s ease-in-out infinite;
}

@keyframes selectedPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 135, 0.5), 0 0 40px rgba(0, 255, 135, 0.15); }
  50% { box-shadow: 0 0 25px rgba(0, 255, 135, 0.7), 0 0 50px rgba(0, 255, 135, 0.25); }
}

.floor-table.taken {
  border-color: var(--neon-pink);
  background: rgba(255, 45, 120, 0.1);
  cursor: not-allowed;
  opacity: 0.4;
}

.floor-table.taken:hover {
  border-color: var(--neon-pink);
  background: rgba(255, 45, 120, 0.1);
  box-shadow: none;
  transform: translate(-50%, -50%);
}

.floor-table.table-vip {
  border-color: var(--neon-yellow);
  background: rgba(255, 225, 77, 0.06);
  width: 52px;
  height: 52px;
}

.floor-table.table-vip:hover {
  background: rgba(255, 225, 77, 0.15);
  border-color: var(--neon-yellow);
  box-shadow: 0 0 15px rgba(255, 225, 77, 0.3);
}

.floor-table.table-vip.selected {
  border-color: var(--neon-green);
  background: rgba(0, 255, 135, 0.2);
  box-shadow: 0 0 20px rgba(0, 255, 135, 0.5);
}

.floor-legend {
  display: flex;
  gap: 24px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid;
}

.legend-available { border-color: rgba(240, 230, 255, 0.2); background: rgba(240, 230, 255, 0.04); }
.legend-selected  { border-color: var(--neon-green); background: rgba(0, 255, 135, 0.2); box-shadow: 0 0 8px rgba(0, 255, 135, 0.4); }
.legend-taken     { border-color: var(--neon-pink); background: rgba(255, 45, 120, 0.1); opacity: 0.4; }
.legend-vip       { border-color: var(--neon-yellow); background: rgba(255, 225, 77, 0.06); }

/* ============================================
   MOBILE TABLES GRID
   ============================================ */
.mobile-tables {
  display: none;
}

.mobile-tables-subtitle {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  margin-top: 20px;
}

.mobile-tables-subtitle:first-of-type {
  margin-top: 12px;
}

.mobile-tables-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.mobile-table-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 14px 8px;
  background: var(--bg-card);
  border: 1px solid rgba(240, 230, 255, 0.15);
  border-radius: var(--radius-md);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 60px;
}

.mobile-table-btn span {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0;
}

.mobile-table-btn.vip {
  border-color: rgba(255, 225, 77, 0.25);
  background: rgba(255, 225, 77, 0.04);
}

.mobile-table-btn.vip span {
  color: var(--neon-yellow);
  opacity: 0.6;
}

.mobile-table-btn:active,
.mobile-table-btn.selected {
  border-color: var(--neon-green);
  background: rgba(0, 255, 135, 0.12);
  color: var(--neon-green);
  box-shadow: 0 0 15px rgba(0, 255, 135, 0.25);
}

.mobile-table-btn.taken {
  border-color: rgba(255, 45, 120, 0.2);
  background: rgba(255, 45, 120, 0.06);
  color: var(--text-muted);
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* ============================================
   RESERVATION FORM
   ============================================ */
.reservation-form-wrapper {
  background: var(--bg-card);
  border: 1px solid rgba(180, 77, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.reservation-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-green), var(--neon-blue), var(--neon-pink));
  opacity: 0.6;
}

.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.selected-table-info {
  padding: 16px 20px;
  border: 1px dashed rgba(180, 77, 255, 0.15);
  border-radius: var(--radius-sm);
  min-height: 56px;
  display: flex;
  align-items: center;
}

.selected-table-info.has-table {
  border-color: var(--neon-green);
  border-style: solid;
  background: rgba(0, 255, 135, 0.05);
  box-shadow: inset 0 0 20px rgba(0, 255, 135, 0.05);
}

.selected-table-info .table-detail {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}

.selected-table-info .table-detail span {
  font-size: 13px;
  font-weight: 300;
}

.selected-table-info .table-detail strong {
  color: var(--neon-green);
  font-weight: 600;
}

.no-table-msg {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.input-text {
  background-color: rgba(10, 6, 18, 0.8);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  padding: 12px 16px;
  border: 1px solid rgba(180, 77, 255, 0.15);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.input-text::placeholder {
  color: var(--text-muted);
}

.input-text:focus {
  border-color: var(--neon-blue);
  box-shadow: 0 0 0 3px rgba(0, 200, 255, 0.15), 0 0 20px rgba(0, 200, 255, 0.1);
}

.input-text.input-error {
  border-color: var(--neon-pink);
  box-shadow: 0 0 0 3px rgba(255, 45, 120, 0.15);
}

textarea.input-text {
  resize: vertical;
  min-height: 80px;
}

input[type="date"].input-text {
  color-scheme: dark;
}

.form-checkbox {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--neon-green);
  cursor: pointer;
  flex-shrink: 0;
}

.form-checkbox label {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  cursor: pointer;
}

.link-neon {
  color: var(--neon-blue);
  text-decoration: underline;
  text-decoration-color: rgba(0, 200, 255, 0.3);
  transition: color var(--transition), text-shadow var(--transition);
}

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

.form-message {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 400;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(0, 255, 135, 0.08);
  border: 1px solid var(--neon-green);
  color: var(--neon-green);
  box-shadow: 0 0 20px rgba(0, 255, 135, 0.1);
}

.form-message.error {
  display: block;
  background: rgba(255, 45, 120, 0.08);
  border: 1px solid var(--neon-pink);
  color: var(--neon-pink);
  box-shadow: 0 0 20px rgba(255, 45, 120, 0.1);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

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

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(180, 77, 255, 0.08);
  border: 1px solid rgba(180, 77, 255, 0.15);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.contact-item h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  color: var(--neon-yellow);
}

.contact-item p {
  font-size: 14px;
  font-weight: 200;
  line-height: 1.8;
  opacity: 0.6;
}

.contact-socials {
  display: flex;
  gap: 12px;
  padding-top: 8px;
}

.social-link {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(180, 77, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all var(--transition);
  background: var(--bg-card);
}

.social-fb:hover  { border-color: var(--neon-blue);   color: var(--neon-blue);   box-shadow: var(--glow-blue); }
.social-ig:hover  { border-color: var(--neon-pink);   color: var(--neon-pink);   box-shadow: var(--glow-pink); }
.social-tt:hover  { border-color: var(--neon-green);  color: var(--neon-green);  box-shadow: var(--glow-green); }

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(180, 77, 255, 0.12);
}

.map-placeholder {
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--bg-card);
}

.map-placeholder span {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  opacity: 0.1;
  letter-spacing: 0.2em;
}

.map-placeholder p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative;
  z-index: 1;
}

.footer-content {
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  display: flex;
  gap: 4px;
}

.footer-copy {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .reservation-layout { grid-template-columns: 1fr; }
  .floor-plan-wrapper { position: static; }
}

@media (max-width: 859px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--bg);
    flex-direction: column;
    padding: 80px 40px 40px;
    gap: 24px;
    border-left: 1px solid rgba(180, 77, 255, 0.15);
    transition: right var(--transition);
    z-index: 102;
  }

  .nav-links.open { right: 0; }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 101;
  }

  .nav-overlay.open {
    display: block;
  }
  .nav-bar { padding: 14px 24px; }
  .container { padding: 0 24px; }
  .hero { padding: 100px 24px 60px; min-height: 90vh; }
  .section { padding: 70px 0; }

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

  .event-card { flex-direction: column; }
  .event-date {
    flex-direction: row;
    gap: 8px;
    border-right: none;
    padding: 16px 24px;
    min-width: auto;
  }
  .event-info { padding: 20px 24px; border-left: none; border-top: 1px solid rgba(180, 77, 255, 0.08); }
  .event-glow { width: 100%; height: 3px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery-large { grid-column: span 2; grid-row: span 1; }
  .gallery-wide  { grid-column: span 2; }

  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .reservation-form-wrapper { padding: 24px; }

  .footer-content { flex-direction: column; gap: 12px; text-align: center; }

  .disco-ball { width: 80px; height: 80px; }
}

@media (max-width: 700px) {
  .floor-plan,
  .floor-legend {
    display: none;
  }

  .mobile-tables {
    display: block;
  }

  .mobile-tables-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card { padding: 16px; }
  .stat-number { font-size: 32px; }

  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 150px; }
  .gallery-large, .gallery-wide { grid-column: span 1; }

  .hero-next-event { flex-direction: column; gap: 8px; }
}
