:root {
  color-scheme: dark;
  --bg: #090b0f;
  --panel: rgba(24, 26, 31, 0.82);
  --panel-strong: rgba(31, 31, 35, 0.94);
  --line: rgba(230, 177, 108, 0.38);
  --line-soft: rgba(255, 255, 255, 0.12);
  --text: #f7f3ef;
  --muted: #b9b2ae;
  --gold: #f1bf72;
  --rose: #ff4e8a;
  --pink: #ff8ac7;
  --violet: #7b45ff;
  --cyan: #1f8cff;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 10%, rgba(112, 47, 255, 0.22), transparent 26rem),
    radial-gradient(circle at 18% 24%, rgba(255, 62, 129, 0.16), transparent 22rem),
    linear-gradient(180deg, #09090d 0%, #0d1219 54%, #0a0d12 100%);
  overflow-x: hidden;
}

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

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

#danceLights {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: screen;
  opacity: 0.82;
}

.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    radial-gradient(circle at var(--mx, 62%) var(--my, 22%), rgba(255, 76, 140, 0.12), transparent 18rem),
    radial-gradient(circle at calc(var(--mx, 62%) - 28%) calc(var(--my, 22%) + 19%), rgba(42, 134, 255, 0.08), transparent 16rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(9, 9, 12, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.logo {
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1;
  letter-spacing: 0;
  color: #ffe0f5;
  text-shadow: 0 0 7px #fff, 0 0 16px var(--pink), 0 0 32px var(--rose);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 40px);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.main-nav a:hover {
  color: #fff;
  text-shadow: 0 0 18px var(--pink);
}

.header-booking,
.button,
.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid rgba(255, 99, 151, 0.7);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(104, 23, 52, 0.9), rgba(80, 20, 43, 0.88));
  box-shadow: inset 0 0 18px rgba(255, 91, 145, 0.26), 0 0 18px rgba(255, 78, 138, 0.22);
  color: white;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.header-booking {
  min-width: 220px;
  padding: 0 22px;
  font-size: 12px;
}

.button {
  min-width: 178px;
  padding: 0 24px;
  font-size: 13px;
}

.button.ghost {
  border-color: rgba(241, 191, 114, 0.52);
  background: rgba(9, 10, 14, 0.5);
  box-shadow: inset 0 0 16px rgba(241, 191, 114, 0.08);
}

.header-booking:hover,
.button:hover,
.mini-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 160, 197, 0.95);
  box-shadow: inset 0 0 22px rgba(255, 91, 145, 0.34), 0 0 26px rgba(255, 78, 138, 0.35);
}

.hero {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("./assets/hero.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  filter: saturate(1.15) contrast(1.08);
  animation: slowPulse 8s ease-in-out infinite alternate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 9, 0.95) 0%, rgba(7, 7, 9, 0.74) 35%, rgba(7, 7, 9, 0.1) 72%, rgba(7, 7, 9, 0.42) 100%),
    linear-gradient(0deg, rgba(9, 11, 15, 0.95), transparent 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 74px 0 92px;
}

.overline {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 580px;
  margin-bottom: 14px;
  font-size: clamp(48px, 7vw, 76px);
  line-height: 0.94;
  font-weight: 400;
  text-shadow: 0 0 6px white, 0 0 24px rgba(255, 255, 255, 0.6);
}

.hero-copy {
  max-width: 440px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.feature-grid,
.section-block,
.site-footer {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}

.feature-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: -46px;
  margin-bottom: 32px;
}

.feature-card,
.price-card,
.drink-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 45px rgba(0, 0, 0, 0.28);
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 104px;
  padding: 22px;
}

.feature-card h2,
.section-head h2 {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.feature-card h2 {
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 14px;
}

.feature-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  line-height: 1.35;
}

.line-icon,
.price-icon {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  color: var(--gold);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: drop-shadow(0 0 10px rgba(241, 191, 114, 0.28));
}

.disc {
  background-image: radial-gradient(circle, transparent 28%, currentColor 30% 34%, transparent 36%), radial-gradient(circle at center, transparent 51%, currentColor 53% 57%, transparent 59%), linear-gradient(currentColor, currentColor);
  border: 2px solid currentColor;
  border-radius: 50%;
}

.glass,
.mic,
.crown,
.ticket,
.star,
.table {
  position: relative;
}

.glass::before,
.mic::before,
.crown::before,
.ticket::before,
.star::before,
.table::before {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 38px;
  font-weight: 300;
}

.glass::before { content: "⌁"; font-size: 52px; transform: rotate(-24deg); }
.mic::before { content: "◉"; border: 2px solid currentColor; border-radius: 50%; width: 26px; height: 26px; margin: 6px auto; box-shadow: 14px 18px 0 -10px currentColor; transform: rotate(-38deg); }
.crown::before { content: "♕"; }
.ticket::before { content: "◇"; transform: rotate(45deg); }
.star::before { content: "☆"; font-size: 50px; }
.table::before { content: "╥"; font-size: 50px; }

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.section-head h2 {
  margin: 0;
  letter-spacing: 0;
}

