/* =========================================================
   STYLE.CSS - PUBLIC MARKETING SITE (INDEX.HTML)
   ========================================================= */

:root {
  /* --- HET 'ZUIDWEST' PALET --- */
  --bg: #FEFDF9;            
  --white: #ffffff;
  --bg-light: #F6F3ED;      
  --ink: #4F463D;           
  --ink-2: #362E26;         
  --accent: #CD7253;        /* Terracotta */
  --accent-hover: #B55E40; 
  --green: #7E9F9C;         /* 'Bleu Pastel' */
  --muted: #9C9488;        
  --muted-2: #D1CEC6;      
  --shadow: 0 20px 45px rgba(79, 70, 61, 0.07); 
  --radius: 12px;           
  --max: 1100px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", sans-serif;
  background-color: var(--bg);
  background-image: linear-gradient(to bottom, #FFFBF5 0%, var(--bg) 100%);
  padding-top: 100px; /* Nodig voor fixed header */
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; transition: all 0.2s ease; }
a:hover { color: var(--accent); }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.ink { color: var(--ink-2); }
.spacer { height: 20px; }

/* Typografie */
h1, h2, h3, h4, h5 { font-family: "Lora", serif; color: var(--ink-2); margin: 0 0 1rem; font-weight: 500; }
p { line-height: 1.8; margin-bottom: 1.2rem; font-size: 17px; }
.section-title { font-size: clamp(32px, 4vw, 46px); margin-bottom: 16px; color: var(--ink-2); }
.section-lead { margin: 0 0 32px; color: var(--muted); font-size: 20px; line-height: 1.6; max-width: 700px; font-family: "Lora", serif; font-style: italic; }

/* Header & Nav */
.topbar {
  position: fixed; top: 0; left: 0; right: 0;
  width: 100%; height: 100px; z-index: 9000;
  background: rgba(254, 253, 249, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.03);
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 100px; }
.logo { height: 100px; width: auto; transition: height 0.3s ease; }
.logo-foot { height: 70px; opacity: 0.8; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-size: 16px; color: var(--ink); font-weight: 500; position: relative; }
.nav a:hover, .nav a.active { color: var(--accent); }
.nav a.active::after { content: ""; display: block; width: 100%; height: 2px; background: var(--accent); position: absolute; bottom: -5px; opacity: 0.6; }

/* Mobile Nav */
.iconbtn { display: none; border: 0; background: transparent; width: 44px; height: 44px; cursor: pointer; align-items: center; justify-content: center; margin-top: 5px; }
.burger span, .burger::before, .burger::after { background: var(--ink-2); height: 2px; width: 24px; position: absolute; left: 10px; }
.burger::before { top: 12px; } .burger::after { bottom: 12px; } .burger span { top: 21px; }
.mobile-nav { background: #FFFBF5; border-bottom: 1px solid rgba(0,0,0,0.05); }
.mobile-nav a { font-family: "Lora", serif; font-size: 20px; color: var(--ink-2); }

/* Buttons */
.btn {
  border: 0; cursor: pointer; background: var(--accent); color: #fff;
  font-weight: 600; border-radius: 8px; 
  box-shadow: 0 4px 12px rgba(205, 114, 83, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s;
  height: 36px; padding: 0 18px; font-size: 14px; font-family: "Inter", sans-serif;
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); background: var(--accent-hover); box-shadow: 0 8px 20px rgba(205, 114, 83, 0.35); color: #fff; }
.btn-cta { margin-top: 8px; }

/* --- NIEUW: SECUNDAIRE KNOP (OUTLINE) --- */
.btn-outline {
    background-color: transparent;
    border: 2px solid var(--ink);
    color: var(--ink);
    padding: 12px 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: none; 
}

.btn-outline:hover {
    background-color: var(--ink);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Hero */
.hero { padding: 80px 0 60px; text-align: center; }
.pill { display: inline-flex; align-items: center; gap: 12px; padding: 8px 18px; border-radius: 50px; background: #FFF; border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 4px 10px rgba(0,0,0,0.03); color: var(--ink); font-size: 14px; font-weight: 500; margin-bottom: 30px; }
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.hero-title { font-size: clamp(40px, 6vw, 76px); line-height: 1.1; margin: 0 0 20px; color: var(--ink-2); }
.hero-kicker { font-family: "Inter", sans-serif; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 15px; font-weight: 700; }
.hero-lines { font-family: "Lora", serif; font-size: clamp(22px, 4vw, 34px); margin-bottom: 30px; line-height: 1.4; }
.hero-lines div { color: var(--green); font-style: italic; }
.hero-desc { margin: 0 auto; max-width: 600px; font-size: 19px; color: var(--ink); margin-bottom: 40px; }

/* Grid & Cards */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.card { background: var(--white); border: 0; border-radius: var(--radius); box-shadow: var(--shadow); padding: 40px; }
.card.flat { background: transparent; box-shadow: none; padding: 0; }
.card.warm-highlight { background-color: var(--accent); background-image: linear-gradient(135deg, var(--accent) 0%, #D88566 100%); color: #fff; transform: rotate(-1deg); box-shadow: 0 20px 40px rgba(205, 114, 83, 0.25); transition: transform 0.3s ease; border-radius: 4px; }
.card.warm-highlight:hover { transform: rotate(0deg) scale(1.02); }
.card.warm-highlight blockquote { color: #fff; border-left-color: rgba(255,255,255,0.4); }
.card.warm-highlight p, .card.warm-highlight strong { color: rgba(255,255,255,0.95); }

.value { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px;}
.value .item { padding: 24px; border-radius: 12px; background: #fff; border: 1px solid rgba(0,0,0,0.03); box-shadow: 0 6px 15px rgba(0,0,0,0.03); transition: transform 0.2s; }
.value .item:hover { transform: translateY(-3px); }
.value .k { color: var(--accent); font-family: "Lora", serif; font-size: 19px; margin-bottom: 8px; font-weight: 600;}
blockquote { font-family: "Lora", serif; font-size: 26px; font-style: italic; color: var(--ink-2); line-height: 1.5; border-left: 3px solid var(--accent); padding-left: 25px; margin: 0 0 20px; }

/* Tabs */
.services-nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-bottom: 40px; }
.tab-card { background: transparent; border: 0; border-bottom: 3px solid #E5E0D8; padding: 15px 5px; text-align: center; cursor: pointer; transition: all 0.3s; border-radius: 0; }
.tab-card:hover { border-color: var(--accent); opacity: 0.8; }
.tab-card.active { border-color: var(--accent); background: transparent; box-shadow: none; }
.tab-card.active h3 { color: var(--accent); }
.tab-card h3 { font-family: "Inter", sans-serif; font-size: 16px; margin: 0; color: var(--muted); }
.tab-card span { display: none; } 
.content-box { background: var(--white); padding: 50px; border-radius: var(--radius); box-shadow: var(--shadow); border: 0; }
.tab-content { display: none; animation: fadeIn 0.6s ease; }
.tab-content.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.feature-list li { margin-bottom: 14px; padding-left: 30px; position: relative; font-size: 16px;}
.feature-list li::before { content: "✓"; color: var(--green); position: absolute; left: 0; font-weight: bold; font-size: 18px; }
.testimonial-note { background-color: #fff !important; padding: 40px; display: flex; align-items: center; justify-content: center; border-radius: 2px; border: 1px solid rgba(0,0,0,0.04); box-shadow: 0 10px 25px rgba(0,0,0,0.04) !important; transform: rotate(1.5deg); position: relative; transition: transform 0.3s ease; }
.testimonial-note:hover { transform: rotate(0deg) scale(1.02); }
.testimonial-note::before { content: ""; display: block; width: 100px; height: 30px; background: rgba(126, 159, 156, 0.2); position: absolute; top: -12px; left: 50%; transform: translateX(-50%) rotate(-2deg); backdrop-filter: blur(2px); }
.testimonial-note p { font-style: italic; text-align: center; margin: 0; color: var(--ink); font-size: 18px; }

/* Table, Map, Contact, FAQ */
.table-wrapper { width: 100%; overflow-x: auto; border-radius: 12px; box-shadow: var(--shadow); margin-top: 20px; background: white; border: 1px solid rgba(0,0,0,0.05); }
table { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--white); min-width: 700px; }
thead th { background: #F8F5F0; color: var(--ink-2); font-family: "Inter", sans-serif; font-size: 15px; font-weight: 700; padding: 20px 20px; text-align: left; vertical-align: top; border-bottom: 2px solid #EAE5D5; }
.th-price { display: block; margin-top: 5px; color: var(--accent); font-size: 15px; font-weight: 700; }
td { padding: 14px 20px; border-bottom: 1px solid #F0F0F0; font-size: 15px; color: var(--ink); vertical-align: middle; font-family: "Inter", sans-serif; line-height: 1.4; }
td:first-child { font-weight: 600; color: var(--ink-2); width: 30%; }
tr.section-row td { background: #FCFBF8; color: var(--green); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 12px; padding-top: 25px; padding-bottom: 10px; border-top: 1px solid #EEE; }

.static-map-container { display: block; margin-top: 0 !important; margin-bottom: 0 !important; position: relative; border-radius: 16px; overflow: hidden; background: #fff; padding: 12px; box-shadow: 0 20px 50px rgba(0,0,0,0.08); transform: rotate(1deg); transition: transform 0.3s ease; }
.static-map-container:hover { transform: rotate(0deg) scale(1.02); }
.zoom-hint { position: absolute; bottom: 25px; right: 25px; background: rgba(255, 255, 255, 0.95); color: var(--ink-2); padding: 8px 16px; border-radius: 8px; font-size: 13px; font-weight: 600; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.thuisbasis-row { display: flex; align-items: center; gap: 20px; margin-top: 30px; margin-bottom: 30px; }
.icon-circle-bg { width: 56px; height: 56px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 5px 20px rgba(0,0,0,0.06); flex-shrink: 0; }
.icon-circle-bg svg { stroke: var(--accent); } 
.tag-container { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.tag-pill { background: #FFF; border: 1px solid #EAE5D5; padding: 6px 14px; border-radius: 30px; font-size: 13px; color: var(--green); font-weight: 600; }

/* --- AANGEPAST CONTACTFORMULIER (KLEINERE AFSTANDEN) --- */
#form-fields { 
    display: flex; flex-direction: column; 
    gap: 12px; /* VERLAAGD: Ruimte tussen de rijen */
}
.row { 
    display: grid; grid-template-columns: 1fr 1fr; 
    gap: 12px; /* VERLAAGD: Ruimte tussen kolommen */
}
#form-fields > div { margin-bottom: 0; } 
label { display: block; font-size: 15px; color: var(--ink-2); font-weight: 600; margin-bottom: 8px; font-family: "Lora", serif; } /* Iets minder margin onder label */

input, select, textarea { 
    width: 100%; padding: 14px; /* Iets minder padding */
    border-radius: 8px; border: 1px solid #E0DCD5; background: #FFFFFF; font-size: 16px; color: var(--ink); font-family: "Inter", sans-serif; transition: all 0.3s ease; 
    margin-bottom: 0; /* Margin weg, gap regelt het */
}
input:focus, select:focus, textarea:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 0 4px rgba(205, 114, 83, 0.15); }
textarea { min-height: 140px; resize: vertical; }

form .btn-cta { width: 100%; font-size: 18px; padding: 20px; height: auto; background: var(--ink-2); border-radius: 8px; letter-spacing: 1px; box-shadow: none; margin-top: 10px; }
form .btn-cta:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(205, 114, 83, 0.3); }
#contact .card {
    background: #FFF;
    padding: 50px;
    border: 1px solid #F0F0F0;
    margin-top: 60px;  /* <-- DIT VOEGT RUIMTE TOE BOVEN HET BLOK */
}
.secret-number { filter: blur(6px); opacity: 0.6; cursor: pointer; transition: all 0.4s ease; display: inline-block; padding: 0 5px; user-select: none; background: rgba(0,0,0,0.05); border-radius: 4px; }
.secret-number:hover { filter: blur(0); opacity: 1; user-select: text; background: transparent; }

/* FAQ */
.faq { display: grid; gap: 16px; max-width: 800px; margin: 0 auto; }
details { background: var(--white); border: 1px solid rgba(0,0,0,0.05); border-radius: 12px; padding: 22px 26px; box-shadow: 0 4px 12px rgba(0,0,0,0.02); transition: all 0.3s ease; }
details[open] { box-shadow: 0 8px 24px rgba(205, 114, 83, 0.15); border-color: var(--accent); }
summary { cursor: pointer; list-style: none; color: var(--ink-2); font-family: "Lora", serif; font-weight: 600; font-size: 19px; display: flex; align-items: center; justify-content: space-between; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-size: 24px; color: var(--accent); font-weight: 300; margin-left: 10px; transition: transform 0.3s; }
details[open] summary::after { content: "−"; transform: rotate(180deg); }
details[open] summary { color: var(--accent); margin-bottom: 12px; border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 12px; }
details p { margin: 0; color: var(--muted); line-height: 1.8; font-size: 17px; }

/* Story */
.story-container { max-width: 750px; margin: 0 auto; }
.story-text { font-size: 19px; line-height: 1.8; color: var(--ink); margin-bottom: 2rem; white-space: pre-line; }
.story-photo-frame { background: #fff; padding: 15px 15px 50px 15px; box-shadow: 0 15px 35px rgba(0,0,0,0.06); transform: rotate(2deg); margin: 50px auto; max-width: 480px; border: 1px solid rgba(0,0,0,0.02); transition: transform 0.4s ease; }
.story-photo-frame:hover { transform: rotate(-1deg) scale(1.02); }
.story-photo-frame img { width: 100%; height: auto; display: block; }

/* Flags */
.lang-switch { display: flex; gap: 10px; align-items: center; margin-right: 15px; margin-top: 5px; }
.lang-btn { border: 0; background: transparent; cursor: pointer; padding: 0; width: 24px; opacity: 0.4; transition: 0.2s; }
.lang-btn:hover, .lang-btn.active { opacity: 1; transform: scale(1.1); }
.lang-btn img { border-radius: 4px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }

/* Responsive */
@media (max-width: 980px) {
  .nav { display: none; } .iconbtn { display: flex; }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .services-nav { grid-template-columns: 1fr 1fr; }
  .static-map-container { transform: rotate(0); margin-top: 30px !important; }
  .card.warm-highlight, .testimonial-note, .story-photo-frame { transform: none !important; }
}
@media (max-width: 600px) {
    .row { grid-template-columns: 1fr; gap: 20px; } /* Minder gap op mobiel */
    #contact .card { padding: 30px; }
    #form-fields { gap: 15px; }
    .hero-title { font-size: 42px; }
    .topbar-inner { height: 80px; } 
    .topbar { height: 80px; }
    .logo { height: 50px; }
    body { padding-top: 80px; }
}
/* =========================================
   FIX VOOR SCROLLEN & RUIMTE
   ========================================= */

html {
    scroll-behavior: smooth; /* Zorgt voor het 'glijdende' effect */
}

/* Dit lost het probleem op dat de tekst achter het menu verdwijnt */
section {
    /* Zorg dat dit getal iets groter is dan de hoogte van je navigatiebalk */
    scroll-margin-top: 100px; 
}

/* Dit zorgt voor meer lucht/ruimte tussen de blokken onderling */
section {
    padding-top: 60px;    /* Ruimte aan de bovenkant binnen het blok */
    padding-bottom: 60px; /* Ruimte aan de onderkant binnen het blok */
    margin-bottom: 40px;  /* Extra witruimte tussen de verschillende secties */
}

/* Specifiek voor mobiel kan de ruimte soms iets minder zijn */
@media (max-width: 768px) {
    section {
        scroll-margin-top: 100px;
        padding-top: 40px;
        padding-bottom: 40px;
    }
}
.chat-date-divider { text-align:center; margin:15px 0 10px 0; }
.chat-date-label { background:#f3f4f6; color:#94a3b8; font-size:11px; padding:4px 10px; border-radius:12px; font-weight:600; }
.chat-time { font-size:10px; color:#999; margin-top:2px; }