:root {
  --beige: #f5f0e6;
  --text: #1f2937;
  --text-light: #4b5563;
  --black: #000000;
  --muted: #6b7280; 
 --accent: #3b2813ca;
  --accent-2: black;
  --hr: #e6eefc;
  --shadow: 0 6px 20px rgba(15,111,191,0.08);
  --radius-lg: 14px;
  --radius: 8px;
  --container-max: 1100px;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* Base */
* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }
body {
  font-family: var(--font-sans);
  background: var(--beige);
  color: var(--text);
  line-height: 1.55;
  font-size: 16px;
}

/* ---------------------------------
   HEADER
---------------------------------- */
header {
  background: var(--beige);
  border-bottom: 1px solid var(--hr);
  position: relative;
}

.header-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 10px 20px;
}

/* Logo links */
.logo img {
  height: 90px;
  width: auto;
  border-radius: 13px;
  justify-self: start;
}

/* Nav in het midden */
nav {
  z-index: 2;
  justify-self: end;
}

nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;         
  list-style: none;
  padding-top: 20px;  
  margin: 0;
  font-family: 'Trebuchet MS', sans-serif;
  font-weight: bold;
  font-size: 18px;  
}


nav a {
  text-decoration: none;
  color: var(--accent-2);
  padding: 6px 12px;
  border-radius: 6px;
  transition: 0.16s;
}

nav a:hover {
  background: rgba(15,111,191,0.08);

  transform: translateY(-1px);
}

nav a.active {
  text-decoration: underline;
 
}

/* Language Switch rechtsboven */
.lang-switch {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 0.95rem;
  font-weight: bold;
  z-index: 10;
}

.lang-switch a {
  text-decoration: none;
  color: var(--accent-2);
  margin: 0 6px;
  transition: color 0.2s ease;
}

.lang-switch a:hover { color: var(--accent); }
.lang-switch .active { text-decoration: underline; }

/* ---------------------------------
   MAIN / FAQ SECTION
---------------------------------- */
main {
  padding: 10px 20px 50px ;
}


h1 {
  font-size: 2.1rem;
  text-align: center;
  margin-bottom: 10px;
  color: var(--black);
  padding-bottom: 10px;
}

.intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--text-light);
  font-size: 1.05rem;
  padding-bottom: 20px;
}

h2 {
  margin: 40px 0 20px;
  font-size: 1.6rem;
  font-weight: 700;
  color: black;
  border-left: 6px solid var(--accent);
  padding-left: 12px;


}

/* FAQ ACCORDIONS */
details {
  background: #ffffff;
  border: 1px solid rgba(15,111,191,0.15);
  padding: 18px 20px;
  margin-bottom: 14px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: background 0.2s ease;
}

details:hover {
  background: rgba(255,255,255,0.92);
}

summary {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-2);
  list-style: none;
  cursor: pointer;
  position: relative;
  padding-right: 26px;
}

summary::after {
  content: "+";
  font-size: 1.4rem;
  position: absolute;
  right: 0;
  top: 0;
  color: rgb(35, 134, 169);
  transition: transform 0.25s ease;
}

details[open] summary::after {
  content: "–";
  transform: rotate(180deg);
}

details p {
  margin-top: 14px;
  color: var(--text-light);
  font-size: 1rem;
}

/* HR */
hr {
  border: none;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
  margin: 24px 0;
  border-radius: 3px;
}

/* ---------------------------------
   FOOTER
---------------------------------- */
.site-footer {
  background-color: var(--beige);
  color: var(--text);
  padding: 0px 10px 10px 10px;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  width: 100%;
  margin: 0 auto 30px;
}

.footer-col h4 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: black;
  text-decoration: underline;
}

.footer-logo {
  height: 50px;
  margin-bottom: 10px;
  border-radius: 7px;
}

.footer-company-name {
  font-weight: 900;
  margin-bottom: 0px;
  text-decoration: underline;
}

.footer-small { 
  font-size: 0.9rem; 
  color: var(--text-light); 
  margin-bottom: 6px; 
}

.footer-small a {
  color: black;
  font-weight: bold;
  text-decoration: none;
}
.footer-small a:hover {
  text-decoration: underline;
}

.footer-links ul,
.footer-legal ul {
  list-style: none;
  font-weight: bold;
  margin: 0;
  padding: 0;
}

.footer-links a,
.footer-legal a {
  color: black;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover,
.footer-legal a:hover { color: black; text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.2);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--accent-2);
  margin: 3px 0;
}

/* ---------------------------------
   RESPONSIVE
---------------------------------- */
@media (max-width: 1000px) {

  /* Header: stacked layout */
  .header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    padding-left: 20px;
    position: relative;
  }

  /* Logo links boven */
  .logo {
    align-self: flex-start;
  
  }

  .logo img {
    height: 70px;
  }

  /* Taal switch blijft rechtsboven */
  .lang-switch {
    position: absolute;
    top: 10px;
    right: 15px;
  }

  /* NAV blijft perfect in het midden */
  nav {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 5px;
  }

  nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 10px 0 0 0;
    margin: 0 auto;
  }

  main { 
    padding: 28px 16px 60px; 
  }

  hr {
    margin: 25px 0px 10px 0px;
  }
}


@media (max-width: 520px) {
  .logo img { height: 60px; }
  nav ul { gap: 10px; }
  .footer-inner { grid-template-columns: 1fr; gap: 20px; }
  .footer-col h4 { font-size: 1.1rem; }
  .footer-bottom p { font-size: 0.8rem; }
}
