/* ===== Gorilla Gym Almelo — One Pager ===== */

:root {
  --black: #0a0a0a;
  --black-soft: #131313;
  --black-alt: #191919;
  --gray-border: #2a2a2a;
  --white: #f5f5f5;
  --white-dim: #b8b8b8;
  --yellow: #f5a623;
  --orange: #ef8f1c;
  --red: #d62828;
  --font-display: "Anton", "Barlow Condensed", sans-serif;
  --font-cond: "Barlow Condensed", sans-serif;
  --font-body: "Barlow", sans-serif;
  --radius: 16px;
  --container: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #161000;
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.35);
}

.btn-primary:hover { transform: translateY(-2px); }

.btn-lg { padding: 18px 40px; font-size: 1.1rem; }

.btn-nav {
  display: none;
  font-size: 0.85rem;
  padding: 10px 20px;
}

@media (min-width: 721px) {
  .btn-nav { display: inline-flex; }
}

.btn-whatsapp {
  background: #25d366;
  color: #06210f;
  font-size: 1.05rem;
  padding: 16px 32px;
}

.btn-whatsapp svg { width: 22px; height: 22px; }

/* ---------- Tags ---------- */
.tag {
  display: inline-block;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
}

.tag-all { background: linear-gradient(135deg, var(--yellow), var(--orange)); color: #1a1200; }
.tag-kids { background: var(--red); color: #fff; }
.tag-lg { font-size: 0.95rem; padding: 8px 18px; border-radius: 8px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 20px;
}

.brand-logo { height: 72px; width: auto; }

.main-nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
  margin-right: 32px;
}

.main-nav a {
  font-family: var(--font-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  color: var(--white-dim);
  transition: color 0.15s ease;
}

.main-nav a:hover { color: var(--yellow); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  padding: 72px 0 88px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(245, 166, 35, 0.12), transparent 60%),
    linear-gradient(180deg, #000 0%, #131313 100%);
  border-bottom: 1px solid var(--gray-border);
}

.hero-logo {
  width: 190px;
  height: auto;
  margin: 0 auto 20px;
}

.hero-eyebrow {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--yellow);
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0 0 6px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 8vw, 5rem);
  letter-spacing: 0.02em;
  margin: 0 0 18px;
  background: linear-gradient(135deg, #fff, var(--yellow) 120%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  max-width: 560px;
  margin: 0 auto 32px;
  color: var(--white-dim);
  font-size: 1.05rem;
}

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-alt { background: var(--black-soft); border-top: 1px solid var(--gray-border); border-bottom: 1px solid var(--gray-border); }

.section-eyebrow {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--yellow);
  font-weight: 600;
  font-size: 0.85rem;
  margin: 0 0 8px;
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 2.8rem);
  text-align: center;
  margin: 0 0 48px;
  letter-spacing: 0.01em;
}

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

/* ---------- Card grid (aanbod) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card {
  background: var(--black-alt);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: circle(46% at 50% 50%);
  transform: scale(1.08);
}

.card-body { padding: 22px; flex: 1; }

.card-body h3 {
  font-family: var(--font-cond);
  text-transform: uppercase;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 0 0 10px;
  color: var(--yellow);
}

.card-body p {
  margin: 0;
  color: var(--white-dim);
  font-size: 0.92rem;
}

/* ---------- Lesrooster ---------- */
.schedule {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.schedule-day {
  background: var(--black-alt);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 22px 24px;
}

.schedule-day h3 {
  font-family: var(--font-cond);
  text-transform: uppercase;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--white);
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 8px;
}

.schedule-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 8px 0;
}

.schedule-row + .schedule-row { border-top: 1px dashed var(--gray-border); }

.schedule-name {
  flex: 1;
  min-width: 160px;
  font-size: 0.95rem;
  color: var(--white-dim);
}

.schedule-time {
  font-family: var(--font-cond);
  font-weight: 700;
  color: var(--yellow);
  white-space: nowrap;
}

.schedule-row-empty .schedule-name {
  color: #666;
  font-style: italic;
}

/* Callout boxes */
.callout-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.callout {
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.14), rgba(245, 166, 35, 0.02));
  border: 1px solid rgba(245, 166, 35, 0.35);
  border-radius: var(--radius);
  padding: 28px;
}

.callout .tag-lg { margin-bottom: 14px; }

