/* ============================================================
   FIETSEN WILLEM — Gedeelde stijlen v2
   css/style.css
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700;800&display=swap');

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

:root {
  --navy:   #184775;
  --gold:   #C19864;
  --dark:   #494B51;
  --body:   #5c5f66;
  --white:  #FFFFFF;
  --offwit: #F7F8FA;
  --border: #E6E8EC;
  --max:    1060px;
  --nav-h:  68px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--dark);
  font-size: 15px;
  line-height: 1.65;
  background: var(--white);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }


/* ═══════════════════════════════════════════
   NAVIGATIE — wit, net als fietsenwillem.nl
═══════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  height: var(--nav-h);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo img {
  height: 46px;
  width: auto;
}
.nav-logo__text {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
  line-height: 1.1;
}
.nav-logo__text span { color: var(--gold); }

/* Menu links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

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

.nav-menu > li > a,
.nav-menu > li > button {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--dark);
  padding: 8px 12px;
  border-radius: 4px;
  border: none;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: color .18s, background .18s;
  line-height: 1.2;
}
.nav-menu > li > a:hover,
.nav-menu > li > button:hover {
  color: var(--navy);
  background: var(--offwit);
}
.nav-menu > li.active > a,
.nav-menu > li.active > button {
  color: var(--gold);
}

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  min-width: 190px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  overflow: hidden;
  z-index: 300;
}
.nav-dropdown.is-open .nav-dropdown__menu { display: block; }

.nav-dropdown__menu a {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  transition: background .14s, color .14s;
  text-decoration: none;
}
.nav-dropdown__menu a:last-child { border-bottom: none; }
.nav-dropdown__menu a:hover {
  background: var(--offwit);
  color: var(--navy);
}

/* Contact CTA knop */
.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  border-radius: 4px !important;
  padding: 8px 18px !important;
  margin-left: 6px;
}
.nav-cta:hover {
  background: #a87d44 !important;
  color: var(--white) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-hamburger:hover { background: var(--offwit); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .25s;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ── MOBIEL ── */
@media (max-width: 820px) {
  .nav-hamburger { display: flex; }

  .nav-menu {
    display: none;
    position: absolute;
    top: var(--nav-h);
    right: 0;
    left: auto;
    width: 260px;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav-menu.is-open { display: flex; }

  .nav-menu > li > a,
  .nav-menu > li > button {
    padding: 13px 20px;
    border-radius: 0;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
  }
  .nav-menu > li:last-child > a,
  .nav-menu > li:last-child > button { border-bottom: none; }
  .nav-menu > li > a:hover,
  .nav-menu > li > button:hover { background: var(--offwit); }

  .nav-dropdown__menu {
    position: static;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: var(--offwit);
    border-top: 1px solid var(--border);
  }
  .nav-dropdown__menu a {
    padding: 11px 32px;
    font-size: 13px;
  }

  .nav-cta {
    margin: 10px 12px 12px;
    border-radius: 4px !important;
    text-align: center;
    justify-content: center;
    border-bottom: none !important;
  }
}

@media (max-width: 560px) {
  .nav-inner { padding: 0 16px; }
  .nav-logo img { height: 38px; }
}


/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  padding: 52px 0 0;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.footer-brand-name {
  font-size: 18px; font-weight: 800;
  color: var(--white); letter-spacing: -.02em; margin-bottom: 10px;
}
.footer-brand-name span { color: var(--gold); }
.footer-tagline {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,.55); line-height: 1.75;
  max-width: 240px; margin-bottom: 20px;
}
.footer-contact-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.68); margin-bottom: 8px;
}
.footer-contact-item a { color: rgba(255,255,255,.68); font-weight: 600; transition: color .16s; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-col-title {
  font-size: 11px; font-weight: 700; letter-spacing: .10em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { font-size: 13px; color: rgba(255,255,255,.65); transition: color .16s; }
.footer-nav a:hover { color: var(--white); }
.footer-bottom {
  padding: 18px 0;
  display: flex; justify-content: space-between;
  align-items: center; gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,.38); }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,.38); transition: color .16s; }
.footer-legal a:hover { color: rgba(255,255,255,.70); }

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-inner { padding: 0 18px; }
}


/* ═══════════════════════════════════════════
   GEDEELDE HULPKLASSEN
═══════════════════════════════════════════ */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.section { padding: 72px 0; }
.section--white { background: var(--white); }
.section--alt   { background: var(--offwit); }

.kicker {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}

/* Knoppen — grote touch targets op mobiel */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: .02em;
  padding: 13px 24px;
  border-radius: 4px;
  text-decoration: none;
  border: none; cursor: pointer;
  line-height: 1.2; white-space: nowrap;
  min-height: 44px;  /* iOS touch target */
  transition: background .18s, transform .15s, box-shadow .15s;
}
.btn--gold  { background: var(--gold); color: #fff; }
.btn--gold:hover  { background: #a87d44; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(193,152,100,.35); }
.btn--white { background: #fff; color: var(--navy); }
.btn--white:hover { background: #edf2f8; transform: translateY(-1px); }
.btn--wa    { background: #25D366; color: #fff; }
.btn--wa:hover    { background: #1aa84f; transform: translateY(-1px); }
.btn--navy  { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn--navy:hover  { background: var(--navy); color: #fff; transform: translateY(-1px); }
.btn--outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.45); }
.btn--outline-white:hover { border-color: rgba(255,255,255,.85); transform: translateY(-1px); }
.btns { display: flex; gap: 10px; flex-wrap: wrap; }

@media (max-width: 560px) {
  .section { padding: 48px 0; }
  .wrap { padding: 0 18px; }
  .btn { min-height: 48px; padding: 14px 20px; font-size: 15px; }
  .btns { flex-direction: column; }
  .btns .btn { width: 100%; text-align: center; }
}
