/* ClubBaas Website — UI kit styles */
@import url('./tokens.css');

* { box-sizing: border-box; }
body { margin: 0; background: var(--bg-1); font-family: var(--font-body); color: var(--fg-1); -webkit-font-smoothing: antialiased; }

.acid { color: var(--cb-acid); }

/* ---------- Header ---------- */
.cb-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 64px);
  background: rgba(17,22,28,0.85); backdrop-filter: blur(16px);
  color: var(--cb-bone);
}
.cb-header__logo { cursor: pointer; }
.cb-header__logo img { height: 48px; display: block; }
.cb-header__actions { display: flex; align-items: center; gap: 14px; }
.cb-night-toggle {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.06); color: var(--cb-bone);
  border: 1px solid rgba(255,255,255,0.14); border-radius: 999px;
  padding: 8px 14px; font-family: var(--font-body); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: background .15s, border-color .15s, color .15s;
}
.cb-night-toggle:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.28); }
.cb-night-toggle.is-on { background: rgba(216,255,61,0.16); border-color: rgba(216,255,61,0.5); color: var(--cb-acid); }
.cb-night-toggle svg { display: block; }
@media (max-width: 560px) { .cb-night-toggle span { display: none; } .cb-night-toggle { padding: 8px; } }
.cb-header__nav { display: flex; gap: 28px; align-items: center; }
.cb-header__nav a { color: var(--cb-bone); font-size: 14px; font-weight: 500; cursor: pointer; transition: color .15s; }
.cb-header__nav a:hover, .cb-header__nav a.is-active { color: var(--cb-acid); }

/* Nav dropdowns */
.cb-nav-group { position: relative; }
.cb-nav-group__trigger {
  background: transparent; border: 0; padding: 0;
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--cb-bone); font-family: var(--font-body); font-size: 14px; font-weight: 500;
  cursor: pointer; transition: color .15s;
}
.cb-nav-group__trigger svg { transition: transform .2s var(--ease-out); opacity: .7; }
.cb-nav-group.is-open .cb-nav-group__trigger svg { transform: rotate(180deg); }
.cb-nav-group__trigger:hover, .cb-nav-group__trigger.is-active, .cb-nav-group.is-open .cb-nav-group__trigger { color: var(--cb-acid); }
.cb-nav-dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
  background: var(--cb-ink); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 8px; min-width: 280px;
  display: flex; flex-direction: column; gap: 2px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  z-index: 60; animation: cb-dropdown-in .18s var(--ease-out);
}
.cb-nav-dropdown::before {
  content: ''; position: absolute; left: 0; right: 0; top: -14px; height: 14px;
}
.cb-nav-dropdown::after {
  content: ''; position: absolute; left: 50%; top: -6px; transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px; background: var(--cb-ink); border-left: 1px solid rgba(255,255,255,0.08); border-top: 1px solid rgba(255,255,255,0.08);
}
.cb-nav-dropdown a {
  display: flex; flex-direction: column; padding: 10px 14px; border-radius: 8px; cursor: pointer;
  transition: background .15s;
}
.cb-nav-dropdown a:hover, .cb-nav-dropdown a.is-active { background: rgba(255,255,255,0.05); }
.cb-nav-dropdown a strong { color: var(--cb-bone); font-size: 14px; font-weight: 600; line-height: 1.3; }
.cb-nav-dropdown a:hover strong, .cb-nav-dropdown a.is-active strong { color: var(--cb-acid); }
.cb-nav-dropdown a small { color: #7C7872; font-size: 12px; margin-top: 2px; }
@keyframes cb-dropdown-in { from { opacity: 0; transform: translateX(-50%) translateY(-6px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }

/* ---------- Hero ---------- */
.cb-hero { position: relative; background: var(--cb-onyx); color: var(--cb-bone); overflow: hidden; }
.cb-hero__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(251,77,10,0.26), transparent 70%);
  pointer-events: none;
}
.cb-hero__inner {
  position: relative;
  display: grid; grid-template-columns: 7fr 5fr; gap: 56px;
  max-width: var(--container); margin: 0 auto;
  padding: clamp(48px, 6vw, 96px) clamp(20px, 4vw, 64px);
  align-items: center;
}
.cb-hero__copy .eyebrow { color: var(--cb-acid); margin-bottom: 24px; display: block; }
.cb-hero__copy h1 { font-family: var(--font-display); font-size: clamp(64px, 9vw, 140px); line-height: .92; letter-spacing: -.02em; text-transform: uppercase; margin: 0 0 24px; }
.cb-hero__copy .lead { font-size: 20px; color: #B8B3A8; margin: 0 0 32px; max-width: 540px; line-height: 1.45; }
.cb-hero__cta { display: flex; gap: 12px; margin-bottom: 48px; }
.cb-hero__proof { display: flex; gap: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); }
.cb-hero__proof > div { display: flex; flex-direction: column; }
.cb-hero__proof strong { font-family: var(--font-display); font-size: 32px; line-height: 1; color: var(--cb-bone); }
.cb-hero__proof span { font-size: 12px; color: #7C7872; margin-top: 4px; }

.cb-hero__visual { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 0.82; box-shadow: 0 24px 80px rgba(0,0,0,.5); }
.cb-hero__visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cb-hero__visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(11,11,15,.45)); pointer-events: none; }
.cb-hero__tag { position: absolute; top: 16px; left: 16px; }

