:root {
  --black: #121212;
  --near-black: #1a1a1a;
  --dark-card: #1c1c1c;
  --cream: #f3efe7;
  --cream-alt: #ece7dc;
  --ink: #1a1816;
  --muted: #6f6a60;
  --muted-dark: #9c9990;
  --red: #c8202c;
  --red-dark: #a5101c;
  --white: #f7f5f0;

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-label: "Barlow Condensed", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0; padding: 0; margin: -1px;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-label);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 16px 30px;
  font-size: 15px;
  border-radius: 2px;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(18,18,18,0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-label);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
  font-size: 15px;
}
.nav-logo span { color: var(--red); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* Language switch */
.lang-switch {
  display: flex;
  gap: 6px;
}
.lang-switch button {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--muted-dark);
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 5px 9px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.lang-switch button:hover:not(.active) {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.lang-switch button.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.nav-links a {
  font-family: var(--font-label);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted-dark);
  font-weight: 600;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 9px 18px;
  border-radius: 2px;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--white); display: block;
}

/* ---------- Hero (Page 1 style) ---------- */
.hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  padding: 130px 0 0;
  overflow: hidden;
}
.hero-stripes {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    115deg,
    rgba(255,255,255,0.025) 0px,
    rgba(255,255,255,0.025) 1px,
    transparent 1px,
    transparent 10px
  );
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(200,32,44,0.10), transparent 60%);
  pointer-events: none;
}
/* Hero logo image — its own wide wrapper, independent of the 760px text column */
.hero-media {
  position: relative;
  max-width: 1840px;
  margin: 0 auto 32px;
  padding: 0 32px;
  display: flex;
  justify-content: center;
}
.hero-media-frame {
  position: relative;
  min-width: 0;
}
.hero-media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to right, var(--black) 0%, transparent 18%, transparent 82%, var(--black) 100%),
    linear-gradient(to bottom, var(--black) 0%, transparent 22%);
}
.hero-logo-img {
  width: 100%;
  max-width: 1840px;
  height: auto;
}
.hero-pitch {
  position: absolute;
  z-index: 2;
  left: 20px;
  top: auto;
  bottom: 189px;
  transform: none;
  max-width: 38%;
  text-align: left;
  margin: 0;
}
.hero-pitch-main {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(17px, 2.1vw, 27px);
  line-height: 1.4;
  color: var(--white);
  margin: 0 0 12px;
  text-shadow:
    -1.5px -1.5px 0 #000,
    1.5px -1.5px 0 #000,
    -1.5px 1.5px 0 #000,
    1.5px 1.5px 0 #000,
    0 3px 14px rgba(0,0,0,0.85);
}
.hero-pitch-sub {
  font-size: clamp(12px, 1.3vw, 17px);
  line-height: 1.6;
  color: var(--white);
  margin: 0;
  text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000,
    0 2px 12px rgba(0,0,0,0.85);
}

/* Right-side hero CTA: "Gratis proefles" label + WhatsApp button */
.hero-cta-label {
  position: absolute;
  z-index: 2;
  right: 126px;
  bottom: 281px;
  margin: 0;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(17px, 2.1vw, 27px);
  letter-spacing: 0.04em;
  color: var(--white);
  text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000,
    0 2px 10px rgba(0,0,0,0.8);
}
.hero-whatsapp-btn {
  position: absolute;
  z-index: 2;
  right: 135px;
  bottom: 130px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #ffffff;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  transition: background 0.15s ease, transform 0.15s ease;
}
.hero-whatsapp-btn:hover {
  background: #1ebe5b;
  transform: translateY(-1px);
}
.hero-whatsapp-btn .wa-icon {
  width: 18px;
  height: 18px;
  fill: #ffffff;
  flex-shrink: 0;
}

.hero-redbar {
  height: 6px;
  background: var(--red);
}

/* ---------- Sections ---------- */
.section {
  padding: 90px 0;
  background: var(--cream);
}
.section-alt { background: var(--cream-alt); }
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 38px);
  margin: 0 0 18px;
  letter-spacing: 0.01em;
  color: var(--red);
}
.section-title .num { color: var(--red); margin-right: 6px; }
.rule {
  height: 3px;
  background: var(--ink);
  width: 100%;
  margin-bottom: 34px;
}
.lead {
  font-size: 17px;
  line-height: 1.7;
  color: #3a372f;
  max-width: 780px;
  margin: 0 0 48px;
}

