:root {
  --brand:#056964;
  --dark:#233d44;
  --accent:#987248;
}



/* Basis */
html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:#f8fafc;
}

/* Navbar */
.navbar {
  transition: box-shadow .2s ease, background-color .2s ease;
}
.navbar.scrolled {
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  background-color:#fff;
}
.navbar .nav-link {
  font-weight:500;
  padding-left: 10px;
  padding-right: 10px;
}
.navbar .nav-link:hover {
  color:var(--brand);
}

/* Hero */
.hero {
  position:relative;
  min-height:80vh;
  display:grid;
  place-items:center;
  color:#fff;
}
.hero-media {
  position:absolute;
  inset:0;
  z-index:-2;
  object-fit:cover;
  width:100%;
  height:100%;
}
.hero::after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.45),rgba(0,0,0,.35));
  z-index:-1;
}
.lead-lg {
  font-size:1.15rem;
}

/* Typografie & secties */
.section-title {
  font-weight:700;
  color:var(--dark);
}

/* Buttons */
.btn-primary {
  background-color:var(--brand);
  border-color:var(--brand);
}
.btn-primary:hover {
  background-color:var(--accent);
  border-color:var(--accent);
}
.btn-outline-primary {
  color:var(--brand);
  border-color:var(--brand);
}
.btn-outline-primary:hover {
  background-color:var(--brand);
  color:#fff;
}

/* Kaartjes diensten */
.service-card img {
  aspect-ratio:4/3;
  object-fit:cover;
}
.icon-badge {
  width:44px;
  height:44px;
  border-radius:50%;
  display:inline-grid;
  place-items:center;
  background:#eaf6f5;
  color:var(--brand);
}

/* Galerij */
.gallery img {
  cursor:pointer;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:.75rem;
  transition:transform .15s ease, box-shadow .15s ease;
}
.gallery img:hover {
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(0,0,0,.15);
}

/* Footer */
.footer {
  background:var(--dark);
  color:#e2e8f0;
}
.footer a {
  color:#cbd5e1;
  text-decoration:none;
}
.footer a:hover {
  color:var(--accent);
}

/* Kleine tweaks */
.accordion-button:focus {
  box-shadow:none;
}



.logo {max-height: 75px;}
.navbar-nav li.active > a {
  color: var(--brand);
  font-weight: 600;
}

/* Basis van je menu */
#nav-full {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
}

/* LI's laten gedragen als nav-items */
#nav-full > li {
  margin-left: 1.5rem;
}

/* Links laten ogen als Bootstrap nav-link */
#nav-full > li > a {
  display: block;
  padding: .5rem 0;
  color: #424242;
  text-decoration: none;
  font-weight: 500;
}

#nav-full > li > a:hover {
  color: var(--brand);
}

/* Actieve pagina (Structure zet class="active" op li) */
#nav-full > li.active > a,
#nav-full > li.active.first > a {
  color: var(--brand);
  border-bottom: 2px solid var(--brand);
}

/* =========================
   BASIS HOOFDMENU
   ========================= */

#nav-full {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
}

/* Hoofditems */
#nav-full > li {
  margin-left: 1.5rem;
  position: relative;
}

/* Hoofdlinks */
#nav-full > li > a {
  display: block;
  padding: .5rem 0;
  color: #424242;
  text-decoration: none;
  font-weight: 500;
}

#nav-full > li > a:hover {
  color: var(--brand);
}

/* Actieve pagina */
#nav-full > li.active > a,
#nav-full > li.active.first > a {
  color: var(--brand);
  border-bottom: 2px solid var(--brand);
}


/* =========================
   SUBMENU (UL IN LI)
   ========================= */

#nav-full > li > ul {
  list-style: none;
  margin: 0;
  padding: .5rem 0;

  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;

  background: #fff;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);

  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 100;
}

/* Submenu tonen op hover */
#nav-full > li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/* =========================
   SUBMENU ITEMS
   ========================= */

#nav-full > li > ul > li {
  position: relative;
}

#nav-full > li > ul > li > a {
  display: block;
  padding: .5rem 1rem;
  color: #424242;
  text-decoration: none;
  font-weight: 400;
  white-space: nowrap;
  transition: background .15s ease, color .15s ease, padding .15s ease;
}

/* Hover submenu link */
#nav-full > li > ul > li > a:hover {
  background: rgba(0,0,0,.04);
  color: var(--brand);
  padding-left: 1.25rem;
}

/* Actief submenu item */
#nav-full > li > ul > li.active > a {
  color: var(--brand);
  font-weight: 500;
}


/* =========================
   UX BUFFER (voorkomt flikkeren)
   ========================= */

#nav-full > li > ul::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}



/* FAQ styling */
.accordion-button {
  background-color:#f4f4f4;
  color:var(--dark);
  font-weight:500;
}
.accordion-button:not(.collapsed) {
  background-color:var(--brand);
  color:#fff;
  box-shadow:none;
}
.accordion-button:focus {
  box-shadow:none;
}
.accordion-item {
  border:none!important;
}


/* Mobiel: stack items onder elkaar */
@media (max-width: 991.98px) {
  #nav-full {
    flex-direction: column;
  }

  #nav-full > li {
    margin-left: 0;
  }

  #nav-full > li > a {
    padding: .5rem 0;
  }
}