/* ---------- Sections ---------- */
.cb-section {
  padding: clamp(48px, 5.5vw, 88px) clamp(20px, 4vw, 64px);
  max-width: var(--container); margin: 0 auto;
}
.cb-section--dark {
  background: var(--cb-onyx); color: var(--cb-bone);
  max-width: none; margin: 0;
}
.cb-section--dark .cb-section__head h2 { color: var(--cb-bone); }
.cb-section--dark .cb-section__head p { color: #B8B3A8; }
.cb-section--bone { background: var(--cb-paper); max-width: none; margin: 0; }
.cb-section--bone > * { max-width: var(--container); margin-left: auto; margin-right: auto; }
.cb-section__head { display: flex; flex-direction: column; gap: 10px; max-width: 720px; margin: 0 auto 40px; text-align: center; align-items: center; }
.cb-section__head h2 { font-family: var(--font-display); font-size: clamp(40px, 5vw, 72px); line-height: 1; letter-spacing: -.01em; text-transform: uppercase; margin: 0; }
.cb-section__head p { color: var(--fg-2); font-size: 18px; line-height: 1.5; margin: 0; max-width: 560px; }

/* ---------- Product grid ---------- */
.cb-products { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.cb-product { background: var(--bg-2); border: 1px solid var(--cb-warm-line); border-radius: 8px; padding: 28px 20px; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; transition: transform .25s var(--ease-out), box-shadow .25s; cursor: pointer; }
.cb-product:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cb-product__icon { width: 56px; height: 56px; background: var(--cb-onyx); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.cb-product__icon img { width: 32px; height: 32px; }
.cb-product h4 { margin: 0; font-size: 18px; }
.cb-product small { color: var(--fg-3); font-size: 13px; }

/* ---------- Pakketten ---------- */
.cb-pakketten { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cb-pakket {
  background: var(--cb-ink); border: 1px solid var(--cb-smoke); border-radius: 8px;
  padding: 32px; position: relative; display: flex; flex-direction: column; gap: 12px;
  transition: transform .25s var(--ease-out), box-shadow .25s, border-color .25s;
}
.cb-pakket.is-featured { border-color: var(--cb-magenta); background: linear-gradient(180deg, #1A222C 0%, #11161C 100%); transform: translateY(-12px); }
.cb-pakket:hover { transform: translateY(-16px); box-shadow: var(--shadow-glow-magenta); }
.cb-pakket__tag { position: absolute; top: -10px; left: 32px; }
.cb-pakket h3 { font-family: var(--font-display); font-size: 32px; margin: 0; letter-spacing: -.01em; line-height: 1; }
.cb-pakket__price { font-family: var(--font-display); font-size: 56px; line-height: 1; color: var(--cb-acid); }
.cb-pakket__price small { font-family: var(--font-body); font-size: 14px; color: #7C7872; font-weight: 400; margin-left: 6px; }
.cb-pakket__sub { color: #B8B3A8; font-size: 14px; }
.cb-pakket ul { margin: 12px 0 24px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 6px; color: #B8B3A8; font-size: 14px; }
.cb-pakket ul li::before { content: "→ "; color: var(--cb-magenta); font-weight: 700; }
.cb-pakket .cb-btn { margin-top: auto; justify-content: center; }

/* ---------- Steps ---------- */
.cb-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cb-step { display: flex; flex-direction: column; gap: 10px; padding: 20px 0; border-top: 2px solid var(--cb-onyx); }
.cb-step__n { font-family: var(--font-display); font-size: 56px; color: var(--cb-magenta); line-height: 1; }
.cb-step h4 { margin: 0; font-size: 20px; }
.cb-step small { font-size: 14px; color: var(--fg-3); line-height: 1.45; }

/* ---------- Reviews ---------- */
.cb-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cb-review { background: white; border: 1px solid var(--cb-warm-line); border-radius: 8px; padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.cb-review__stars { color: var(--cb-magenta); font-size: 16px; letter-spacing: 2px; }
.cb-review p { font-size: 16px; line-height: 1.5; color: var(--fg-1); margin: 0; font-family: var(--font-accent); }
.cb-review small { color: var(--fg-3); }

/* ---------- CTA band ---------- */
.cb-cta-band {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  background: var(--cb-magenta); color: white;
  padding: 64px clamp(20px, 4vw, 96px); flex-wrap: wrap;
}
.cb-cta-band h2 { font-family: var(--font-display); font-size: clamp(40px, 5vw, 72px); line-height: 1; letter-spacing: -.01em; text-transform: uppercase; margin: 0 0 8px; }
.cb-cta-band p { color: rgba(255,255,255,0.85); margin: 0; font-size: 18px; }
.cb-cta-band .cb-btn { background: var(--cb-onyx); color: var(--cb-bone); }
.cb-cta-band .cb-btn:hover { background: var(--cb-ink); }
.cb-btn--lg { padding: 18px 28px; font-size: 18px; }

/* ---------- FAQ ---------- */
.cb-faq { max-width: 880px; margin: 0 auto; }
.cb-faq__item { border-top: 1px solid var(--cb-warm-line); padding: 20px 0; cursor: pointer; }
.cb-faq__item:last-child { border-bottom: 1px solid var(--cb-warm-line); }
.cb-faq__q { display: flex; align-items: center; justify-content: space-between; font-family: var(--font-accent); font-weight: 700; font-size: 18px; }
.cb-faq__icon { font-size: 28px; line-height: 1; color: var(--cb-magenta); }
.cb-faq__a { padding-top: 12px; color: var(--fg-2); font-size: 16px; line-height: 1.55; max-width: 700px; }

/* ---------- Locations ---------- */
.cb-locations { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; max-width: 880px; margin: 0 auto; }
.cb-location { padding: 18px 20px; background: white; border: 1px solid var(--cb-warm-line); border-radius: 4px; font-weight: 600; cursor: pointer; transition: all .15s; display: flex; align-items: center; justify-content: space-between; }
.cb-location:hover { background: var(--cb-onyx); color: var(--cb-bone); border-color: var(--cb-onyx); }

/* ---------- Footer ---------- */
.cb-footer { background: var(--cb-onyx); color: var(--cb-bone); padding: 64px clamp(20px, 4vw, 64px) 32px; }
.cb-footer__grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.cb-footer__brand img { height: 56px; margin-bottom: 16px; }
.cb-footer__brand p { color: #B8B3A8; font-size: 14px; line-height: 1.55; margin: 0; }
.cb-footer__head { font-size: 11px; font-weight: 700; letter-spacing: .08em; color: var(--cb-acid); margin-bottom: 16px; }
.cb-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; color: #B8B3A8; font-size: 14px; }
.cb-footer ul a, .cb-footer__bottom a { color: inherit; text-decoration: none; cursor: pointer; transition: color 150ms ease; }
.cb-footer ul a:hover, .cb-footer__bottom a:hover { color: var(--cb-magenta); text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 2px; }
.cb-footer__brand a:hover { border-color: rgba(251,77,10,.5) !important; color: var(--cb-magenta) !important; }
.cb-footer__bottom { max-width: var(--container); margin: 0 auto; padding-top: 32px; display: flex; justify-content: space-between; color: #7C7872; }
.cb-footer__bottom small { font-size: 12px; }

/* #12 live prijs + beschikbaarheid in contactformulier */
.cb-form-live { display: flex; flex-wrap: wrap; gap: 12px; margin: 4px 0 4px; }
.cb-form-live__price { display: flex; flex-direction: column; gap: 2px; background: var(--cb-onyx); color: var(--cb-bone); border-radius: var(--r-sm); padding: 12px 16px; }
.cb-form-live__price span { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--cb-acid); }
.cb-form-live__price strong { font-family: var(--font-display); font-size: 32px; line-height: 1; letter-spacing: -.01em; }
.cb-form-live__price small { font-family: var(--font-body); font-size: 12px; font-weight: 400; color: #B8B3A8; }
.cb-form-live__avail { display: flex; align-items: center; flex: 1; min-width: 220px; border-radius: var(--r-sm); padding: 12px 16px; font-size: 14px; font-weight: 600; }
.cb-form-live__avail.is-free { background: #EAF7EF; color: #167C43; border: 1px solid #B6E2C6; }
.cb-form-live__avail.is-taken { background: #FFF1DE; color: #9A5A00; border: 1px solid #F0D9AE; }
.cb-wa-btn { background: #25D366; color: #073b22; }
.cb-wa-btn:hover { background: #1eb858; box-shadow: 0 8px 24px rgba(37,211,102,.3); }

/* #20 cookie/AVG banner + privacy */
.cb-cookie { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90; max-width: 720px; margin: 0 auto;
  background: var(--cb-onyx); color: var(--cb-bone); border-radius: var(--r-md); box-shadow: var(--shadow-lg);
  padding: 18px 20px; display: flex; align-items: center; gap: 18px; }
.cb-cookie__txt strong { display: block; font-family: var(--font-accent); font-size: 15px; margin-bottom: 3px; }
.cb-cookie__txt p { font-size: 13px; line-height: 1.5; color: #B8B3A8; margin: 0; }
.cb-cookie__txt a { color: var(--cb-acid); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.cb-cookie .cb-btn { flex-shrink: 0; }
@media (max-width: 560px) { .cb-cookie { flex-direction: column; align-items: stretch; text-align: left; } .cb-cookie .cb-btn { justify-content: center; } }

.cb-priv { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 28px; }
.cb-priv__block h3 { font-family: var(--font-accent); font-weight: 700; font-size: 20px; margin: 0 0 8px; }
.cb-priv__block p { font-size: 16px; line-height: 1.6; color: var(--fg-2); margin: 0; }
.cb-priv__block a { color: var(--cb-magenta); text-decoration: underline; text-underline-offset: 3px; }

/* #18 stad-landing CTA */
.cb-stad-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  background: var(--cb-paper); border: 1px solid var(--cb-warm-line); border-radius: var(--r-lg); padding: 40px clamp(24px,4vw,56px); }
