/* ===========================
       Design System / Variables
       =========================== */
:root {
  --orange: #ff6a00;
  --orange-600: #e65a00;
  --black: #111114;
  --dark-gray: #2b2b2f;
  --mid-gray: #6d6d73;
  --muted: #9aa0a6;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.06);
  --max-width: 1200px;
  --radius-lg: 16px;
  --radius-md: 10px;
  --shadow-1: 0 6px 24px rgba(16, 18, 20, 0.12);
  --shadow-2: 0 8px 36px rgba(16, 18, 20, 0.14);
  --accent: var(--orange);
  --font-sans: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  --font-display: "Bebas Neue", sans-serif;
  --nav-height: 72px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--dark-gray);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: linear-gradient(180deg, #fff, #fbfbfc 60%);
  line-height: 1.5;
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

/* ===========================
       Header / Nav
=========================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  z-index: 999;
  transition: all 0.28s cubic-bezier(0.2, 0.9, 0.2, 1);
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Maintain white when scrolled */
header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Text & Links */
.nav-link,
.brand-info strong,
.brand-info small {
  color: #111 !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--orange);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .logo {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 768px) {
  .logo {
    width: 54px;
    height: 54px;
  }
}

/* Brand text */
.brand-info {
  color: #111;
  line-height: 1;
}

.brand-info small {
  display: block;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.65);
}

/* Nav layout */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ========== NAVIGATION ========== */
nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Desktop links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: #111;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--orange);
}

.container.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Primary Button (Buy Tickets) */
.btn-primary {
  background: linear-gradient(135deg, #ff6a00, #ff8a3a);
  color: #111;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.25);
}

/* Hamburger button */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  color: #111;
  font-size: 26px;
  cursor: pointer;
}

/* ========== MOBILE DRAWER ========== */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #fff;
  color: #111;
  box-shadow: -4px 0 18px rgba(0, 0, 0, 0.15);
  z-index: 1200;
  padding: 60px 24px 20px;
  display: flex;
  flex-direction: column;
  transition: right 0.35s ease;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 26px;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Mobile nav links */
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
}

.mobile-nav a {
  color: #111;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.mobile-nav a:hover {
  color: var(--orange);
}

.mobile-btn {
  margin-top: 20px;
  background: linear-gradient(135deg, #ff6a00, #ff8a3a);
  padding: 10px 14px;
  border-radius: 8px;
  text-align: center;
  color: #111;
  font-weight: 700;
}

/* Responsive behaviour */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }
}


/* ===========================
       HERO
=========================== */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding-top: calc(var(--nav-height) + 20px);
  padding-bottom: 40px;
  color: var(--white);
  overflow: hidden;
  background: var(--black);background: linear-gradient(
      180deg,
      rgba(17, 17, 20, 0.4),
      rgba(17, 17, 20, 0.75)
    ),
    url("../../images/main-image.jpg") center center / cover no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
/* =============================
   HERO BACKGROUND MOTION
   ============================= */
.hero::before {
  background: linear-gradient(180deg, rgba(17, 17, 20, 0.4), rgba(17, 17, 20, 0.75));
}

/* A subtle floating animation for desktop only */
@keyframes heroFloat {
  0% {
    background-position: center center;
  }
  50% {
    background-position: center 48%;
  }
  100% {
    background-position: center center;
  }
}

@media (min-width: 1024px) {
  .hero::before {
    animation: heroFloat 16s ease-in-out infinite;
  }
}


/* Layout container */
.hero-inner {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: center;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 80px 24px;
}

/* Left column (text) */
.hero-left {
  background: rgba(255, 255, 255, 0.04);
  padding: 36px;
  border-radius: 16px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.kicker {
  display: inline-block;
  background: var(--orange);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
  margin: 16px 0 8px;
  letter-spacing: 1px;
}

.subtitle {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  max-width: 55ch;
}

/* Event details */
.meta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.meta {
  background: rgba(255, 255, 255, 0.06);
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 140px;
  text-align: center;
}

.meta strong {
  display: block;
  font-size: 1.15rem;
  color: #fff;
}

.meta span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Buttons row */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  align-items: center;
}

.cta-row .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  padding: 13px 20px;
  background: linear-gradient(135deg, #ff6a00, #ff8a3a);
  color: #111;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 18px rgba(255, 106, 0, 0.22);
  transition: all 0.25s ease;
  text-decoration: none;
}

