/* ============================================================
   BASE — variables, reset, shared elements (buttons, sections)
   ============================================================ */
:root {
  --yellow: #F5C800;
  --yellow-dim: #c9a300;
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #222222;
  --white: #f0f0f0;
  --grey: #888;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  cursor: default;
}

/* Noise overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 1;
}

/* ─── Section scaffolding ─── */
section:not(.hero):not(.schedule) { padding: 100px 5%; }

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 16px;
}
.section-label::before {
  content: ''; display: block; width: 24px; height: 1px; background: var(--yellow);
}
.section-title {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1; letter-spacing: -0.02em;
  color: var(--white); margin-bottom: 20px;
}
.section-title .accent { color: var(--yellow); }

/* ─── Shared buttons ─── */
.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 16px 36px;
  background: var(--yellow); color: var(--black);
  border: none; cursor: pointer;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all 0.25s;
  text-decoration: none; display: inline-block;
}
.btn-primary:hover {
  background: #fff; transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,200,0,0.25);
}
.btn-secondary {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 15px 32px;
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.25); cursor: pointer;
  transition: all 0.25s; text-decoration: none; display: inline-block;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}
.btn-secondary:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-dark {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 16px 40px;
  background: var(--black); color: var(--yellow);
  border: none; cursor: pointer;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all 0.25s; text-decoration: none;
  display: inline-block; position: relative;
}
.btn-dark:hover { background: var(--dark2); transform: translateY(-2px); }

/* ─── Scroll-in animation ─── */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── Responsive shared ─── */
@media (max-width: 760px) {
  /* Tighter section padding on phones */
  section:not(.hero):not(.schedule) { padding: 64px 6%; }
  .section-title { font-size: clamp(2rem, 8vw, 3rem); }
  .btn-primary, .btn-secondary, .btn-dark { padding: 14px 26px; font-size: 0.85rem; }
}
@media (max-width: 420px) {
  section:not(.hero):not(.schedule) { padding: 52px 6%; }
}
