/* xity.bar — burgundy speakeasy with neon glow + candlelight pools */

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

:root {
  --burgundy-deep: #2a0a18;
  --burgundy-mid: #5a1a30;
  --cream: #f0e8d8;
  --cream-dark: #d8c8b0;
  --pink: #e8408a;
  --amber: #e8a850;
  --on-dark: #e8d8c8;
  --on-light: #2a1a18;
}

html, body {
  background: var(--burgundy-deep);
  color: var(--on-dark);
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Wet pavement reflections — vertical neon streaks */
.reflections {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.streak {
  position: absolute;
  width: 1.5px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(232, 64, 138, 0.18) 50%,
    transparent 100%);
  filter: blur(0.6px);
  opacity: 0.45;
}

/* Hero */
.hero {
  width: 100vw;
  min-height: 100vh;
  background: var(--burgundy-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 8vw, 120px);
  position: relative;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(232, 64, 138, 0.18);
}

.hero-title {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: clamp(80px, 26vw, 380px);
  line-height: 0.92;
  color: var(--cream);
  letter-spacing: -0.02em;
  text-shadow:
    0 0 8px rgba(232, 64, 138, 0.35),
    0 0 24px rgba(232, 64, 138, 0.18);
}
.bar-suffix {
  font-size: 0.34em;
  font-weight: 400;
  color: var(--pink);
  letter-spacing: 0.06em;
  display: inline-block;
  margin-left: 0.06em;
  text-shadow:
    0 0 6px var(--pink),
    0 0 14px rgba(232, 64, 138, 0.6),
    0 0 28px rgba(232, 64, 138, 0.3);
}

.hero-tagline {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: clamp(15px, 1.6vw, 22px);
  color: var(--on-dark);
  margin-top: 28px;
  max-width: 600px;
  line-height: 1.55;
}

.neon {
  color: var(--pink);
  text-shadow:
    0 0 7px #e8408a,
    0 0 14px rgba(232, 64, 138, 0.4),
    0 0 28px rgba(232, 64, 138, 0.2);
}

/* Candle light pools */
.candle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 168, 80, 0.28), rgba(232, 168, 80, 0.04) 60%, transparent 70%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 1;
}
.pool-1 { top: 20%; left: 15%; width: 220px; height: 220px; }
.pool-2 { bottom: 20%; right: 12%; width: 180px; height: 180px; }
.pool-3 { top: 30%; right: 8%; width: 200px; height: 200px; }
.pool-4 { bottom: 8%; left: 6%; width: 150px; height: 150px; }
.pool-5 { top: 12%; left: 50%; transform: translateX(-50%); width: 240px; height: 240px; }

/* Marker-pen tags */
.marker-tag {
  position: absolute;
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(14px, 1.6vw, 22px);
  color: var(--pink);
  letter-spacing: 0.05em;
  z-index: 4;
  transform: rotate(-3deg);
  text-shadow: 0 0 6px rgba(232, 64, 138, 0.3);
}
.marker-tag.tilt { transform: rotate(5deg); }

/* Panels */
.panel {
  width: 100vw;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: clamp(60px, 8vw, 140px) clamp(40px, 8vw, 120px);
  position: relative;
  overflow: hidden;
}
.panel.light {
  background: var(--cream);
  color: var(--on-light);
}
.panel.dark {
  background: var(--burgundy-deep);
  color: var(--on-dark);
  border-top: 1px solid rgba(232, 64, 138, 0.16);
  border-bottom: 1px solid rgba(232, 64, 138, 0.16);
}

.panel-inner {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.kicker {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--burgundy-mid);
  margin-bottom: 24px;
}
.kicker.dim { color: var(--cream-dark); }

.panel-title {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: clamp(34px, 5.6vw, 76px);
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.panel p { margin-bottom: 1.2em; }
.panel.dark p { color: var(--on-dark); }

.rules {
  list-style: none;
  margin: 18px 0;
  padding: 0;
}
.rules li {
  position: relative;
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid rgba(216, 200, 176, 0.18);
}
.rules li::before {
  content: "·";
  position: absolute;
  left: 8px;
  color: var(--pink);
  font-size: 1.6em;
  line-height: 1;
}
.rules li:last-child { border-bottom: none; }

.atmosphere .stack {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.candle-stand {
  flex: 0 0 60px;
}
.atmosphere-text { flex: 1; min-width: 280px; }

.flicker {
  transform-origin: 30px 50px;
  animation: candle-flicker 1.4s ease-in-out infinite;
}
@keyframes candle-flicker {
  0%, 100% { opacity: 1; transform: scale(1); }
  20% { opacity: 0.85; transform: scale(1.04, 0.98); }
  40% { opacity: 0.95; transform: scale(0.97, 1.03); }
  60% { opacity: 0.7; transform: scale(1.03, 0.99); }
  80% { opacity: 1; transform: scale(0.99, 1.02); }
}

.smoke {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: smoke-rise 4.5s ease-in-out infinite;
}
@keyframes smoke-rise {
  0% { stroke-dashoffset: 50; opacity: 0; }
  20% { opacity: 0.42; }
  100% { stroke-dashoffset: -50; opacity: 0; }
}

.addr {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: clamp(17px, 1.8vw, 22px);
  margin-bottom: 1.4em;
}
.hours {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(20px, 2.4vw, 30px);
  color: var(--pink);
  text-shadow: 0 0 8px rgba(232, 64, 138, 0.4);
}

.foot {
  width: 100vw;
  background: var(--burgundy-mid);
  padding: 32px;
  text-align: center;
}
.foot .kicker { color: var(--cream); margin-bottom: 0; }
