/* Stacaravan Service - Full reset stylesheet (with menu + dropdown) */
:root{
  --bg:#0f1115;
  --card:#151924;
  --text:#ffffff;
  --muted:rgba(255,255,255,.78);
  --accent:#f37a1f;
  --border:rgba(255,255,255,.12);
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
html{
  -webkit-text-size-adjust:100%;
  text-size-adjust:100%;
}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 20% -10%, rgba(243,122,31,.18), transparent 55%),
              radial-gradient(900px 600px at 90% 0%, rgba(255,255,255,.06), transparent 60%),
              var(--bg);
  color:var(--text);
  overflow-x:hidden;
}
a{ color:inherit; text-decoration:none; }
.wrap{ max-width:1120px; margin:0 auto; padding:0 18px; width:100%; }

/* Topbar */
.topbar{
  position:sticky; top:0;
  background:rgba(15,17,21,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
  z-index:50;
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:4px 0;
  gap:6px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:900; letter-spacing:.2px;
}
.brand-badge{
  width:34px; height:34px; border-radius:12px;
  display:grid; place-items:center;
  background:rgba(243,122,31,.14);
  border:1px solid rgba(243,122,31,.30);
}
.brand-badge span{ color:var(--accent); font-weight:900; }
.menu{ display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; align-items:center; }
.menu a{
  padding:6px 9px;
  border-radius:12px;
  color:var(--muted);
  border:1px solid transparent;
}
.menu a:hover{
  background:rgba(255,255,255,.06);
  border-color:var(--border);
  color:var(--text);
}
.menu a.active{
  background:rgba(243,122,31,.14);
  border-color:rgba(243,122,31,.30);
  color:var(--text);
}
.menu-cta{
  background: var(--accent);
  color:#111 !important;
  border-color: transparent !important;
  font-weight:900;
}
.menu-cta:hover{ filter:brightness(1.05); }

/* Dropdown Diensten */
.dropdown{ position:relative; display:inline-block; }
.dropdown > summary{
  list-style:none;
  cursor:pointer;
  padding:9px 11px;
  border-radius:12px;
  color:var(--muted);
  border:1px solid transparent;
}
.dropdown > summary::-webkit-details-marker{ display:none; }
.dropdown[open] > summary,
.dropdown > summary:hover{
  background:rgba(255,255,255,.06);
  border-color:var(--border);
  color:var(--text);
}
.dropdown-panel{
  position:absolute;
  right:0;
  top:44px;
  min-width: 240px;
  background:rgba(15,17,21,.98);
  border:1px solid var(--border);
  border-radius:16px;
  padding:10px;
  box-shadow: 0 14px 40px rgba(0,0,0,.45);
  display:grid;
  gap:6px;
  z-index:100;
}
.dropdown-panel a{
  padding:10px 10px;
  border-radius:12px;
  color:var(--text);
  border:1px solid transparent;
}
.dropdown-panel a:hover{
  background:rgba(255,255,255,.06);
  border-color:var(--border);
}
@media (max-width: 920px){
  .dropdown-panel{ position:static; min-width:auto; margin-top:8px; }
}

/* Hero */
.hero{ padding:54px 0 18px; }
.hero-grid{ display:grid; grid-template-columns: 1fr; gap:16px; }
.hero-card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--border);
  border-radius:22px;
  box-shadow:var(--shadow);
  padding:22px;
}
.hero h1{ margin:0 0 10px; font-size: clamp(28px, 4vw, 46px); line-height:1.1; }
.hero p{ margin:0 0 16px; color:var(--muted); line-height:1.55; max-width:65ch; }
.kicker{
  display:inline-flex; align-items:center; gap:8px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(243,122,31,.14);
  border:1px solid rgba(243,122,31,.30);
  color:var(--text);
  font-weight:700;
  margin-bottom:12px;
  font-size:13px;
}
.btns{ display:flex; gap:12px; flex-wrap:wrap; }
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:16px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.06);
  font-weight:800;
}
.btn:hover{ filter:brightness(1.05); }
.btn.primary{ background:var(--accent); border-color:transparent; color:#111; }
.btn.ghost{ background:transparent; }
.badges{ display:flex; gap:10px; flex-wrap:wrap; margin-top:10px; }
.badge{
  font-size:12px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  color:var(--muted);
  background:rgba(0,0,0,.15);
}
.notice{
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(243,122,31,.30);
  background:rgba(243,122,31,.10);
  color:var(--muted);
  margin-top:12px;
}

/* Sections + cards */
.section{ padding:22px 0; }
.section h2{ margin:0 0 10px; font-size:22px; }
.section p{ margin:0; color:var(--muted); line-height:1.55; }
.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
  margin-top:14px;
}
.card{
  grid-column: span 12;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:20px;
  padding:18px;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.card h3{ margin:0 0 8px; }
.card p{ margin:0; color:var(--muted); }
@media (min-width: 920px){
  .hero-grid{ grid-template-columns: 7fr 5fr; }
  .card.third{ grid-column: span 4; }
  .card.half{ grid-column: span 6; }
}
.ul{ margin:10px 0 0; padding-left:18px; color:var(--muted); }
.ul li{ margin:6px 0; }

/* Footer */
.footer{
  margin-top:34px;
  padding:22px 0;
  border-top:1px solid var(--border);
  color:var(--muted);
  font-size:14px;
}
.footer a{ text-decoration:underline; }
.small{ font-size:13px; color:var(--muted); }

/* Form */
.form{ display:grid; gap:10px; margin-top:12px; }
.field{ display:grid; gap:6px; }
.field label{ font-weight:800; font-size:13px; color:var(--muted); }
.field input, .field select, .field textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  color:var(--text);
  outline:none;
  max-width:100%;
  font-size:16px; /* iOS no-zoom */
}
.field textarea{ min-height:120px; resize:vertical; }
.hp{ display:none !important; }
.field input[type="file"]{ padding:10px 12px; }
button.btn{ cursor:pointer; }