.section-head a,
.menu-toggle {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.section-head a::after,
.menu-toggle::after {
  content: " →";
  color: var(--gold);
}

.menu-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

.menu-toggle:hover {
  color: white;
}

.drink-grid,
.space-grid,
.pricing-grid {
  display: grid;
  gap: 12px;
}

.events-section {
  width: min(1826px, calc(100% - 36px));
  margin-bottom: 34px;
  padding: clamp(34px, 5vw, 74px) 0 28px;
}

.events-head {
  margin-bottom: 30px;
}

.events-head h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 4.4vw, 58px);
  font-weight: 800;
  line-height: 0.95;
  text-transform: none;
}

.event-arrows {
  display: flex;
  gap: 14px;
}

.event-arrow {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(241, 191, 114, 0.62);
  border-radius: 50%;
  background: rgba(8, 8, 13, 0.34);
  color: var(--gold);
  cursor: pointer;
  font-family: inherit;
  font-size: 46px;
  line-height: 1;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.event-arrow:hover {
  border-color: rgba(241, 191, 114, 0.96);
  box-shadow: 0 0 22px rgba(241, 191, 114, 0.18);
  transform: translateY(-2px);
}

.event-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  padding: 0 2px 18px;
  scrollbar-width: thin;
  scrollbar-color: rgba(241, 191, 114, 0.55) rgba(255, 255, 255, 0.06);
}

.event-card,
.space-card {
  position: relative;
  min-height: 204px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.78) 60%, rgba(0, 0, 0, 0.92)), var(--photo);
  background-position: center;
  background-size: cover;
  padding: 16px;
}

.event-card {
  display: flex;
  flex: 0 0 calc((100% - 48px) / 3);
  flex-direction: column;
  justify-content: space-between;
  min-height: clamp(420px, 27vw, 492px);
  scroll-snap-align: start;
  border-color: rgba(241, 191, 114, 0.58);
  border-radius: 22px;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.02) 36%, rgba(0, 0, 0, 0.78) 100%),
    var(--photo);
  background-position: center;
  padding: 34px 36px 36px;
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.42);
}

.event-card:nth-child(2) {
  background-position: center 43%;
}

.event-card:nth-child(4),
.event-card:nth-child(5) {
  background-position: center 48%;
}

.space-card {
  border-radius: 8px;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.78) 60%, rgba(0, 0, 0, 0.92)), var(--photo);
  padding: 16px;
}

.event-card::after,
.space-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(130deg, transparent, rgba(255, 79, 143, 0.12), transparent 58%);
  transform: translateX(-100%);
  animation: cardSweep 6s ease-in-out infinite;
}

.event-card time {
  display: block;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: white;
  font-size: clamp(44px, 4.2vw, 52px);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.55);
}

.event-card time span {
  display: block;
  margin-top: 13px;
  color: var(--gold);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.event-card h3,
.space-card h3 {
  margin-bottom: 4px;
  font-weight: 500;
  text-transform: uppercase;
}

.event-card h3 {
  font-size: clamp(28px, 2.3vw, 34px);
  font-weight: 800;
}

.space-card h3 {
  font-size: 19px;
}

.event-card p,
.space-card p,
.drink-card p,
.price-card p,
.site-footer p,
address {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.event-card p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
  text-transform: none;
}

.event-info {
  position: relative;
  z-index: 1;
}

.mini-button {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 34px;
  padding: 0 12px;
  font-size: 11px;
}

.event-card .mini-button {
  width: 172px;
  min-height: 60px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(210, 72, 139, 0.96), rgba(175, 52, 112, 0.96));
  box-shadow: 0 0 34px rgba(255, 78, 138, 0.4), inset 0 0 18px rgba(255, 255, 255, 0.12);
  font-size: 15px;
}

.drink-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.drink-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 0;
}

.drink-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) contrast(1.03);
}

.drink-info {
  position: absolute;
  inset: auto 0 0;
  padding: 72px 16px 16px;
  text-align: left;
  background: linear-gradient(180deg, transparent, rgba(7, 7, 10, 0.74) 42%, rgba(7, 7, 10, 0.95));
}

.drink-card h3 {
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 15px;
  text-transform: uppercase;
}

.drink-card p {
  min-height: 40px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.drink-card strong,
.price-card strong {
  color: var(--gold);
  font-size: 17px;
  font-weight: 500;
}

.full-menu-panel {
  margin-top: 18px;
  border: 1px solid rgba(241, 191, 114, 0.46);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.44);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.34);
}

.full-menu-panel img {
  width: 100%;
  max-height: min(88vh, 980px);
  object-fit: contain;
  background: #070707;
}

.spaces,
.menu-section,
.booking,
.gallery {
  margin-bottom: 28px;
}

.space-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.space-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 166px;
}

