/* ============================================
   COLOR PALETTE — change any value here and it updates the whole site
   ============================================ */
:root {
  --color-bg: #16211d;          /* dark background, workshop tone */
  --color-bg-elevated: #1f2d27; /* card background */
  --color-bg-tag: #24352d;      /* spec "hangtag" background */
  --color-text: #f2ede2;        /* main text color */
  --color-text-muted: #a9b6ae;  /* secondary text color */
  --color-accent: #d98e2b;      /* main brand color — change this to restyle the whole site */
  --color-accent-dark: #b8741e;
  --color-border: #3a4a41;
  --color-whatsapp: #25d366;    /* official WhatsApp green — best left as-is */

  --font-display: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --radius: 4px;
  --max-width: 1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  direction: ltr;
}

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

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

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

/* ============================================
   Header
   ============================================ */
.site-header {
  border-bottom: 1px solid var(--color-border);
  padding: 22px 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-family: var(--font-display);
  font-size: 60px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo { width: 120px; height: 120px; }

.brand span { color: var(--color-accent); }

@media (max-width: 480px) {
  .brand { font-size: 42px; gap: 8px; }
  .brand-logo { width: 85px; height: 85px; }
}

/* ============================================
   Hero section (text only — image removed)
   ============================================ */
.hero {
  padding: 60px 0 50px;
  border-bottom: 1px dashed var(--color-border);
}

.hero .container {
  max-width: 800px;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 1px;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 6vw, 52px);
  line-height: 1.1;
  margin: 0 0 18px;
  color: var(--color-accent);
}

.hero p {
  color: var(--color-text-muted);
  font-size: 18px;
  margin: 0;
}

/* ============================================
   Bike grid
   ============================================ */
.catalog {
  padding: 50px 0 80px;
}

.catalog h2 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 28px;
}

.bike-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 26px;
}

.bike-card {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease;
  display: flex;
  flex-direction: column;
}

.bike-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
}

.bike-card .thumb {
  aspect-ratio: 4 / 3;
  background: var(--color-bg-tag);
  overflow: hidden;
}

.bike-card .thumb img { width: 100%; height: 100%; object-fit: cover; }

.bike-card .info { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }

.bike-card .status {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--color-whatsapp);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.bike-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 6px;
  color: var(--color-accent);
}

.bike-card .tagline {
  color: var(--color-text-muted);
  font-size: 14px;
  margin: 0 0 16px;
  flex: 1;
}

.bike-card .price {
  font-family: var(--font-mono);
  color: var(--color-accent);
  font-size: 18px;
  margin-bottom: 14px;
}

.btn {
  display: inline-block;
  text-align: center;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  transition: opacity .15s ease;
}

.btn:hover { opacity: .88; }

.btn-primary {
  background: var(--color-accent);
  color: #191008;
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #06210f;
}

/* ============================================
   Bike detail page
   ============================================ */
.bike-detail {
  padding: 50px 0 90px;
}

@media (max-width: 700px) {
  .bike-detail { padding: 16px 0 60px; }
}

.back-link {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 26px;
}

@media (max-width: 700px) {
  .back-link { margin-bottom: 10px; font-size: 12px; }
}

.back-link:hover { color: var(--color-accent); }

.detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 46px;
}

@media (max-width: 800px) {
  .detail-grid { grid-template-columns: 1fr; }
}

.slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  aspect-ratio: 4/3;
  background: var(--color-bg-elevated);
}

@media (max-width: 700px) {
  .slider { aspect-ratio: auto; height: 70vh; }
  .slider-slide { display: flex; align-items: center; justify-content: center; }
  .slider-slide img { height: 66%; width: 100%; object-fit: cover; }
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform .35s ease;
}

.slider-slide {
  min-width: 100%;
  height: 100%;
}

.slider-slide img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(10, 16, 13, 0.55);
  color: var(--color-text);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease;
}

.slider-btn:hover { background: var(--color-accent); color: #191008; }

.slider-btn.prev { left: 12px; }
.slider-btn.next { right: 12px; }

.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(242, 237, 226, 0.35);
  border: none;
  padding: 0;
  cursor: pointer;
}