/* Rooster */
.rooster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.rooster-day h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 30px;
  color: var(--red);
  margin: 0 0 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
}
.rooster-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(26,24,22,0.14);
}
.rooster-row:last-child { border-bottom: none; }
.rooster-time {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: var(--ink);
}
.rooster-row span:last-child {
  font-size: 15.5px;
  color: #3a372f;
}

/* Image/video + text side-by-side content blocks (Zijn verhaal, Beginners & gevorderden, ...) */
.content-grid {
  display: flex;
  align-items: center;
  gap: 56px;
}
.content-text {
  flex: 1 1 auto;
  min-width: 0;
}
.content-text p {
  font-size: 16.5px;
  line-height: 1.75;
  color: #3a372f;
  margin: 0 0 18px;
}
.content-text p:last-child { margin-bottom: 0; }
.content-media {
  flex: 0 0 42%;
  max-width: 460px;
}
.content-media video,
.content-media img {
  display: block;
  width: 100%;
  height: auto;
  border: 4px solid var(--red);
  box-shadow: 0 0 0 1px #000;
}

/* Boxing Board Retrait brochure button */
#boxing-board-retrait .section {
  padding-top: 36px;
}
.retrait-container {
  text-align: center;
}
.retrait-cta-title {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 24px);
  letter-spacing: 0.02em;
  color: var(--ink);
  margin: 0 0 28px;
}
.retrait-cta-short { display: none; }
.retrait-arrow {
  color: var(--red);
  font-weight: 700;
}
.retraite-link {
  display: block;
  text-decoration: none;
}
.retraite-image {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  margin: 0 auto;
  transition: transform 0.15s ease;
}
.retraite-link:hover .retraite-image { transform: translateY(-3px); }

/* Locatie */
.location-section {
  background: var(--black);
  color: var(--white);
}
.location-section .rule {
  background: var(--red);
}
.location-grid {
  display: flex;
  gap: 56px;
  align-items: stretch;
}
.location-info {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  color: var(--white);
  margin: 0 0 10px;
}
.location-address {
  font-size: 16px;
  line-height: 1.7;
  color: #d8d5cd;
  margin: 0 0 26px;
}
.location-btn {
  align-self: flex-start;
}
.location-map {
  flex: 1 1 auto;
  min-width: 0;
}
.location-map iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: 0;
  filter: grayscale(0.15) contrast(1.05);
}

/* Footer */
.footer {
  background: var(--black);
  color: var(--muted-dark);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-badge {
  position: relative;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
}
.footer-badge-ring {
  position: absolute; inset: 0;
  border: 1.5px solid var(--white);
  border-radius: 50%;
}
.footer-badge span {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 13px;
}
.footer-inner p { font-size: 13px; margin: 0; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { font-size: 13px; }
.footer-links a:hover { color: var(--white); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .content-grid { flex-direction: column; gap: 32px; }
  .content-media { max-width: 100%; flex: none; width: 100%; }
  .rooster-grid { grid-template-columns: 1fr; gap: 32px; }
  .location-grid { flex-direction: column; gap: 28px; }
  .location-info { flex: none; }
  .location-map iframe { height: 280px; }
}

@media (max-width: 760px) {
  .nav-inner { padding: 14px 20px; }
  .nav-logo { font-size: 13px; }
  .nav-right { gap: 12px; }
  .lang-switch button { padding: 5px 7px; font-size: 11px; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 32px 28px;
    gap: 18px;
    display: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-cta { margin-top: 6px; }
  .nav-toggle { display: flex; }

  .hero { padding-top: 110px; }
  .hero-logo-img { max-width: 380px; }
  .hero-media-frame::after { background: none; }
  .hero-media-frame {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-whatsapp-btn {
    order: 1;
    position: static;
    display: flex;
    width: fit-content;
    margin: 20px auto 0;
  }
  .hero-pitch {
    order: 2;
    position: static;
    transform: none;
    z-index: auto;
    max-width: 560px;
    text-align: center;
    margin: 20px auto 0;
  }
  .hero-pitch-main { font-size: 20px; text-shadow: none; }
  .hero-pitch-sub { font-size: 14px; text-shadow: none; }
  .hero-cta-label {
    display: none;
  }
  .retrait-cta-full { display: none; }
  .retrait-cta-short { display: inline; }

  .section { padding: 64px 0; }
}