/* Select readable (desktop fix) */
select{
  color:#333;
  background-color:#f2f2f2;
  border:1px solid #ccc;
}
select option{
  color:#333 !important;
  background-color:#f2f2f2 !important;
}

/* Media */
img, video{ max-width:100%; height:auto; display:block; }
.card, .hero-card, p, a{ overflow-wrap:anywhere; word-break:break-word; }
/* Logo afbeelding */
/* ===== LOGO GROTER & NETJES UITGELIJND ===== */
.brand img,
.logo-img{
  height:120px;       /* Desktop grootte */
  width:auto;
  display:block;
}

.nav{
  padding:10px 0;    /* Iets meer ruimte boven/onder */
}

@media (max-width: 920px){
  .brand img,
  .logo-img{
    height:100px;
    width:auto;
    transform: scale(1.1);  /* Maakt hem optisch breder */
    transform-origin:left center;
  }

  .nav{
    padding:12px 0;
  }
}



@media (max-width: 920px){
  .logo-img{
    height:34px;
  }
}

/* --- Blauw accentlaag (subtiel, zoals kozijnwrappers vibe) --- */
:root{
  --blue1: rgba(0, 140, 255, .18);
  --blue2: rgba(0, 80, 180, .14);
}

/* extra blauwe gloed in de achtergrond */
body{
  background:
    radial-gradient(1100px 650px at 18% -12%, rgba(243,122,31,.14), transparent 55%),
    radial-gradient(900px 620px at 85% -10%, var(--blue1), transparent 55%),
    radial-gradient(800px 520px at 70% 40%, var(--blue2), transparent 60%),
    var(--bg);
}

/* kaarten een koele rand */
.card, .hero-card{
  border-color: rgba(120,170,255,.18);
}

/* dropdown panel ook iets blauwer */
.dropdown-panel{
  background: rgba(10, 18, 35, .98);
}
/* Blauwe accent voor badges/headers (zonder oranje CTA te verliezen) */
.kicker{
  background: rgba(0,140,255,.14);
  border-color: rgba(0,140,255,.28);
}

.badge{
  border-color: rgba(120,170,255,.18);
  color: rgba(210,230,255,.85);
}
.notice{
  margin-top:12px;
  padding:10px 12px;
  border:1px solid rgba(120,170,255,.18);
  border-radius:14px;
  background: rgba(0,140,255,.08);
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.notice strong{ color: rgba(235,245,255,.95); }
.notice span{ color: var(--muted); }
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.grid-3 img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: 0.3s ease;
}

.grid-3 img:hover {
  transform: scale(1.03);
}

.color-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.color-list li {
  margin-bottom: 10px;
  font-weight: 500;
}
/* Hero afbeelding */
.hero-media{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
}
.hero-media img{ width:100%; height:auto; display:block; }

