
:root{
  /* warm white base */
  --bg: #fbfaf3;        /* body */
  --bg-2: #f4f2e8;      /* header/footer */
  --surface: #ffffff;   /* cards */
  --surface-2: #ffffff;

  --text: #111827;
  --text-2: #4b5563;
  --muted: #6b7280;

  --border: rgba(17,24,39,0.10);
  --ring: rgba(17,24,39,0.14);

  --shadow: 0 14px 34px rgba(17,24,39,0.10);
  --shadow-soft: 0 10px 22px rgba(17,24,39,0.08);

  --radius: 18px;
  --container: 1100px;
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial;

  --hero-image: url("/images/hero1.jpg");
}

/* -------------------------
   RESET / BASE
------------------------- */
*{ box-sizing: border-box; margin:0; padding:0; }
html, body{ height:100%; }

body{
  font-family: var(--font);
  color: var(--text);
  line-height: 1.65;
  background: linear-gradient(#bbb5a45b);
}

a{ color: inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

:focus-visible{
  outline: 3px solid var(--ring);
  outline-offset: 3px;
  border-radius: 10px;
}

.hr{
  height: 1px;
  background: rgba(17,24,39,0.10);
  border: 0;
  margin: 18px 0;
}

main{
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px 20px 56px;
}

/* -------------------------
   HEADER
------------------------- */
header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: #94918792;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px 20px;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
  gap: 12px;
}

.logo{
  height: 70px;
  width: auto;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(17,24,39,0.10);
}

/* NAV */
nav{ justify-self: center; }
nav ul{
  display:flex;
  list-style:none;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.70);
  border: 1px solid var(--border);
}
nav a{
  display:inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 1rem;
  color: var(--text);
  transition: background-color .15s ease, transform .15s ease;
}
nav a:hover{
  background: rgba(17,24,39,0.05);
  transform: translateY(-1px);
}
nav a.active{
  background: rgba(17,24,39,0.08);
}

/* LANG */
.lang-switch{
  justify-self: end;
  display:flex;
  gap: 8px;
  align-items:center;
  font-weight: 900;
  font-size: 0.95rem;
}
.lang-switch a{
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.70);
  border: 1px solid var(--border);
  transition: background-color .15s ease, transform .15s ease;
}
.lang-switch a:hover{
  background: rgba(17,24,39,0.05);
  transform: translateY(-1px);
}
.lang-switch a.active{
  background: rgba(17,24,39,0.08);
}

/* -------------------------
   BUTTONS
------------------------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 14px 20px;
  margin-top: 30px;
  border-radius: 999px;
  font-weight: 950;
  cursor:pointer;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.377);
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.btn:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn.primary{
  background: #111111;
  color: #fff;
  border-color: rgba(17,24,39,0.18);
}
.btn.primary:hover{
  box-shadow: 0 14px 34px rgba(17,24,39,0.18);
}

.btn.secondary{
  background: rgba(9, 9, 9, 0.85);
  color: white;
}
.btn.secondary:hover{
  box-shadow: 0 14px 34px rgba(17,24,39,0.18);
}



/* -------------------------
   HERO
------------------------- */
.hero{
  overflow: hidden;
  margin-bottom: 22px;  
  background-size: cover;
  background-position: center;
}

.hero-inner{
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 22px 44px;
  text-align:center;
}

.hero h1{
  color: var(--text);
  font-size: clamp(2rem, 3.2vw, 2.85rem);
  line-height: 1.1;
  letter-spacing: -0.6px;
  margin-bottom: 12px;
  font-weight: 975;
}

.hero-sub{
  color: var(--text-2);
  font-size: 1.08rem;
  max-width: 72ch;
  margin: 0 auto 20px;
  font-weight: 560;
}