.slider-dots .dot.active { background: var(--color-accent); }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 10, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.lightbox[hidden] { display: none; }

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(242, 237, 226, 0.12);
  color: var(--color-text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover { background: var(--color-accent); color: #191008; }

.lightbox .slider-btn { top: 50%; }

@media (max-width: 800px) {
  .lightbox-close { top: 12px; right: 12px; }
}

.detail-info h1 {
  font-family: var(--font-display);
  font-size: 36px;
  margin: 0 0 8px;
  color: var(--color-accent);
}

.detail-info .tagline {
  color: var(--color-text-muted);
  margin-bottom: 18px;
}

.detail-info .price {
  font-family: var(--font-mono);
  color: var(--color-accent);
  font-size: 26px;
  margin-bottom: 24px;
}

.spec-tag {
  background: var(--color-bg-tag);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius);
  padding: 22px 24px;
  position: relative;
  margin-bottom: 22px;
}

.spec-tag::before {
  content: '';
  position: absolute;
  top: 18px;
  inset-inline-start: -8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 1px dashed var(--color-border);
}

.spec-tag h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 14px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
}

.spec-row:last-child { border-bottom: none; }

.spec-row .label { color: var(--color-text-muted); }
.spec-row .value { font-family: var(--font-mono); }

.condition-header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 8px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.condition-list { list-style: none; padding: 0; margin: 0; }

.condition-list li {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
}

.condition-list li:last-child { border-bottom: none; }

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-row .btn { font-size: 16px; padding: 13px 22px; }

/* ============================================
   Footer
   ============================================ */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 34px 0 26px;
  color: var(--color-text-muted);
  font-size: 13px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 22px;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-company h4,
.footer-service h4,
.footer-delivery h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 8px;
}

.footer-company p,
.footer-service p,
.footer-delivery p {
  margin: 3px 0;
  line-height: 1.5;
}

.footer-company .company-name {
  color: var(--color-text);
  font-weight: 600;
}

.footer-company a { color: var(--color-accent); }
.footer-company a:hover { text-decoration: underline; }

.cert-link {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-whatsapp);
  text-decoration: underline;
}

.cert-link:hover { color: var(--color-accent); }

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
  text-align: center;
}

.empty-state {
  color: var(--color-text-muted);
  padding: 40px 0;
  text-align: center;
}

/* The three footer section titles (Over ons / Garantie & service / Bezorging)
   doubled in size on mobile only — everything else stays at its normal size. */
@media (max-width: 700px) {
  .footer-company h4,
  .footer-service h4,
  .footer-delivery h4 { font-size: 22px; }
}

/* ============================================
   Promo banner (full-width background, content aligned
   with the same container width as the header logo)
   ============================================ */
.promo-banner {
  position: relative;
  width: 100%;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.promo-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.promo-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.15) 45%, rgba(0,0,0,.75) 100%);
}

.promo-top {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding: 28px 20px 0;
}

.promo-badge {
  display: inline-block;
  background: var(--color-accent);
  color: #191008;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .5px;
  padding: 10px 20px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.promo-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.promo-feature svg {
  width: 30px;
  height: 30px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.promo-feature h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--color-text);
  margin: 0 0 2px;
}

.promo-feature p {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0;
}

.promo-footer {
  position: relative;
  z-index: 2;
  display: flex;
  background: rgba(8,12,10,.85);
  max-width: var(--max-width);
  margin: 0 auto 20px;
  width: 100%;
  padding: 0 20px;
  border-radius: var(--radius);
  overflow: hidden;
}

.promo-footer-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 10px;
  text-align: center;
  border-right: 1px solid var(--color-accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3px;
}

.promo-footer-item:last-child { border-right: none; }

.promo-footer-item svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
}

@media (max-width: 600px) {
  .promo-banner { min-height: 640px; }
  .promo-footer { flex-direction: row; }
  .promo-footer-item { font-size: 10px; padding: 12px 4px; }
}
