/* Hotel Bonka design-systeem — gebaseerd op hotelbonka.be (Anton + Inter, #FF4E00, scherpe hoeken) */

:root {
  --orange: #FF4E00;
  --orange-dark: #CC3E00;
  --orange-link-hover: #B33700;
  --black: #000;
  --white: #FFF;
  --border-gray: #E2E2E2;
  --section-gray: #F7F7F7;
  --text-gray: #3D3D3D;
}

* { box-sizing: border-box; }

html { font-size: 10px; }

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
}

h1, h2, h3, h4 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 0.4em;
  text-transform: uppercase;
}

h1 { font-size: 80px; }
h2 { font-size: 60px; letter-spacing: 0.35px; }
h3 { font-size: 42px; letter-spacing: 0.35px; }
h4 { font-size: 26px; }

/* Signatuur-effect van hotelbonka.be: outlined oranje woord in titels */
h1 strong, h2 strong, .outline-text {
  font-weight: inherit;
  -webkit-text-stroke: 1.5px var(--orange);
  -webkit-text-fill-color: transparent;
  paint-order: stroke fill;
}

a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-link-hover); text-decoration: underline; }

p strong, li strong { color: var(--orange); font-weight: 600; }

.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ---------- Header ---------- */

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border-gray);
  padding: 20px 0 10px;
}

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

.site-header .logo img { width: 150px; display: block; }

.site-nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }

.site-nav a {
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  padding: 10px 20px;
  text-decoration: none;
}

.site-nav a:hover, .site-nav a.active { color: var(--orange); text-decoration: none; }

/* Donkere header-variant op de hero (zoals de frontpage van hotelbonka.be) */
.site-header.on-dark {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.27);
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
}
.site-header.on-dark .logo img { filter: invert(1); }
.site-header.on-dark .site-nav a { color: var(--white); }
.site-header.on-dark .site-nav a:hover,
.site-header.on-dark .site-nav a.active { color: var(--orange); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  padding: 160px 0 80px;
  overflow: hidden;
}

.hero h1 { max-width: 660px; color: var(--white); }

.hero .lead {
  max-width: 560px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-inner { display: flex; align-items: center; gap: 60px; }
.hero-copy { flex: 1 1 60%; }
.hero-visual { flex: 0 0 280px; }
.hero-visual svg { width: 100%; height: auto; display: block; }

/* ---------- Knoppen & badges ---------- */

.btn {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 0;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 1em 2em;
  cursor: pointer;
  text-decoration: none;
}
.btn:hover { background: var(--orange-dark); color: var(--white); text-decoration: none; }

.btn-black { background: var(--black); }
.btn-black:hover { background: var(--orange-link-hover); }

.btn-ghost {
  background: transparent;
  color: var(--black);
  box-shadow: inset 0 0 0 2px var(--black);
}
.btn-ghost:hover { background: var(--black); color: var(--white); }

.badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: "Anton", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5em 1em;
}

/* ---------- Secties ---------- */

.section { padding: 70px 0; }
.section-gray { background: var(--section-gray); }
.section-black { background: var(--black); color: var(--white); }
.section-black h2, .section-black h3 { color: var(--white); }

.section-intro { max-width: 720px; }

/* ---------- CTA-kaarten op de landing ---------- */

.cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.cta-card {
  background: var(--black);
  color: var(--white);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.cta-card h3 { color: var(--white); margin: 0; }
.cta-card p { margin: 0; color: rgba(255, 255, 255, 0.8); flex: 1; }

/* ---------- Template-kaarten ---------- */

.template-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.template-card {
  border: 1px solid var(--border-gray);
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.template-card .preview {
  background:
    linear-gradient(45deg, #eee 25%, transparent 25%, transparent 75%, #eee 75%),
    linear-gradient(45deg, #eee 25%, #fff 25%, #fff 75%, #eee 75%);
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px;
  padding: 18px;
}

.template-card .preview svg { width: 100%; height: auto; display: block; }

.template-card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.template-card .badge { margin-top: -38px; position: relative; z-index: 2; }
.template-card .specs { font-size: 14px; color: var(--text-gray); margin: 0; flex: 1; }
.template-card .btn { align-self: flex-start; }

/* ---------- Zone-tabel ---------- */

.zone-table { width: 100%; border-collapse: collapse; font-size: 15px; margin-top: 30px; }
.zone-table th, .zone-table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-gray);
}
.zone-table th {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* ---------- Check-tool ---------- */

.tool-layout {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  margin-top: 40px;
}

.tool-controls { flex: 1 1 480px; min-width: 0; }
.tool-stage-wrap { flex: 0 0 auto; }

.dropzone {
  border: 2px dashed var(--black);
  background: var(--section-gray);
  padding: 50px 30px;
  text-align: center;
  cursor: pointer;
}
.dropzone.dragover { border-color: var(--orange); background: #FFEDE5; }
.dropzone p { margin: 0 0 16px; }
.dropzone .hint { font-size: 14px; color: var(--text-gray); }

.platform-switcher { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0 20px; }

.platform-btn {
  font-family: "Anton", sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--black);
  border-radius: 0;
  padding: 0.5em 1em;
  cursor: pointer;
}
.platform-btn:hover { border-color: var(--orange); color: var(--orange); }
.platform-btn.active { background: var(--orange); border-color: var(--orange); color: var(--white); }

.tool-options { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; margin-bottom: 20px; font-size: 15px; }
.tool-options label { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.tool-options input { accent-color: var(--orange); }

.tool-stage {
  position: relative;
  width: 320px;
  background: var(--black);
  outline: 1px solid var(--border-gray);
}

.tool-stage .media-layer,
.tool-stage .overlay-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.tool-stage img.media-layer, .tool-stage video.media-layer { object-fit: cover; }
.tool-stage.fit-contain img.media-layer, .tool-stage.fit-contain video.media-layer { object-fit: contain; }

.tool-stage .overlay-layer { pointer-events: none; }
.tool-stage .overlay-layer svg { width: 100%; height: 100%; display: block; }

.tool-stage .placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  text-align: center;
  padding: 20px;
}

.zone-info { margin-top: 24px; font-size: 15px; color: var(--text-gray); max-width: 560px; }
.zone-info h4 { margin-bottom: 0.3em; }

.privacy-note {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  background: var(--section-gray);
  border-left: 3px solid var(--orange);
  padding: 10px 16px;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 50px 0;
  margin-top: 70px;
  font-size: 15px;
}

.site-footer a { color: var(--white); }
.site-footer a:hover { color: var(--orange); }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.site-footer h4 { color: var(--white); font-size: 18px; }
.site-footer .footer-note { margin-top: 40px; font-size: 13px; color: rgba(255, 255, 255, 0.6); }

/* ---------- Responsive ---------- */

@media (max-width: 991px) {
  h1 { font-size: 60px; }
  h2 { font-size: 38px; }
  h3 { font-size: 30px; }
  .hero { padding: 140px 0 60px; }
  .hero-inner { flex-direction: column; align-items: flex-start; }
  .hero-visual { flex-basis: auto; width: 220px; }
  .tool-layout { flex-direction: column-reverse; }
  .tool-stage-wrap { align-self: center; }
}

@media (max-width: 767px) {
  h1 { font-size: 32px; }
  h2 { font-size: 30px; }
  body { font-size: 16px; }
  .site-header .header-inner { flex-direction: column; align-items: flex-start; }
  .site-nav a { padding: 8px 12px; }
  .hero { padding: 40px 0; }
  .site-header.on-dark { position: static; background: var(--black); }
  .tool-stage { width: 280px; }
}