.hero-actions{
  display:flex;
  justify-content:center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Trust items (simple) */
.trust-bar{
  margin: 22px auto 0;
  max-width: 980px;
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.trust-item{
  background: rgba(255,255,255,0.80);
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: 14px;
  font-weight: 850;
  font-size: 0.92rem;
  color: var(--text);
  display:flex;
  align-items:center;
  justify-content:center;
}

/* -------------------------
   SECTIONS
------------------------- */
.section{
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 32px 24px;
  margin-bottom: 26px;
}

.section-title{
  text-align:center;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 975;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}

.section-sub{
  text-align:center;
  color: var(--text-2);
  max-width: 78ch;
  margin: 0 auto 18px;
  font-weight: 560;
}

/* -------------------------
   WHAT WE DO (3 cards)
------------------------- */
.cards{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  text-align:center;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.card:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(17,24,39,0.16);
}
.card img{
  width: 46px;
  margin: 0 auto 10px;
  filter: grayscale(1);
  opacity: .90;
}
.card h3{
  font-weight: 950;
  margin-bottom: 8px;
  color: var(--text);
}
.card p{ color: var(--text-2); }

/* grid */
.pricing-grid{
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
  }

/* card */
.type-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column; /* belangrijk */
}

/* image */
.type-img{
  width: 100%;
  height: 300px;          /* vaste hoogte = consistent */
  object-fit: cover;
  display: block;
  padding: 15px;
  border-radius: 30px;
}

/* body */
.type-body{
  padding: 18px 16px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3px;
}

/* title */
.type-body h3{
  font-size: 1.05rem;
  font-weight: 950;
  color: var(--text);
  line-height: 1.15;
}

/* description */
.type-body p{
  font-size: 0.90rem;
  color: var(--text-2);
  line-height: 1.35;
  max-width: 30ch;
}


/* label kleiner & subtieler */
.price-label{
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: .45px;
  text-transform: uppercase;
  color: rgba(17,24,39,0.55);
  margin-bottom: 2px;
}

/* grote prijs iets strakker */
.price-main{
  font-size: 1rem;     /* iets kleiner = rustiger */
  font-weight: 975;
  line-height: 1.02;
  margin: 0;
}

/* incl btw echt onder de prijs */
.price-sub{
  font-size: 0.85rem;
  color: rgba(17,24,39,0.55);
  margin-top: 1px;
  line-height: 1.1;
}

.price-sub span{
  font-size: 0.72rem;
  color: rgba(17,24,39,0.45);
  margin-left: 4px;
}

/* kleine scheiding tussen intrede & uittrede */
.price-block + .price-block{

  border-top: 1px dashed rgba(17,24,39,0.12);
  padding: 5px;
}


/* CTA onder pricing */
.center-cta{
  margin-top: 26px;
  text-align: center;
}

/* hint */
.hint{
  margin-top: 10px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

/* zekerheid: geen overlays */
.type-overlay{
  display: none !important;
}



/* -------------------------
   CONTACT FORM
------------------------- */
#contact{
  box-shadow: none;
}

.contact-form form{
  max-width: 760px;
  margin: 0 auto;
  display:flex;
  flex-direction:column;
  gap: 12px;
}

label{ font-weight: 850; color: var(--text); }

input, textarea{
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid rgba(17,24,39,0.16);
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}

input::placeholder, textarea::placeholder{ color: rgba(17,24,39,0.40); }

input:focus, textarea:focus{
  border-color: rgba(17,24,39,0.28);
  box-shadow: 0 0 0 4px rgba(17,24,39,0.10);
  outline: none;
}
/* submit button (form) */
.btn-submit{
  margin-top: 6px;
  border: 0;
  padding: 14px 20px;
  border-radius: 999px;
  background: #111827;
  color:#fff;
  font-weight: 975;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-submit:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

/* -------------------------
   FOOTER — simple (header-like color)
   Keeps existing class names: site-footer, footer-inner, footer-left, footer-meta, footer-links, footer-bottom
------------------------- */
.site-footer{
  background: #94918792;
  border-top: 1px solid var(--border);
  padding: 12px 0;
  color: var(--text);
}

.footer-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  align-items: start;
}

/* property + contact side-by-side (works even if you used two .footer-left blocks) */
.footer-left{
  display: grid;
  grid-template-columns: 1fr 1fr;
  
}

.footer-left h4{
  font-size: 0.95rem;
  margin-bottom: 6px;
  font-weight: 800;
  color: var(--text);
}

.footer-meta{
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--text-2);
}

.footer-meta span{ font-weight: 700; color: rgba(17,24,39,0.55); }
.footer-meta strong{ font-weight: 800; color: var(--text); }

.footer-meta a{
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 800;
}

.footer-meta a:hover{
  text-decoration: underline #706f69 solid 3px;
}

.footer-links{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a{
  color: var(--text);
  font-weight: 700;
  text-decoration: underline; 
  text-underline-offset: 3px;
}

.footer-links a:hover{
  text-decoration: underline #706f6c solid 3px;
}

.footer-bottom{
  max-width: var(--container);
  margin: 10px auto 0;
  padding: 10px 20px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-2);
}

@media (max-width: 1000px){

  /* BODY */
  body{
    background: linear-gradient(#bbb5a45b);
  }

  /* HEADER */
  header{
    background: #94918792;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .header-container{
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  .logo{
    height: 64px;
    margin: 0 auto;
  }

  /* NAV */
  nav{
    justify-self: center;
    
  }

  nav ul{
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    padding: 6px;
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(17,24,39,0.10);
  }

  nav a{
    font-size: 0.95rem;
    padding: 9px 14px;
  }

  /* LANGUAGE SWITCH */
  .lang-switch{
    gap: 6px;
  }

  .lang-switch a{
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(17,24,39,0.10);
    font-size: 0.9rem;
  }

  /* HERO */
  .hero-inner{
    padding: 44px 18px 36px;
  }

  .hero h1{
    font-size: clamp(1.7rem, 5vw, 2.2rem);
    line-height: 1.15;
  }

  .hero-sub{
    font-size: 1rem;
  }

  .hero-actions{
    gap: 10px;
  }

  /* TRUST BAR */
  .trust-bar{
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .trust-item{
    font-size: 0.85rem;
    padding: 9px 10px;
  }

  /* PRICING */
  .pricing-grid{
    gap: 16px;
    display: list-item;
  }

  .price-main{
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .type-img{
    padding: 15px;
    border-radius: 50px;
    height: 250px;
  }

  .type-card{
    margin-bottom: 20px;
  }

  /* FOOTER */
  .site-footer{
    background: #94918792;
  }

  .footer-inner{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-links{
    justify-content: center;
    gap: 0px;
  }
}