.callout p {
  margin: 0;
  color: var(--white-dim);
  font-size: 0.98rem;
}

/* ---------- Trainer & Testimonial ---------- */
.trainer-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

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

.trainer-photo img,
.testimonial-photo img {
  border-radius: var(--radius);
  border: 2px solid var(--yellow);
  width: 100%;
  object-fit: cover;
}

.trainer-photo img { filter: grayscale(1); }

.trainer-content .section-eyebrow,
.trainer-content .section-title,
.testimonial-content .section-eyebrow,
.testimonial-content .section-title {
  text-align: left;
  margin-bottom: 8px;
}

.trainer-content .section-title { margin-bottom: 24px; }

blockquote {
  margin: 0 0 28px;
  padding-left: 20px;
  border-left: 3px solid var(--yellow);
  color: var(--white-dim);
  font-size: 1.02rem;
  font-style: italic;
}

blockquote strong { color: var(--white); font-style: normal; }

blockquote footer {
  margin-top: 14px;
  font-style: normal;
  font-weight: 700;
  color: var(--yellow);
}

.trainer-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--yellow);
}

.trainer-phone svg { width: 20px; height: 20px; }

.testimonial-content p { color: var(--white-dim); font-size: 1.02rem; }

/* ---------- Champions ---------- */
.champions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.champion-card {
  background: var(--black-alt);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.champion-media { aspect-ratio: 4 / 3; overflow: hidden; }

.champion-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.champion-body { padding: 24px 26px; }

.champion-tag {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--yellow);
  margin: 0 0 6px;
}

.champion-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  margin: 0;
}

.champion-body h3 span { color: var(--yellow); }

/* ---------- Contact / CTA ---------- */
.cta-section { text-align: center; }

.cta-sub {
  color: var(--white-dim);
  margin: 0 0 48px;
  font-size: 1.05rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  text-align: left;
  background: var(--black-alt);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 1.15rem;
}

.contact-row svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--yellow); }

.contact-qr {
  text-align: center;
  justify-self: center;
}

.contact-qr img {
  width: 160px;
  height: 160px;
  border-radius: 12px;
  margin: 0 auto 12px;
}

.contact-qr p {
  font-family: var(--font-cond);
  text-transform: uppercase;
  font-weight: 700;
  color: var(--yellow);
  margin: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--gray-border);
  padding: 40px 0;
  background: var(--black);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo { height: 64px; width: auto; }

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.92rem;
  color: var(--white-dim);
}

.footer-info a { color: var(--yellow); font-weight: 600; }

.footer-copy {
  width: 100%;
  text-align: center;
  margin: 20px 0 0;
  font-size: 0.8rem;
  color: #666;
  border-top: 1px solid var(--gray-border);
  padding-top: 20px;
}

/* ---------- Credit bar ---------- */
.credit-bar {
  background: #050505;
  border-top: 1px solid var(--gray-border);
  padding: 16px 0;
}

.credit-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.credit-bar-inner p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--white-dim);
}

.credit-bar-inner strong { color: var(--white); }

.credit-logo { height: 18px; width: auto; opacity: 0.85; transition: opacity 0.15s ease; }

.credit-bar-inner a:hover .credit-logo { opacity: 1; }

/* ---------- WhatsApp floating button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  z-index: 200;
}

.whatsapp-float svg { width: 32px; height: 32px; color: #06210f; }

/* ================= Responsive ================= */
@media (max-width: 900px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .schedule { grid-template-columns: 1fr; }
  .callout-grid { grid-template-columns: 1fr; }
  .champions-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .trainer-grid,
  .testimonial-grid { grid-template-columns: 1fr; gap: 32px; }
  .trainer-photo, .testimonial-photo { max-width: 360px; margin: 0 auto; }
  .trainer-content, .testimonial-content { text-align: center; }
  .trainer-content .section-eyebrow, .trainer-content .section-title,
  .testimonial-content .section-eyebrow, .testimonial-content .section-title { text-align: center; }
  blockquote { text-align: left; }
  .trainer-phone { margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; }
  .contact-info { align-items: center; }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }

  .main-nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--black-soft);
    border-bottom: 1px solid var(--gray-border);
    padding: 16px 24px 24px;
    gap: 18px;
  }

  .card-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .section { padding: 64px 0; }
  .hero { padding: 56px 0 64px; }
}