.cta-row .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 106, 0, 0.35);
}

/* Countdown */
.countdown {
  margin-top: 28px;
  display: flex;
  gap: 10px;
  align-items: center;
  background: rgba(0, 0, 0, 0.28);
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: max-content;
}

.countdown .item {
  text-align: center;
  padding: 6px 12px;
  min-width: 60px;
}

.countdown .num {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--orange);
}

.countdown small {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Right column (poster) */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}

.poster {
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-height: 100%;
}

.poster img {
  width: 100%;
  height: auto;
  object-fit: contain; 
  display: block;
}


.poster-cta {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.3);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

/* =============================
   RESPONSIVE ADJUSTMENTS
   ============================= */
/* Tablets (<= 1024px) */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 320px;
    gap: 28px;
    padding: 60px 20px;
  }

  .hero-left {
    padding: 28px;
  }

  /* poster scales naturally */
  .poster {
    width: 100%;
    max-height: 480px;
    aspect-ratio: auto;
  }

  .poster img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

/* Mobile (<= 768px) */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 40px 16px 60px;
    text-align: center;
  }

  .hero-left {
    background: rgba(17, 17, 20, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
    backdrop-filter: blur(4px);
    padding: 20px;
  }

  .hero-right {
    order: -1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .poster {
    width: 100%;
    max-width: 280px; /* ✅ shrink image to fit viewport */
    margin: 0 auto;
  }

  .poster img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .poster-cta {
    justify-content: center;
    padding: 10px 12px;
    font-size: 0.8rem;
  }

  .title {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
    line-height: 1.1;
  }

  .subtitle {
    font-size: 0.95rem;
  }

  .meta-grid,
  .cta-row {
    justify-content: center;
  }

  .countdown {
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
  }

  .countdown .item {
    min-width: 54px;
    padding: 4px 8px;
  }
}


/* Small phones (<= 480px) */
@media (max-width: 480px) {
  .hero-inner {
    padding: 32px 12px 50px;
  }

  .hero-left {
    padding: 0px;
  }

  .poster {
    max-width: 240px;
  }

  .cta-row .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .countdown {
    padding: 10px;
  }

  .countdown .num {
    font-size: 1.3rem;
  }

  .meta {
    min-width: 100%;
  }

  .hero .title {
    font-size: 1.6rem;
  }
}



/* ===========================
            About Section
        =========================== */
.about-section {
  position: relative;
  background: #fafafa;
  color: #333;
  padding: 100px 0;
  overflow: hidden;
}

.about-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(
    180deg,
    rgba(250, 250, 250, 0) 0%,
    rgba(240, 240, 240, 1) 100%
  );
}

.about-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
  position: relative;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #222;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.section-title span {
  color: #ff6a00;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ff6a00;
  margin: 12px auto 0;
  border-radius: 2px;
}

.lead {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-top: 16px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
  position: relative;
}

.about-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 32px 26px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  position: relative;
}

.about-card:hover {
  transform: translateY(-6px);
  border-color: #ff6a00;
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.15);
}

.about-card .icon-wrap {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    145deg,
    rgba(255, 106, 0, 0.15),
    rgba(255, 255, 255, 0.9)
  );
  border-radius: 50%;
  border: 2px solid rgba(255, 106, 0, 0.25);
  box-shadow: 0 4px 14px rgba(255, 106, 0, 0.08);
  transition: all 0.3s ease;
}

.about-card:hover .icon-wrap {
  background: linear-gradient(
    145deg,
    rgba(255, 106, 0, 0.25),
    rgba(255, 255, 255, 1)
  );
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(255, 106, 0, 0.15);
}

.about-card .icon-wrap i {
  color: #ff6a00;
  font-size: 26px;
  transition: color 0.3s ease;
  text-shadow: 0 0 8px rgba(255, 106, 0, 0.4);
}

.about-card:hover .icon-wrap i {
  color: #e65a00;
}

.about-card h3 {
  margin: 10px 0;
  font-size: 1.2rem;
  color: #222;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.about-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/*===========================
           Event Info Section
       =========================== */
/* Section base */
.event-section {
  background: linear-gradient(180deg, #ffffff, #fbfbfb);
  padding: 90px 0;
}

/* Header */
.event-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 26px;
}

.event-header .section-title {
  color: #222;
}

.event-header .lead {
  color: #555;
}

/* Chips */
.event-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 14px auto 22px;
  max-width: 900px;
}

