/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #1a1a1a; background: #fff; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* =====================
   VARIABELEN
   ===================== */
:root {
  --oranje: #e85d24;
  --oranje-dark: #c94d18;
  --donker: #111;
  --grijs: #f5f5f5;
  --tekst: #444;
  --border: #e5e5e5;
  --radius: 12px;
}

/* =====================
   TOPBAR
   ===================== */
.topbar {
  background: #111;
  color: #aaa;
  font-size: 0.78rem;
  padding: 8px 0;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-left { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-right { font-size:.78rem; color:#e85d24; font-weight:600; white-space:nowrap; }
.topbar a { color: #aaa; display: flex; align-items: center; gap: 6px; transition: color .2s; }
.topbar a:hover { color: #fff; }

/* =====================
   NAVBAR
   ===================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 64px;
}
.nav-inner .nav-links {
  justify-content: center;
}
.nav-inner .nav-hamburger {
  justify-self: end;
}
.nav-social {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}
.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  transition: transform .15s, opacity .15s;
}
.nav-social a:hover { transform: scale(1.1); opacity: .85; }
.nav-social .fb { background: #1877f2; color: #fff; }
.nav-social .ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); color: #fff; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 40px; height: 40px;
  background: repeating-linear-gradient(
    to right,
    #cc1111 0px,
    #cc1111 6px,
    #fff 6px,
    #fff 9px,
    #1a1a6e 9px,
    #1a1a6e 11px,
    #fff 11px,
    #fff 14px,
    #cc1111 14px,
    #cc1111 20px
  );
  color: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.1rem;
  text-shadow: 0 1px 3px rgba(0,0,0,.6);
}
.logo-title { font-weight: 700; font-size: 1rem; display: block; }
.logo-sub { font-size: 0.7rem; color: #999; display: block; }

.nav-links { display: flex; gap: 4px; }
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #555;
  transition: all .2s;
}
.nav-links a:hover { background: var(--grijs); color: #111; }
.nav-links a.active { color: var(--oranje); font-weight: 600; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #333;
  border-radius: 2px;
  transition: all .3s;
}

/* =====================
   HERO (HOMEPAGE)
   ===================== */
.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0035 0%, #4a0070 40%, #8b1a00 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.4);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  padding: 150px 24px;
  color: #fff;
  text-align: center;
}
.hero-label { display: none; }
.hero h1 {
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 16px;
  color: var(--oranje);
}
.hero p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: #fff;
  font-weight: 500;
  margin-bottom: 28px;
}
.hero-accent { color: var(--oranje); }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin: 0; }
.btn-bel {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  border: 1.5px solid rgba(255,255,255,.6);
  border-radius: 8px;
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all .2s;
}
.btn-bel:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  background: #25d366;
  border-radius: 8px;
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background .2s;
}
.btn-whatsapp:hover { background: #1db954; }
.hero-trust { display: none; }

/* =====================
   CATEGORIEËN
   ===================== */
.categories { padding: 64px 24px; }
.categories-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-block;
  background: #fff3ee;
  color: var(--oranje);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 32px; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cat-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  background: #fff;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.14); }
.cat-img {
  height: 220px;
  background: #fff;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.cat-img-geluid { background-image: url('images/geluid/geluid-cat.jpg'); }
.cat-img-karaoke { background-image: url('images/karaoke huren/karaoke-cat.jpg'); }
.cat-img-licht { background-image: url('images/licht/licht-cat.jpg'); }
.cat-img-feest { background-image: url('images/party verhuur/feest-cat.jpg'); }
.cat-body { padding: 16px; }
.cat-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.cat-body p { font-size: 0.85rem; color: var(--tekst); line-height: 1.5; margin-bottom: 10px; }
.cat-link { font-size: 0.82rem; color: var(--oranje); font-weight: 600; }

/* =====================
   PRODUCTEN SECTIE (subpagina's)
   ===================== */
.page-hero {
  background: linear-gradient(135deg, #1a0035 0%, #4a0070 40%, #2d0060 100%);
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 60px 24px;
  text-align: center;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.4);
}
.page-hero-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,.6); margin-bottom: 12px; }
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { margin: 0 6px; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 12px; }
.page-hero p { font-size: 1rem; color: rgba(255,255,255,.8); margin-bottom: 24px; }
.page-hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Product grid */
.producten { padding: 48px 24px; }
.producten-inner { max-width: 1200px; margin: 0 auto; }
.producten-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; }
.producten-header h2 { font-size: 1.4rem; font-weight: 800; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.product-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.product-img {
  height: 220px;
  background: #fff;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.badge-pop {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--oranje);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}
.product-body { padding: 16px; }
.product-name { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.product-desc { font-size: 0.82rem; color: var(--tekst); line-height: 1.5; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-footer { display: flex; justify-content: space-between; align-items: center; }
.product-prijs { font-size: 1rem; font-weight: 700; }
.product-prijs span { font-size: 0.75rem; font-weight: 400; color: #888; }
.btn-boek {
  background: var(--oranje);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.btn-boek:hover { background: var(--oranje-dark); }

/* =====================
   MODAL
   ===================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal-overlay[hidden] { display: none; }
.modal-box {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 12px; right: 12px;
  background: #f0f0f0;
  border: none;
  border-radius: 999px;
  width: 36px; height: 36px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
}
.modal-close:hover { background: #e0e0e0; }
.modal-media { width: 100%; background: #f8f8f8; overflow: hidden; font-size: 4rem; text-align: center; }
.modal-media img { width: 100%; height: auto; display: block; }
.modal-content { padding: 24px; }
.modal-content h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
.modal-content p { font-size: 0.9rem; color: var(--tekst); line-height: 1.6; margin-bottom: 16px; }
.modal-specs { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 20px; }
.modal-specs li { font-size: 0.82rem; background: var(--grijs); padding: 8px 12px; border-radius: 8px; }
.modal-specs li strong { display: block; color: #888; font-size: 0.72rem; margin-bottom: 2px; }
.modal-prijs { font-size: 1.5rem; font-weight: 900; color: var(--oranje); margin-bottom: 16px; }
.modal-video { margin-bottom: 18px; }
.modal-video-titel { font-size: 0.9rem; font-weight: 700; color: #374151; margin-bottom: 10px; }
.modal-video-player { width: 100%; border-radius: 12px; background: #000; display: block; max-height: 320px; }
.modal-prijs span { font-size: 0.85rem; font-weight: 400; color: #888; }
.btn-wa-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  width: 100%;
  transition: background .2s;
}
.btn-wa-modal:hover { background: #1db954; }

/* =====================
   CTA BANNER
   ===================== */
.cta { background: var(--oranje); color: #fff; padding: 60px 24px; text-align: center; }
.cta h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 10px; }
.cta p { font-size: 1rem; opacity: .9; margin-bottom: 28px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-cta-bel {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px;
  background: rgba(255,255,255,.2);
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
}
.btn-cta-bel:hover { background: rgba(255,255,255,.3); }
.btn-cta-wa {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px;
  background: #25d366;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
}
.btn-cta-wa:hover { background: #1db954; }

/* =====================
   FOOTER
   ===================== */
.footer { background: #111; color: #aaa; padding: 48px 24px 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; margin-bottom: 32px; }
.footer-col strong { display: block; color: #fff; font-size: 0.9rem; margin-bottom: 12px; }
.footer-col a, .footer-col span { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: #aaa; margin-bottom: 8px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid #222; padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 0.8rem; }
.footer-bottom a { color: #aaa; }
.footer-bottom a:hover { color: #fff; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 768px) {
  .topbar-right { display: none; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 8px 0; box-shadow: 0 4px 12px rgba(0,0,0,.1); }
  .nav-links.open { display: flex; }
  .nav-links a { border-radius: 0; padding: 12px 24px; }
  .navbar { position: sticky; }
  .nav-hamburger { display: flex; }
  .hero h1 { font-size: 1.1rem; }
  .btn-bel, .btn-whatsapp { padding: 9px 16px; font-size: 0.85rem; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .modal-specs { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-img { height: 160px; }
}
@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .product-img { height: 140px; }
}