/* Kleurblokjes */
.swatches{
  display:flex;
  gap:10px;
  margin-top:10px;
  flex-wrap:wrap;
}
.swatch{
  width:22px;
  height:22px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.25);
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
}
.sw-black{ background:#0b0b0b; }
.sw-white{ background:#ffffff; }
.sw-offwhite{ background:#f3f0e8; }
.sw-anthracite{ background:#2b2f36; }

/* FAQ */
.faq{
  margin-top:10px;
  border:1px solid var(--border);
  border-radius:14px;
  padding:10px 12px;
  background:rgba(255,255,255,.03);
}
.faq summary{
  cursor:pointer;
  font-weight:800;
  color:rgba(255,255,255,.92);
}
.faq p{ margin:8px 0 0; }

/* Sticky WhatsApp */
.sticky-wa{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:999;
  padding:12px 14px;
  border-radius:999px;
  background:var(--accent);
  color:#111;
  font-weight:900;
  border:0;
  box-shadow: 0 14px 34px rgba(0,0,0,.35);
}
.sticky-wa:hover{ filter:brightness(1.05); }
/* ===== Onderhoud & Herstel – styling ===== */

.page { background: #0b1220; color: #e8eef7; }

.container { width: min(1100px, 92%); margin: 0 auto; }

.section { padding: 56px 0; }
.section-head h2 { margin: 0 0 10px; font-size: 28px; }
.section-head p { margin: 0; color: #c9d3e3; max-width: 820px; }

.hero {
  padding: 70px 0 46px;
  background: radial-gradient(900px 400px at 20% 10%, rgba(0,120,255,.18), transparent 60%),
              radial-gradient(900px 400px at 90% 30%, rgba(255,255,255,.08), transparent 60%),
              #0b1220;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero h1 { font-size: 44px; margin: 0 0 10px; }
.lead { font-size: 18px; color: #c9d3e3; max-width: 900px; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 16px; border-radius: 12px; text-decoration: none;
  border: 1px solid rgba(255,255,255,.14);
  color: #e8eef7;
}
.btn.primary {
  background: linear-gradient(180deg, rgba(0,120,255,.95), rgba(0,90,220,.95));
  border-color: rgba(0,120,255,.45);
}
.btn.ghost { background: rgba(255,255,255,.06); }
.btn:hover { transform: translateY(-1px); transition: .2s ease; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  padding: 18px;
}
.card h3 { margin: 0 0 8px; font-size: 18px; }
.card p { margin: 0; color: #c9d3e3; }

.checklist { margin: 18px 0 0; padding-left: 18px; color: #dbe6f5; }
.checklist li { margin: 8px 0; }

.gallery {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.gallery figure {
  margin: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  overflow: hidden;
}
.gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;     /* mooier op desktop */
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}

.gallery figcaption {
  padding: 12px 12px 14px;
  color: #c9d3e3;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.cta {
  padding: 56px 0;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-top: 1px solid rgba(255,255,255,.08);
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.cta h2 { margin: 0 0 8px; font-size: 28px; }
.cta p { margin: 0; color: #c9d3e3; max-width: 760px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.78);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
}
.lightbox.is-open { display: flex; }
.lightbox-img {
  max-width: min(1100px, 96vw);
  max-height: 82vh;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
}
.lightbox-caption {
  color: #e8eef7;
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
  opacity: .9;
}
.lightbox-close {
  position: fixed;
  top: 16px; right: 16px;
  width: 42px; height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
  .gallery img { height: 200px; }
}
:root{
  --bg:#0b0c10;
  --card:#11131a;
  --text:#e9edf5;
  --muted:#b7c0d6;
  --line:rgba(255,255,255,.10);
  --accent:#6ee7ff;
  --accent2:#a78bfa;
  --radius:18px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}

/* Buttons (globaal) */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  text-decoration:none;
  font-weight:650;
  letter-spacing:.2px;
  transition:.18s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,.22);
}
.btn:hover{transform: translateY(-1px); border-color: rgba(255,255,255,.18)}
.btn.primary{
  border-color: transparent;
  background: linear-gradient(90deg, rgba(110,231,255,.95), rgba(167,139,250,.95));
  color:#0b0c10;
  box-shadow: 0 14px 28px rgba(110,231,255,.15);
}
.btn.ghost{ background: rgba(255,255,255,.03); }

/* Cards (globaal) */
.card{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,.22);
}
.card p{color: var(--muted)}
// Sluit diensten dropdown na klik op link
document.addEventListener("DOMContentLoaded", function() {

  const dropdown = document.querySelector(".dropdown");

  if (dropdown) {
    const links = dropdown.querySelectorAll("a");

    links.forEach(link => {
      link.addEventListener("click", function() {
        dropdown.removeAttribute("open");
      });
    });
  }

});