.chip {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: #333;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.chip-icon {
  margin-right: 8px;
}

/* Route toggle */
.route-toggle {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 6px auto 18px;
}

.toggle-btn {
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  color: #333;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: 0.25s;
}

.toggle-btn:hover {
  border-color: #ff6a00;
  box-shadow: 0 4px 14px rgba(255, 106, 0, 0.12);
}

.toggle-btn.is-active {
  background: linear-gradient(135deg, #ff6a00, #ff8a3a);
  color: #111;
  border-color: transparent;
}

/* Panels */
.route-panels {
  margin-top: 8px;
}

.route-panel {
  transition: opacity 0.25s ease;
}

.route-panel:not(.is-active) {
  opacity: 0;
}

/* Cards grid */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 10px;
}

.card {
  flex: 1;
  min-width: 260px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.card h3 {
  margin: 0 0 8px;
  color: #111;
  font-size: 18px;
}

.card .muted {
  color: #555;
}

/* Notice bar */
.event-notice {
  margin: 22px 0 6px;
  padding: 12px 14px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(255, 106, 0, 0.1),
    rgba(255, 255, 255, 0.9)
  );
  border: 1px solid rgba(255, 106, 0, 0.25);
  color: #333;
}

/* Map + CTA row */
.event-cta-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 16px;
}

.map-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.map-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.map-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
}

.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #111;
  background: linear-gradient(135deg, #ffefdf, #fff);
  border: 1px solid rgba(255, 106, 0, 0.25);
  border-radius: 999px;
  padding: 6px 10px;
}

/* CTA stack */
.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, #ff6a00, #ff8a3a);
  color: #111;
  border: none;
  border-radius: 12px;
  padding: 14px 18px;
  font-weight: 800;
  letter-spacing: 0.3px;
  box-shadow: 0 10px 26px rgba(255, 106, 0, 0.16);
  text-decoration: none;
  transition: 0.25s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 106, 0, 0.22);
}

.btn-secondary {
  background: transparent;
  color: #333;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 600;
  transition: 0.25s;
}

.btn-secondary:hover {
  border-color: #ff6a00;
  box-shadow: 0 6px 18px rgba(255, 106, 0, 0.12);
}

/* Ghost (for map) */
.btn-ghost {
  background: #fff;
  color: #333;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 600;
  transition: 0.25s;
  cursor: pointer;
}

.btn-ghost:hover {
  border-color: #ff6a00;
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.12);
}

/* Responsive */
@media (max-width: 920px) {
  .event-cta-row {
    grid-template-columns: 1fr;
  }

  .map-card img {
    height: 260px;
  }
}

/*===========================
           Contact Section 
         =========================== */

.contact-section {
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
  padding: 100px 0;
}

.contact-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.contact-card,
.contact-form-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  padding: 32px;
  transition: all 0.3s ease;
}

.contact-card:hover,
.contact-form-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 26px rgba(255, 106, 0, 0.08);
}

.contact-card h3,
.contact-form-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #222;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.contact-card .muted,
.contact-form-card .muted {
  color: #555;
  font-size: 0.95rem;
}

.contact-card a {
  color: #ff6a00;
  text-decoration: none;
  font-weight: 500;
}

.contact-card a:hover {
  text-decoration: underline;
}

.divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin: 16px 0;
}

.socials {
  margin: 16px 0;
  display: flex;
  gap: 10px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 106, 0, 0.08);
  color: #ff6a00;
  border-radius: 50%;
  font-size: 16px;
  transition: all 0.25s ease;
}

.socials a:hover {
  background: #ff6a00;
  color: #fff;
  transform: translateY(-2px);
}

.cta-space {
  margin-top: 16px;
}

/* Form styling */
.contact-form-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  font-size: 15px;
  color: #333;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.input-group textarea {
  resize: vertical;
  min-height: 120px;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #ff6a00;
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.15);
  outline: none;
}

.btn-send {
  background: linear-gradient(135deg, #ff6a00, #ff8a3a);
  color: #111;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.16);
}

.btn-send:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(255, 106, 0, 0.22);
}

/* ===========================
       Sections
       =========================== */
main {
  margin-top: 0;
}

