:root {
  --maroon-dark: #1a0a0f;
  --maroon:      #2a0f16;
  --red:         #c1272d;
  --orange:      #f7931e;
  --sunset:      #ff6b35;
  --cream:       #ffe8d6;
  --white:       #fff;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font);
  background: var(--maroon-dark);
  color: var(--white);
}

/* Hero ---------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--maroon-dark) 0%, var(--maroon) 30%, var(--red) 65%, var(--sunset) 100%);
  text-align: center;
  padding: 2rem 1.5rem;
}

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

.palm {
  position: absolute;
  bottom: -10px;
  width: clamp(120px, 22vw, 260px);
  height: auto;
  opacity: 0.85;
}
.palm-left { left: -20px; }
.palm-right { right: -20px; transform: scaleX(-1); }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.logo-badge {
  display: inline-flex;
  flex-direction: column;
  gap: .1rem;
  border: 2px solid rgba(255, 255, 255, .85);
  padding: 1.4rem 2.2rem;
  margin-bottom: 1.5rem;
}
.logo-line1, .logo-line3 {
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.05;
}
.logo-line2 {
  font-size: clamp(.85rem, 2.4vw, 1.1rem);
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  opacity: .9;
}

.hero-date {
  font-size: clamp(1rem, 2.8vw, 1.3rem);
  letter-spacing: .05em;
  margin: 0 0 2rem;
  opacity: .95;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: clamp(.75rem, 3vw, 1.5rem);
  margin-bottom: 2rem;
}
.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 3.5rem;
}
.countdown-value {
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.countdown-label {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .75;
  margin-top: .3rem;
}
.countdown-done {
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 2rem;
}
.countdown-fallback {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  background: var(--white);
  color: var(--maroon-dark);
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .9rem 2.2rem;
  border-radius: 999px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
}

.social-link {
  display: block;
  margin-top: 1.2rem;
  color: var(--cream);
  text-decoration: none;
  font-size: .95rem;
  letter-spacing: .03em;
  opacity: .85;
}
.social-link:hover { opacity: 1; text-decoration: underline; }

/* Main sections --------------------------------------------------------- */

main {
  background: var(--maroon-dark);
}

section {
  padding: 3.5rem 1.5rem;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 1.8rem;
}

/* Highlights */
.chip-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .7rem;
  margin: 0;
  padding: 0;
}
.chip {
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  padding: .5rem 1.1rem;
  font-size: .85rem;
  letter-spacing: .03em;
}

/* Timetable */
.timetable {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.timetable li {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  padding-bottom: .8rem;
}
.tt-time {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--sunset);
  min-width: 4rem;
  text-align: right;
}
.tt-name { opacity: .95; }

/* Tickets */
.tickets p { margin: 0 0 1.5rem; opacity: .9; }
.vip-hint {
  margin-top: 1.2rem;
  font-size: .9rem;
  opacity: .75;
}

/* Location */
.route-button {
  display: inline-block;
  margin-top: 1rem;
  border: 1px solid rgba(255, 255, 255, .5);
  color: var(--white);
  text-decoration: none;
  padding: .7rem 1.6rem;
  border-radius: 999px;
  font-size: .9rem;
  letter-spacing: .05em;
  transition: background .15s ease, border-color .15s ease;
}
.route-button:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--white);
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 2.5rem 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  background: var(--maroon-dark);
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.site-footer > a {
  color: var(--cream);
  text-decoration: none;
  font-size: .9rem;
  opacity: .85;
}
.site-footer > a:hover { opacity: 1; text-decoration: underline; }

.links {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}
.intern-link {
  display: inline-block;
  padding: .5rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  color: var(--white);
  text-decoration: none;
  font-size: .8rem;
  letter-spacing: .05em;
  opacity: .6;
  transition: background .15s ease, border-color .15s ease, opacity .15s ease;
}
.intern-link:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--white);
  opacity: 1;
}

.copyright {
  margin-top: 1rem;
  font-size: .75rem;
  opacity: .5;
}

@media (max-width: 480px) {
  .countdown { gap: .6rem; }
  .countdown-item { min-width: 3rem; }
}