.space-card h3,
.space-card p {
  position: relative;
  z-index: 1;
}

.space-card p {
  margin-bottom: 0;
}

.pricing-grid {
  grid-template-columns: 1fr 1fr 1.15fr;
}

.price-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px 16px;
  align-items: center;
  min-height: 134px;
  padding: 18px;
}

.price-card .mini-button {
  grid-column: 2;
  max-width: 190px;
  justify-self: end;
}

.price-card strong {
  grid-column: 1 / span 1;
  white-space: nowrap;
  font-size: 21px;
}

.booking-button {
  border: 1px solid rgba(255, 99, 151, 0.7);
  cursor: pointer;
  font-family: inherit;
}

.booking-modal[hidden] {
  display: none;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 22px;
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 5, 8, 0.76);
  backdrop-filter: blur(12px);
}

.booking-dialog {
  position: relative;
  z-index: 1;
  width: min(480px, 100%);
  border: 1px solid rgba(255, 99, 151, 0.72);
  border-radius: 12px;
  padding: 28px;
  background:
    radial-gradient(circle at 82% 0%, rgba(255, 78, 138, 0.18), transparent 17rem),
    linear-gradient(145deg, rgba(31, 31, 36, 0.98), rgba(9, 10, 14, 0.98));
  box-shadow: 0 0 34px rgba(255, 78, 138, 0.24), 0 28px 80px rgba(0, 0, 0, 0.55);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: white;
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
}

.modal-kicker {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-dialog h2 {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 600;
}

.booking-form {
  display: grid;
  gap: 14px;
}

.booking-form label {
  display: grid;
  gap: 7px;
}

.booking-form label span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.booking-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(241, 191, 114, 0.32);
  border-radius: 7px;
  padding: 0 14px;
  background: rgba(0, 0, 0, 0.34);
  color: white;
  font: inherit;
  outline: none;
}

.booking-form input:focus {
  border-color: rgba(255, 99, 151, 0.85);
  box-shadow: 0 0 0 3px rgba(255, 78, 138, 0.14);
}

.booking-submit {
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(255, 99, 151, 0.7);
  cursor: pointer;
  font-family: inherit;
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.05fr 1.05fr 1fr 1fr 1.2fr;
  gap: 6px;
  overflow: hidden;
  border: 1px solid rgba(241, 191, 114, 0.34);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.4);
}

.gallery-strip img {
  width: 100%;
  height: 102px;
  object-fit: cover;
  border-right: 1px solid rgba(241, 191, 114, 0.25);
  filter: saturate(1.12) contrast(1.04);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.8fr 1.25fr;
  gap: 32px;
  align-items: center;
  padding: 28px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: inline-block;
  margin-bottom: 12px;
}

.site-footer span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer p,
address {
  margin-bottom: 0;
  font-style: normal;
}

.footer-cta {
  padding: 20px;
  border: 1px solid rgba(255, 78, 138, 0.75);
  border-radius: 10px;
  box-shadow: inset 0 0 20px rgba(255, 91, 145, 0.18), 0 0 22px rgba(255, 78, 138, 0.18);
}

.footer-cta .button {
  width: 100%;
  margin-top: 14px;
}

@keyframes slowPulse {
  from { transform: scale(1.04); filter: saturate(1.12) contrast(1.05) brightness(0.82); }
  to { transform: scale(1.075); filter: saturate(1.28) contrast(1.1) brightness(1); }
}

@keyframes cardSweep {
  0%, 44% { transform: translateX(-110%); }
  68%, 100% { transform: translateX(110%); }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    gap: 22px;
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .feature-grid,
  .space-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .event-card {
    flex-basis: calc((100% - 24px) / 2);
  }

  .gallery-strip {
    grid-template-columns: repeat(5, minmax(170px, 1fr));
    overflow-x: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 16px;
    gap: 14px;
  }

  .header-booking {
    min-width: 0;
    padding-inline: 12px;
    font-size: 11px;
  }

  .hero {
    min-height: 500px;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(7, 7, 9, 0.72), rgba(7, 7, 9, 0.98));
  }

  .hero-content {
    padding-top: 120px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .feature-grid,
  .drink-grid,
  .space-grid {
    grid-template-columns: 1fr;
  }

  .events-section {
    width: calc(100% - 36px);
    padding-top: 42px;
  }

  .events-head {
    align-items: flex-end;
  }

  .event-arrows {
    display: none;
  }

  .event-card {
    flex-basis: min(100%, 342px);
    min-height: 430px;
    border-radius: 18px;
    padding: 26px 22px 24px;
  }

  .event-card .mini-button {
    width: 100%;
  }

  .feature-grid {
    margin-top: -70px;
  }

  .price-card {
    grid-template-columns: 54px 1fr;
  }

  .price-card .mini-button {
    grid-column: 1 / -1;
    max-width: none;
  }

  .price-card strong {
    grid-column: 1 / -1;
  }
}
