@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@300;400;500;600&display=swap');

/* ── EVENT SLIDESHOW ── */
.event-slides { position:absolute;inset:0;z-index:0; }
.event-slide {
  position:absolute;inset:0;
  background-size:contain;
  background-position:center;
  background-repeat:no-repeat;
  opacity:0;
  transition:opacity 1.2s ease;
}
.event-slide.active { opacity:1; }
.edot {
  width:8px;height:8px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,0.3);
  cursor:pointer;
  padding:0;
  transition:background 0.3s;
}
.edot.active { background:var(--orange); transform:scale(1.3); }

:root {
  --orange: #FF5500;
  --orange-dark: #CC4400;
  --orange-light: #FF7733;
  --black: #0A0A0A;
  --black-2: #141414;
  --black-3: #1E1E1E;
  --gray: #2A2A2A;
  --gray-light: #888888;
  --white: #FFFFFF;
  --off-white: #F2F2F2;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.97);
  border-bottom: 1px solid rgba(255,85,0,0.2);
  backdrop-filter: blur(10px);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo span { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a,
.nav-links > li > button {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links > li > a:hover,
.nav-links > li > button:hover { color: var(--orange); }

.nav-links .arrow {
  font-size: 0.65rem;
  transition: transform 0.2s;
}

.nav-links li.open .arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  background: var(--black-2);
  border: 1px solid rgba(255,85,0,0.15);
  border-top: 2px solid var(--orange);
  min-width: 240px;
  display: none;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.dropdown.open { display: flex; }

.dropdown a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--off-white);
  text-decoration: none;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}

.dropdown a:last-child { border-bottom: none; }

.dropdown a:hover {
  background: rgba(255,85,0,0.1);
  color: var(--orange);
  padding-left: 1.6rem;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0A0A0A 0%, #1a0800 50%, #0A0A0A 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(255,85,0,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(255,85,0,0.06) 0%, transparent 40%);
}

.hero-grid {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem;
  width: 100%;
}

.hero-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--orange);
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
  display: block;
}

.hero p {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,85,0,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-lg {
  font-size: 1.15rem;
  padding: 1.2rem 2.5rem;
}

/* ── SECTIONS ── */
section { padding: 5rem 0; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--orange);
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title span { color: var(--orange); }

.section-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  font-weight: 300;
  margin-bottom: 3rem;
}

/* ── EVENT CARDS ── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1px;
  background: rgba(255,85,0,0.1);
  border: 1px solid rgba(255,85,0,0.1);
}

.event-card {
  background: var(--black-2);
  padding: 2.5rem;
  text-decoration: none;
  color: var(--white);
  display: block;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}

.event-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.event-card:hover { background: var(--black-3); }
.event-card:hover::before { transform: scaleX(1); }

.event-card-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.event-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.75rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.event-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.event-card-arrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ── EVENT PAGE HERO ── */
.event-hero {
  padding-top: 70px;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  background: linear-gradient(135deg, #0A0A0A 0%, #1a0800 100%);
  overflow: hidden;
}

.event-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,85,0,0.1) 0%, transparent 60%);
}

.event-hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.event-hero-content .event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.event-meta-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.event-meta-item strong { color: var(--orange); }

.event-hero-content h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 8vw, 7rem);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.event-hero-content h1 span { color: var(--orange); }

/* ── REGISTER BANNER ── */
.register-banner {
  background: var(--orange);
  padding: 1.5rem 2rem;
}

.register-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.register-banner p {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.btn-register {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2rem;
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-register:hover {
  background: transparent;
  color: var(--black);
}

/* ── CONTENT SECTIONS ── */
.content-section {
  padding: 5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.content-section:last-of-type { border-bottom: none; }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.content-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  line-height: 1;
  color: var(--off-white);
  position: sticky;
  top: 90px;
}

.content-label span { color: var(--orange); display: block; }

.content-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--orange);
  margin-bottom: 0.75rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.content-body h3:first-child { margin-top: 0; padding-top: 0; border-top: none; }

.content-body p {
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.content-body ul {
  list-style: none;
  margin-bottom: 1rem;
}

.content-body ul li {
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.25rem;
}

.content-body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 600;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1px;
  background: rgba(255,85,0,0.1);
  border: 1px solid rgba(255,85,0,0.1);
  margin-bottom: 2rem;
}

.stat-box {
  background: var(--black-2);
  padding: 1.5rem;
  text-align: center;
}

.stat-box .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.25rem;
  color: var(--orange);
  line-height: 1;
  display: block;
}

.stat-box .lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 0.35rem;
  display: block;
}

/* ── COMING SOON ── */
.coming-soon {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  padding-top: calc(70px + 4rem);
}

.coming-soon h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(4rem, 12vw, 10rem);
  text-transform: uppercase;
  line-height: 0.9;
  color: var(--white);
}

.coming-soon h1 span { color: var(--orange); display: block; }

.coming-soon p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.4);
  margin-top: 1.5rem;
  font-weight: 300;
}

/* ── MAP ── */
.map-embed {
  width: 100%;
  height: 380px;
  border: 1px solid rgba(255,85,0,0.15);
  filter: grayscale(40%) contrast(1.1);
}

/* ── VIDEO ── */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--black-2);
}

.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ── CONTACT FORM ── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.form-group input,
.form-group textarea {
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

/* ── MEDIA PAGE ── */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  gap: 2rem;
}

.media-card { }

.media-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 1rem;
  color: var(--white);
}

/* ── FOOTER ── */
footer {
  background: var(--black-2);
  border-top: 1px solid rgba(255,85,0,0.15);
  padding: 3rem 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
  margin-top: 0.75rem;
  max-width: 280px;
  line-height: 1.6;
}

.footer-brand .logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-brand .logo-text span { color: var(--orange); }

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.5rem; }

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--orange); }

.footer-bottom {
  max-width: 1280px;
  margin: 2rem auto 0;
  padding: 1.5rem 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.2);
  font-weight: 300;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--black-2); padding: 1rem 0; border-bottom: 2px solid var(--orange); }
  .nav-links.open { display: flex; }
  .nav-links > li > a, .nav-links > li > button { padding: 0.75rem 1.5rem; width: 100%; justify-content: space-between; }
  .dropdown { position: static; border: none; border-top: 1px solid rgba(255,85,0,0.1); display: none; box-shadow: none; min-width: unset; }
  .dropdown.open { display: flex; }
  .dropdown a { padding-left: 2.5rem; }
  .hamburger { display: flex; }
  .content-grid { grid-template-columns: 1fr; gap: 2rem; }
  .content-label { position: static; font-size: 2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .form-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }
  .register-banner-inner { flex-direction: column; align-items: flex-start; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
}