section {
  padding: 72px 20px;
  background: linear-gradient(180deg, #fff, #fff);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

h2.section-title {
  font-size: 24px;
  margin: 0 0 10px;
  color: var(--black);
}

p.lead {
  color: var(--mid-gray);
  margin: 0 0 18px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: var(--white);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(16, 18, 20, 0.04);
  box-shadow: 0 6px 20px rgba(19, 21, 24, 0.04);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--dark-gray);
}

.card p {
  margin: 0;
  color: var(--muted);
}

/* gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-grid .thumb {
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-grid .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-grid .thumb:hover img {
  transform: scale(1.06);
}

/* sponsors marquee */
.sponsors {
  background: linear-gradient(180deg, #fff, #fafafa);
  padding: 32px 0;
}

.marquee {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 40px;
  align-items: center;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.marquee img {
  height: 56px;
  opacity: 0.95;
  filter: grayscale(0.03);
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-40%);
  }
}

/* contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 18px;
  align-items: start;
}

form {
  display: grid;
  gap: 12px;
}

input,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(16, 18, 20, 0.06);
  font-size: 14px;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.btn-send {
  background: var(--accent);
  color: white;
  padding: 12px;
  border-radius: 10px;
  border: 0;
  font-weight: 700;
}

/* footer */
footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 28px 20px;
}

footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

/* responsive */
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr 380px;
    padding: 46px 18px;
  }

  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 34px 16px;
    gap: 16px;
  }

  .title {
    font-size: 40px;
  }

  nav ul {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hero-right {
    order: 2;
  }

  .gallery-grid .thumb {
    height: 140px;
  }
}

/* mobile nav drawer */
.mobile-drawer {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  width: 300px;
  background: linear-gradient(180deg, #0f0f11, #121214);
  padding: 20px;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.4);
  transform: translateX(110%);
  transition: transform 0.28s;
  z-index: 1200;
  color: white;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer a {
  display: block;
  padding: 12px 10px;
  color: white;
  text-decoration: none;
}

/* small utilities */
.muted {
  color: var(--muted);
}

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* ===========================
       Rules Section
  =========================== */

.rules-section {
  background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
  padding: 90px 0;
  position: relative;
}

.rules-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 50px;
}

.rules-header .section-title {
  color: #222;
  font-weight: 700;
}

.rules-header .lead {
  color: #555;
}

/* Ordered list */
.rules-list {
  max-width: 820px;
  margin: 0 auto;
  padding-left: 0;
  counter-reset: rule-num;
  list-style: none;
}

.rules-list li {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  margin-bottom: 18px;
  padding: 18px 18px 18px 60px;
  font-size: 0.96rem;
  color: #444;
  line-height: 1.6;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.rules-list li::before {
  counter-increment: rule-num;
  content: counter(rule-num);
  position: absolute;
  top: 18px;
  left: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6a00, #ff8a3a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display, "Bebas Neue", sans-serif);
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.2);
}

.rules-list li:hover {
  transform: translateY(-3px);
  border-color: #ff6a00;
  box-shadow: 0 10px 24px rgba(255, 106, 0, 0.12);
}

