:root {
  --bg: #0b0b0e;
  --card: #16161c;
  --ink: #f5f3f0;
  --accent: #b50b1e;
  --accent2: #ff8c00;
  --muted: #a09aa6;
}
.banner {
  margin-top: 70px; /* match the top bar height */

}
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

a {
  color: var(--ink);
  text-decoration: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Top bar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(58, 15, 20, 0.8); /* clearer rgba instead of hex+alpha */
  backdrop-filter: saturate(140%) blur(6px);
  -webkit-backdrop-filter: saturate(140%) blur(6px); /* Safari support */
  border-bottom: 1px solid #4a1a20;
}

.topbar .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem 0;
}

.brand {
  font-weight: 800;
  letter-spacing: .08em;
}

.nav a {
  margin-left: 1rem;
  opacity: .85;
}

.nav a:hover {
  opacity: 1;
  color: var(--accent2);
}

/* Hero */
.hero {
  position: relative;
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.9) brightness(0.8);
}

.hero::after {
  /* dark-to-transparent overlay so characters remain visible behind countdown */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, .55),
    rgba(0, 0, 0, .65)
  );
}

.hero .content {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.badge {
  display: inline-block;
  background: #2a1012;
  border: 1px solid #5a1a1f;
  border-radius: 999px;
  padding: .35rem .7rem;
  color: #ffb4b4;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: .7rem;
}

h1 {
  margin: .3rem 0 1rem;
  font-size: clamp(2rem, 7vw, 4rem);
  text-shadow: 0 6px 30px #000;
}

.subtitle {
  color: var(--muted);
}

.cta {
  margin-top: 1rem;
  display: inline-flex;
  gap: .75rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.button {
  background: var(--accent);
  border: 1px solid #8a0c1f;
  color: #fff;
  padding: .8rem 1.1rem;
  border-radius: .75rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(181, 11, 30, .28);
  transition: transform .15s ease;
}

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

/* Countdown */
#countdown {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.cd-box {
  background: rgba(0, 0, 0, .45);
  border: 1px solid #3d3d44;
  border-radius: .75rem;
  padding: .6rem .8rem;
  min-width: 72px;
}

.cd-box .num {
  font-size: 1.6rem;
  font-weight: 800;
}

.cd-box .lbl {
  font-size: .7rem;
  color: #c9c7cf;
  text-transform: uppercase;
  letter-spacing: .12em;
}

/* Sections */
section {
  padding: 3rem 0;
  border-top: 1px solid #1a1a22;
}

section h2 {
  font-size: 1.6rem;
  margin: 0 0 1.2rem;
}

.lede {
  color: var(--muted);
  margin-top: -.4rem;
  margin-bottom: 1.8rem;
}

.card {
  background: var(--card);
  border: 1px solid #252530;
  border-radius: 1rem;
  padding: 1rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid.attractions {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.flyer {
  overflow: hidden;
  border-radius: .8rem;
  border: 1px solid #2a2a33;
  background: #0c0c12;
}

.flyer img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform .25s ease;
}

.flyer:hover img {
  transform: scale(1.03);
}

/* FAQ (accordion) */
details {
  background: var(--card);
  border: 1px solid #292933;
  border-radius: .8rem;
  padding: .8rem;
}

details + details {
  margin-top: .6rem;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

/* Tickets */
.ticket {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  align-items: flex-start; /* fixed: start → flex-start */
}

.price {
  font-size: 2rem;
  font-weight: 900;
  color: #ffd35b;
}

/* Footer */
footer {
  background: #3a0f14;
  border-top: 1px solid #4a1a20;
  margin-top: 2rem;
}

footer .inner {
  padding: 1.2rem 0;
  color: #f0d8d8;
}

.small {
  font-size: .9rem;
  color: #d9c1c1;
}

/* Utils */
.kicker {
  color: #ffb85e;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.address {
  color: #f7e6e6;
}

@media (max-width: 700px) {
  .hero {
    min-height: 52vh;
  }

  .flyer img {
    height: 260px;
  }
}

/* Map */
.map-wrap {
  position: relative;
  padding-top: 56.25%;
  border: 1px solid #2a2a33;
  border-radius: 1rem;
  overflow: hidden;
  background: #0c0c12;
}

.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  padding-top: 60px; /* match navbar height */
}

.navbar {
  background: transparent;
  position: absolute; /* instead of fixed */
  top: 0;
  left: 0;
  width: 100%;
}
.topbar {
  position: fixed;     /* stays at the very top */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #3a0f14; /* solid dark red, adjust as needed */
  border-bottom: 1px solid #4a1a20;
}
.hero {
  margin-top: 10px;
}