/* Info note */
.rules-note {
  max-width: 800px;
  margin: 50px auto 0;
  background: linear-gradient(
    90deg,
    rgba(255, 106, 0, 0.08),
    rgba(255, 255, 255, 0.9)
  );
  border: 1px solid rgba(255, 106, 0, 0.25);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.rules-note i {
  color: #ff6a00;
  font-size: 22px;
  margin-top: 3px;
}

.rules-note p {
  margin: 0;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 720px) {
  .rules-list li {
    padding: 18px 16px 18px 50px;
  }

  .rules-list li::before {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .rules-note {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ===========================
       Info Section
=========================== */
.event-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
  padding: 100px 0;
}

.event-header {
  text-align: center;
  margin-bottom: 40px;
}

.event-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
  padding: 0;
  list-style: none;
}

.event-highlights li {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 15px;
  color: #333;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.event-highlights li:hover {
  transform: translateY(-3px);
  border-color: #ff6a00;
  box-shadow: 0 10px 24px rgba(255, 106, 0, 0.12);
}

.route-toggle {
  text-align: center;
  margin-bottom: 26px;
}

.route-toggle .toggle-btn {
  margin: 0 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  color: #333;
  transition: 0.25s;
}

.route-toggle .toggle-btn.is-active {
  background: linear-gradient(135deg, #ff6a00, #ff8a3a);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.25);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: #ff6a00;
  box-shadow: 0 10px 28px rgba(255, 106, 0, 0.12);
}

.icon-wrap {
  font-size: 20px;
  margin-bottom: 8px;
}

.event-note {
  margin-top: 40px;
  background: rgba(255, 106, 0, 0.08);
  border-left: 4px solid #ff6a00;
  padding: 14px 18px;
  border-radius: 10px;
  color: #333;
  font-size: 15px;
  line-height: 1.6;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.event-map-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  margin-top: 50px;
  align-items: center;
}

.map-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  position: relative;
}

.map-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge {
  background: #fff;
  color: #111;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 106, 0, 0.25);
}

.cta-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

@media (max-width: 920px) {
  .event-map-row {
    grid-template-columns: 1fr;
  }
  .map-card img {
    height: 260px;
  }
}

/* ===========================
       Sponsors Section
  =========================== */

.sponsors-section {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.sponsors-header {
  text-align: center;
  margin-bottom: 40px;
}

.sponsors-header .section-title {
  color: #222;
  margin-bottom: 10px;
}

.sponsors-header .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ff6a00;
  margin: 12px auto 0;
  border-radius: 2px;
}

.sponsors-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin: 40px auto;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.sponsors-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: scrollLeft 25s linear infinite alternate;
  will-change: transform;
}

.sponsors-track img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.9);
  opacity: 0.85;
  transition: all 0.4s ease;
}

.sponsors-track img:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Optional glow underneath */
.sponsors-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.1), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

/* CTA styling */
.sponsors-cta {
  text-align: center;
  margin-top: 50px;
}

.sponsors-cta p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 14px;
}

.sponsors-cta .btn-secondary {
  background: transparent;
  color: #ff6a00;
  border: 2px solid #ff6a00;
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.sponsors-cta .btn-secondary:hover {
  background: #ff6a00;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(255, 106, 0, 0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .sponsors-track img {
    height: 46px;
  }
  .sponsors-marquee {
    mask-image: linear-gradient(
      to right,
      transparent,
      black 8%,
      black 92%,
      transparent
    );
  }
}

.sponsors-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.1), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.sponsors-header .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ff6a00;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ===========================
       Contact Section
  =========================== */

.contact-section {
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
  padding: 100px 0;
  position: relative;
}

.contact-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.contact-header .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ff6a00;
  margin: 12px auto 0;
  border-radius: 2px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 36px;
  align-items: start;
}

.contact-card,
.contact-form-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
  padding: 36px;
  transition: all 0.3s ease;
}

.contact-card:hover,
.contact-form-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(255, 106, 0, 0.1);
}

.contact-card h3,
.contact-form-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 12px;
}

.contact-card .muted,
.contact-form-card .muted {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-card a {
  color: #ff6a00;
  font-weight: 500;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.socials {
  display: flex;
  gap: 12px;
  margin: 18px 0;
}

.socials a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 106, 0, 0.08);
  color: #ff6a00;
  border-radius: 50%;
  font-size: 17px;
  transition: all 0.3s ease;
}

.socials a:hover {
  background: #ff6a00;
  color: #fff;
  transform: translateY(-2px);
}

/* Form styling */
.contact-form-card form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  font-size: 15px;
  color: #333;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #ff6a00;
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.12);
  outline: none;
}

.btn-send {
  background: linear-gradient(135deg, #ff6a00, #ff8a3a);
  color: #111;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 14px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.16);
}

.btn-send:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 106, 0, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, #ff6a00, #ff8a3a);
  color: #111;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.16);
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 106, 0, 0.25);
}

/* Responsive */
@media (max-width: 920px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-card,
  .contact-form-card {
    padding: 28px;
  }
}
.contact-card svg,
.contact-form-card svg {
  transition: transform 0.3s ease;
}
.contact-card h3:hover svg,
.contact-form-card h3:hover svg {
  transform: rotate(-8deg) scale(1.1);
}
.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.08), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}


/* =========================
   Toast Notification
   ========================= */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #111;
  color: #fff;
  padding: 14px 18px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.2, 1);
  z-index: 9999;
  font-size: 0.95rem;
}

.toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.toast svg {
  fill: #ff6a00;
}

@media (max-width: 640px) {
  .toast {
    left: 50%;
    transform: translate(-50%, 20px);
    right: auto;
  }
  .toast.show {
    transform: translate(-50%, 0);
  }
}
