/* ===================================================================
   Calicura — Eén geconsolideerde stylesheet
   Brand: #6a69a7  •  Accent: #00cb95
   =================================================================== */

/* ---------- Design tokens ---------- */
:root{
  --brand:#6a69a7;         /* primair paars */
  --accent:#00cb95;        /* turkoois accent */

  --sage:#5da78f;
  --rose:#d79a8b;

  --ink:#2c2438;           /* warme tekstkleur */
  --muted:#6f687d;         /* subtiele tekst */
  --cream:#fff7f0;         /* paginabg */
  --linen:#faf1ea;         /* kaartbg */
  --line:rgba(44,36,56,.12);

  --radius:18px;
  --shadow:0 18px 40px rgba(44,36,56,.12);
  --ring:0 0 0 3px rgba(106,105,167,.28);

  --cursor-x:14;           /* stethoscoop hotspot */
  --cursor-y:14;

  /* Reviews: verplegingskruis */
    /* Reviews: verplegingskruis (lege / volle versie) */
  --review-empty: url("../assets/icons/cross1.png");
  --review-filled: url("../assets/icons/cross2.png");
  --review-icon-size: 32px;

}

/* ---------- Basissetup ---------- */
*{ box-sizing:border-box; }

html,body{
  margin:0;
  color:var(--ink);
  font:16px/1.55 system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(0,203,149,.10), transparent 60%),
    radial-gradient(900px 480px at -10% 6%, rgba(106,105,167,.10), transparent 60%),
    repeating-linear-gradient(0deg, rgba(0,0,0,.014) 0 2px, transparent 2px 4px),
    var(--cream);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

img{ max-width:100%; height:auto; display:block; }

h1,h2,h3{ letter-spacing:.2px; }

:focus-visible{
  outline:3px solid rgba(106,105,167,.35);
  outline-offset:2px;
  border-radius:10px;
}

.sr-only{
  position:absolute!important;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,1px,1px);
  white-space:nowrap;
  border:0;
}

.wrap{
  width:min(1240px, 94vw); /* was 1100px → nu breder */
  margin-inline:auto;
  padding:16px;
}

.lead{ color:var(--muted); font-size:1.05rem; }
.hint{ color:var(--muted); }
.text-sky{ color:var(--accent); }

/* ---------- Topbar ---------- */
.topbar{
  position:sticky;
  top:0;
  z-index:30;
  background:linear-gradient(180deg,#ffffffcc,#ffffffbf);
  border-bottom:1px solid var(--line);
  backdrop-filter:saturate(140%) blur(6px);
  -webkit-backdrop-filter:saturate(140%) blur(6px);
}

.topbar .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand{
  display:flex;
  align-items:center;
  gap:.6rem;
  font-weight:800;
  color:var(--brand);
  text-decoration:none;
  font-size:20px;
}

.brand-logo{
  height:64px;
  width:auto;
  border-radius:8px;
  box-shadow:0 2px 8px rgba(0,0,0,.06);
}

.mainnav a{
  color:inherit;
  text-decoration:none;
  margin-left:16px;
  opacity:.9;
}

.mainnav a:hover{ color:var(--brand); }
.mainnav [aria-current="page"]{ opacity:1; font-weight:600; }

/* ---------- Hero ---------- */
.hero{
  padding:18px 0 8px;
  background:
    radial-gradient(circle at 60% 18%, rgba(0,203,149,.14), transparent 60%),
    var(--cream);
}

.hero-grid{
  display:grid;
  gap:22px;
  align-items:center;
  grid-template-columns:1.1fr .9fr;
}

@media (max-width: 900px){
  .hero-grid{ grid-template-columns:1fr; }
}

.hero-copy .region{
  color:var(--muted);
  margin:0 0 .25rem;
}

.hero-copy h1{
  font-size:clamp(1.8rem, 1.2rem + 2vw, 2.5rem);
  margin:.2rem 0 .4rem;
}

.hero-copy h1 strong{ color:var(--brand); }

.cta-row{
  display:flex;
  gap:.6rem;
  margin:.8rem 0;
}

.trust-list{
  margin:.6rem 0 0;
  padding-left:1.2rem;
  color:var(--muted);
}

/* ---------- Buttons ---------- */
.btn{
  --bg:#fff;
  --fg:var(--ink);
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:.5rem;
  padding:.6rem 1rem;
  border-radius:12px;
  border:1px solid var(--line);
  background:var(--bg);
  color:var(--fg);
  text-decoration:none;
  cursor:pointer;
  transition:
    filter .15s ease,
    box-shadow .15s ease,
    background .15s ease,
    transform .04s ease;
}

.btn:hover{
  filter:brightness(1.03);
  box-shadow:0 8px 18px rgba(0,0,0,.08);
}

.btn:active{ transform:translateY(1px); }

.btn.primary{
  --bg:var(--brand);
  --fg:#fff;
  border-color:transparent;
}

.btn.primary:hover{
  background:#5b59a0;
  color:#fff;
}

.btn.alert{
  --bg:var(--accent);
  --fg:#0b1f18;
  border:none;
  box-shadow:0 4px 12px rgba(0,203,149,.28);
}

.btn.alert:hover{ background:#00b386; }

.btn.ghost{
  --bg:#fff;
  --fg:var(--brand);
  border-color:var(--brand);
}

.btn.ghost:hover{ background:rgba(106,105,167,.06); }

/* Laadtoestand voor submitknop */
.btn.is-loading{
  pointer-events:none;
  opacity:.7;
}

.btn.is-loading::after{
  content:"";
  width:1em;
  height:1em;
  margin-left:.5rem;
  border-radius:50%;
  border:2px solid currentColor;
  border-right-color:transparent;
  display:inline-block;
  animation: spin .7s linear infinite;
  vertical-align:-2px;
}

@keyframes spin{ to{ transform:rotate(360deg); } }

/* ---------- Cards & sectiekoppen ---------- */
.card,
.form-card{
  background:var(--linen);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.cozy{ padding:24px; }

.section{ padding:28px 0; }

.section-head h3{
  margin:0 0 .2rem;
}

.section-head .hint{
  margin:0 0 .6rem;
}

.section-head{
  position:relative;
  padding-bottom:.6rem;
}

.section-head::after{
  content:"";
  display:block;
  height:2px;
  width:96px;
  background:linear-gradient(90deg, var(--accent), transparent);
  margin-top:.6rem;
  border-radius:2px;
}

/* ---------- Polaroids & Team ---------- */
.team-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr)); /* altijd 3 op desktop */
  gap:22px;
  margin-top:18px;
  align-items:start;
}

/* Tablet: 2 per rij */
@media (max-width: 980px){
  .team-grid{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
}

/* Mobile: 1 per rij */
@media (max-width: 560px){
  .team-grid{ grid-template-columns:1fr; }
}


/* 1 kaart per teamlid */
.member{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:0.45rem;
  min-height: 210px;   /* spelen tussen 200–230 totdat het mooi voelt */
}


/* Naam */
.member h3{
  margin:.15rem 0 0;  /* was .25rem */
  font-size:1.05rem;
}


/* Functietitel – overal zelfde hoogte */
.member .meta{
  color:var(--muted);
  font-size:.95rem;
  margin:0;
  min-height:3.2rem;   /* hier mag je nog wat mee spelen: 3.0–3.4rem */
}

/* Bodytekst */
.member p{
  margin:.2rem 0 0;
}

/* Caption onder de foto: vaste hoogte + max 2 regels */
.caption{
  font-size:.9rem;
  color:var(--muted);

  /* ruimte voor 3 regels */
  min-height:4.8rem;
  max-height:4.8rem;

  display:-webkit-box;
  -webkit-line-clamp:3;          /* van 2 naar 3 */
  -webkit-box-orient:vertical;
  overflow:hidden;

  margin-top:.5rem;
}



/* Eén polaroid-component met rustige zoom-hover */
.polaroid{
  position:relative;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-bottom-width:6px;
  border-radius:14px;
  box-shadow:0 12px 24px rgba(0,0,0,.10);
  padding:10px 10px 14px;
  overflow:hidden;
  /* geen transform hier, zodat de rotate() van nth-child netjes blijft */
  transition:
    box-shadow .25s ease,
    filter .25s ease,
    border-color .25s ease;
}

/* Foto's: portret en gezicht mooi in beeld */
.polaroid img{
  width:100%;
  aspect-ratio:3/4;              /* portretverhouding */
  object-fit:cover;
  object-position:50% 18%;       /* iets hoger -> gezicht centraal */
  border-radius:12px;
  transition:transform .35s ease;
}

/* zacht lichtaccent bovenaan */
.polaroid::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:radial-gradient(circle at 10% 0%, rgba(255,255,255,.35), transparent 55%);
  opacity:0;
  transition:opacity .25s ease;
  pointer-events:none;
}

/* HOVER EFFECT
   - foto zoomt licht in en schuift een tikkeltje omhoog
   - schaduw wordt dieper
   - rand krijgt iets meer contrast
*/
.polaroid:hover{
  box-shadow:0 20px 45px rgba(44,36,56,.22);
  filter:brightness(1.03);
  border-color:rgba(106,105,167,.30); /* subtiel paars randje */
}

.polaroid:hover img{
  transform:scale(1.06) translateY(-6px);
}

.polaroid:hover::before{
  opacity:1;
}

/* Speelse variatie (kanteling per kaart) */
.team-grid > .member:nth-child(1) .polaroid{ transform:rotate(-1.1deg); }
.team-grid > .member:nth-child(2) .polaroid{ transform:rotate( 1.0deg); }
.team-grid > .member:nth-child(3) .polaroid{ transform:rotate(-.7deg); }
.team-grid > .member:nth-child(4) .polaroid{ transform:rotate( 1.8deg); }
.team-grid > .member:nth-child(5) .polaroid{ transform:rotate(-1.4deg); }


/* ---------- Diensten-band ---------- */
.band-diensten{
  background:
    linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.65)),
    radial-gradient(1200px 600px at 85% -10%, rgba(0,203,149,.10), transparent 60%),
    var(--cream);
  border:0;
  box-shadow:none;
}

.diensten-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:24px;
  margin-top:18px;
}

.dienst{
  text-align:center;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:20px 16px;
  box-shadow:0 8px 22px rgba(44,36,56,.10);
  transition:transform .18s ease, box-shadow .18s ease;
}

.dienst:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 30px rgba(44,36,56,.16);
}

.dienst h4{
  margin:.4rem 0 .2rem;
  color:var(--brand);
}

.dienst p{
  color:var(--muted);
  font-size:.95rem;
}

.icon-badge{
  width:84px;
  height:84px;
  margin:0 auto .6rem;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 6px 14px rgba(0,0,0,.08);
  display:grid;
  place-items:center;
  transition:transform .18s ease;
}

.icon-badge img{
  width:56px;
  height:auto;
}

.diensten-soft .dienst:hover .icon-badge{
  transform:translateY(-2px) rotate(-1deg);
}

/* ---------- Klinische badges ---------- */
.klinisch-band{
  background:
    linear-gradient(180deg, rgba(255,255,255,.62), rgba(255,255,255,.78)),
    radial-gradient(900px 480px at 10% -10%, rgba(106,105,167,.12), transparent 60%),
    var(--cream);
}

.badges-grid{
  display:grid;
  gap:18px;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  margin-top:14px;
}

.mini-badge{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:16px;
  box-shadow:0 10px 22px rgba(0,0,0,.06);
}

.mini-badge h4{
  margin:.2rem 0 .25rem;
  color:var(--brand);
}

.mini-icon{
  width:40px;
  height:40px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#fff, rgba(0,203,149,.18));
  border:1px solid var(--line);
  box-shadow:0 6px 14px rgba(0,0,0,.06);
  font-size:20px;
  color:var(--brand);
}

.reach{
  margin:.2rem 0 0;
  padding-left:1.1rem;
}

.reach li{ margin:.15rem 0; }

/* ---------- Formulier + aside ---------- */
.form-area{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:22px;
  align-items:start;
  margin:24px auto;
}

@media (max-width: 980px){
  .form-area{ grid-template-columns:1fr; }
}

.form-title{
  margin:0 0 .6rem;
  color:var(--brand);
}

.stepper{
  display:flex;
  flex-wrap:wrap;
  gap:.4rem;
  padding:0;
  margin:.2rem 0 1rem;
  list-style:none;
}

.stepper li{
  background:#fff;
  border:1px solid var(--line);
  color:var(--muted);
  border-radius:999px;
  padding:.35rem .8rem;
  font-size:.95rem;
}

.stepper li.active{
  background:var(--accent);
  color:#0b1f18;
  border-color:transparent;
}

.step{ display:none; }
.step[aria-hidden="false"],
.step.active{ display:block; }

.grid{
  display:grid;
  gap:.6rem;
  grid-template-columns:1fr 1fr;
}

@media (max-width: 640px){
  .grid{ grid-template-columns:1fr; }
}

label{
  display:grid;
  gap:.35rem;
  font-weight:600;
}

input,
select,
textarea{
  background:#fff;
  border:1px solid var(--line);
  border-radius:12px;
  padding:.6rem .7rem;
  font:inherit;
  color:inherit;
}

input:focus,
select:focus,
textarea:focus{
  outline:none;
  box-shadow:var(--ring);
  border-color:transparent;
}

textarea{
  min-height:110px;
  resize:vertical;
}

.hp{ display:none!important; }

.nav-row{
  display:flex;
  gap:.6rem;
  justify-content:flex-end;
  margin-top:.6rem;
}

.consent{
  display:flex;
  align-items:center;
  gap:.6rem;
  margin:.6rem 0;
}

/* Zijkolom */
.side{ display:grid; gap:22px; }

.testi{ display:grid; gap:1rem; }

.testi .quote{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:16px;
  box-shadow:0 10px 22px rgba(0,0,0,.06);
}

.testi .who{
  color:var(--muted);
  font-size:.95rem;
}

@media (min-width: 980px){
  aside .aside-diensten{ display:none; }
}

/* ---------- Over-ons extra ---------- */
.how{
  padding:16px;
  margin-top:18px;
}

ul.clean{
  margin:0;
  padding-left:1rem;
  line-height:1.6;
}



/* ---------- Stethoscoop-cursor (relatieve paden, werkt in submap) ---------- */
html{
  cursor:
    url("../assets/stetho.png") var(--cursor-x) var(--cursor-y),
    url("../assets/stetho-32.png") 14 14,
    url("../assets/stetho-48.png") 14 14,
    auto;
}

.cursor-stetho{
  cursor:url("../assets/stetho.png") var(--cursor-x) var(--cursor-y), auto !important;
}

input,
textarea{ cursor:text; }

button,
.btn,
a,
select{ cursor:pointer; }

@media (pointer: coarse){
  html{ cursor:auto; }
}

.cursor-stetho{
  cursor:url("assets/stetho.png") var(--cursor-x) var(--cursor-y), auto !important;
}

.no-custom-cursor{
  cursor:auto !important;
}

/* ---------- Reviews ---------- */
.reviews-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.8rem;
  margin-bottom:12px;
}

.testi-list{
  display:grid;
  gap:12px;
}

.review-item{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:16px;
  box-shadow:0 10px 22px rgba(0,0,0,.06);
}

.review-item .quote{
  font-style:italic;
}

.review-item .who{
  color:var(--muted);
  font-size:.95rem;
  margin-top:.4rem;
  display:flex;
  align-items:center;
  gap:.5rem;
}

.review-form-wrap{ margin-top:16px; }
.review-form textarea{ min-height:100px; }



/* FOOTER */
/* ---------- Footer ---------- */
.site-footer{
  background:linear-gradient(180deg, #ffffffcc, #ffffff);
  border-top:1px solid var(--line);
  margin-top:32px;
}

.footer-grid{
  display:grid;
  gap:22px;
  grid-template-columns:repeat(3, minmax(0,1fr));
  padding-block:20px;
}

.footer-col h4{
  margin:0 0 .4rem;
  color:var(--brand);
}

.footer-contact a{
  text-decoration:none;
}

.footer-contact a:hover{
  text-decoration:underline;
}

.footer-tel{
  font-weight:700;
  font-size:1.05rem;
}

.footer-note{
  margin:.6rem 0 0;
  color:var(--muted);
  font-size:.95rem;
}

.footer-regio{
  margin:0 0 .5rem;
}

.footer-important{
  margin-top:.4rem;
  padding:.6rem .8rem;
  border-radius:12px;
  background:rgba(0,203,149,.06);
  border:1px solid rgba(0,203,149,.25);
  font-size:.95rem;
}

.footer-important ul{
  margin:.25rem 0 0;
  padding-left:1.1rem;
}

.footer-links{
  list-style:none;
  margin:.2rem 0 0;
  padding:0;
}

.footer-links li{
  margin:.15rem 0;
}

.footer-links a{
  color:var(--ink);
  text-decoration:none;
  opacity:.85;
  font-size:.95rem;
}

.footer-links a:hover{
  color:var(--brand);
  opacity:1;
  text-decoration:underline;
}

.footer-bottom{
  border-top:1px solid var(--line);
  padding:10px 16px 16px;
  font-size:.9rem;
  color:var(--muted);
  text-align:center;
}

/* Responsive footer */
@media (max-width: 720px){
  .footer-grid{
    grid-template-columns:1fr;
  }
}
/* ===============================
   Contactsectie: formulier + regio
   =============================== */

.contact-section{
  padding-block: 3rem;              /* iets compacter dan andere sections */
}

.contact-grid{
  display: grid;
  gap: 2rem;
}

/* Vanaf tablet/desktop: twee kolommen naast elkaar */
@media (min-width: 900px){
  .contact-grid{
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    align-items: flex-start;
  }
}

/* Kaartbeeld iets compacter houden */
.contact-card h2{
  margin-bottom: .5rem;
}

.contact-card .hint{
  margin-bottom: 1.5rem;
}

/* Regiokaart netjes binnen de kaart houden */
.region-map{
  margin-top: 1.25rem;
}

.region-map img{
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

/* Lightbox voor regiokaart */
.lightbox-backdrop{
  position:fixed;
  inset:0;
  z-index:50;
  background:rgba(0,0,0,.75);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px;
}

.lightbox-inner{
  max-width: min(1000px, 92vw);
  max-height: 92vh;
}

.lightbox-inner img{
  display:block;
  max-width:100%;
  max-height:100%;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  background:#fff;
}

/* wordt gebruikt om de overlay te verbergen */
.lightbox-backdrop[hidden]{
  display:none;
}


/* ===============================
   Reviewsectie
   =============================== */

   /* ---------- Review-lijst: verplegingskruisjes ---------- */

.review-icons{
  display:inline-flex;
  gap:4px;
  margin-left:.5rem;
}

.review-icons i{
  width:18px;
  height:18px;
  display:inline-block;
  background-image:var(--review-empty);
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
  filter:opacity(.9);
}

.review-icons i.filled{
  background-image:var(--review-filled);
  filter:opacity(1);
}

/* status-stijlen voor moderatie */
.review-item.review-muted{
  opacity:.55;
}

.review-actions{
  margin-top:.5rem;
  display:flex;
  flex-wrap:wrap;
  gap:.35rem;
  font-size:.8rem;
}

.review-actions button{
  border-radius:999px;
  padding:.25rem .7rem;
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
  font:inherit;
}

.review-actions button[data-action="approve"]{
  border-color:rgba(0,203,149,.5);
}

.review-actions button[data-action="mute"]{
  border-color:rgba(250,176,5,.6);
}

.review-actions button[data-action="delete"]{
  border-color:rgba(220,38,38,.6);
  color:#b91c1c;
}




/* optioneel chipje met score */
.rating-chip{
  display:inline-block;
  margin-left:.5rem;
  padding:.25rem .55rem;
  border-radius:999px;
  font-size:.9rem;
  font-weight:700;
  background:#fff;
  color:var(--ink);
  border:1px solid rgba(214,40,40,.4);
}
/* ---------- Review-lijst: verplegingskruisjes ---------- */

.review-icons{
  display:inline-flex;
  gap:4px;
  margin-left:.5rem;
}

.review-icons i{
  width:18px;
  height:18px;
  display:inline-block;
  background-image:var(--review-empty);
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
  filter:opacity(.9);
}

.review-icons i.filled{
  background-image:var(--review-filled);
  filter:opacity(1);
}

/* status-stijlen voor moderatie */
.review-item.review-muted{
  opacity:.55;
}

.review-actions{
  margin-top:.5rem;
  display:flex;
  flex-wrap:wrap;
  gap:.35rem;
  font-size:.8rem;
}

.review-actions button{
  border-radius:999px;
  padding:.25rem .7rem;
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
  font:inherit;
}

.review-actions button[data-action="approve"]{
  border-color:rgba(0,203,149,.5);
}

.review-actions button[data-action="mute"]{
  border-color:rgba(250,176,5,.6);
}

.review-actions button[data-action="delete"]{
  border-color:rgba(220,38,38,.6);
  color:#b91c1c;
}

/* ---------- Beoordeling (verplegingskruis) ---------- */

.rating-fieldset legend{
  margin:.6rem 0 .25rem;
  color:var(--brand);
  font-weight:700;
}

.rating-control{
  --gap:8px;
  display:inline-flex;
  flex-direction:row-reverse;   /* zorgt dat checked ~ label voor “links vullen” werkt */
  gap:var(--gap);
  align-items:center;
  touch-action:manipulation;
}

/* radio's onzichtbaar maar wel toegankelijk */
.rating-control input{
  position:absolute;
  inline-size:1px;
  block-size:1px;
  opacity:0;
  overflow:hidden;
  clip:rect(0 0 0 0);
}

/* het klikbare kruisje */
.rating-control label{
  width:var(--review-icon-size);
  height:var(--review-icon-size);
  cursor:pointer;
  display:inline-block;
  position:relative;
  -webkit-tap-highlight-color:transparent;
}

/* basis: leeg kruis */
.rating-control label::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:var(--review-empty);
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
  opacity:.6;
  transition:transform .15s, opacity .15s;
}

/* hover-preview: vanaf het kruisje naar links oplichten */
.rating-control label:hover::before,
.rating-control label:hover ~ label::before{
  opacity:1;
  background-image:var(--review-filled);
  transform:translateY(-1px);
}

/* geselecteerd: vanaf gekozen kruis tot links gevuld */
.rating-control input:checked ~ label::before{
  opacity:1;
  background-image:var(--review-filled);
}

/* focusring voor keyboardgebruikers */
.rating-control input:focus-visible + label{
  outline:3px solid rgba(214,40,40,.5);
  outline-offset:3px;
  border-radius:10px;
}

/* optioneel chipje met score – nu nog niet gebruikt, maar kan blijven */
.rating-chip{
  display:inline-block;
  margin-left:.5rem;
  padding:.25rem .55rem;
  border-radius:999px;
  font-size:.9rem;
  font-weight:700;
  background:#fff;
  color:var(--ink);
  border:1px solid rgba(214,40,40,.4);
}

/* ---------- Review-lijst: verplegingskruisjes ---------- */

.review-icons{
  display:inline-flex;
  gap:4px;
  margin-left:.5rem;
}

.review-icons i{
  width:18px;
  height:18px;
  display:inline-block;
  background-image:var(--review-empty);
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
  opacity:.6;
}

.review-icons i.filled{
  background-image:var(--review-filled);
  opacity:1;
}

/* status-stijlen voor moderatie */
.review-item.review-muted{
  opacity:.55;
}

.review-actions{
  margin-top:.5rem;
  display:flex;
  flex-wrap:wrap;
  gap:.35rem;
  font-size:.8rem;
}

.review-actions button{
  border-radius:999px;
  padding:.25rem .7rem;
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
  font:inherit;
}

.review-actions button[data-action="approve"]{
  border-color:rgba(0,203,149,.5);
}

.review-actions button[data-action="mute"]{
  border-color:rgba(250,176,5,.6);
}

.review-actions button[data-action="delete"]{
  border-color:rgba(220,38,38,.6);
  color:#b91c1c;
}

.partner-block {
  margin-top: 2rem;
  border-left: 4px solid var(--accent);
  opacity: 0.96;
  padding-bottom: 1.5rem;
}

/* Titel boven de kolommen */
.partner-contact h3 {
  margin-bottom: 0.75rem;
}

/* Container onder de tekst */
.partner-contact {
  margin-top: 1rem;
}

/* De 2–3 kolommen */
.partner-contact-grid {
  display: grid;
  gap: 0.5rem 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  align-items: flex-start;
}

/* Links iets netter */
.partner-item a {
  text-decoration: none;
}

.partner-item a:hover {
  text-decoration: underline;
}


/* Introkaart met logo-animatie */
.intro-card {
  overflow: hidden;
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 110px) minmax(0, 1fr);
  gap: 1.75rem;
  align-items: center;
}

/* Logo links in een zachte ‘badge’ */
.intro-logo {
  width: 110px;
  height: 110px;
  border-radius: 999px;

  /* Zachte ring i.p.v. een grote witte vlek */
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.95), rgba(255,255,255,0.4)),
    radial-gradient(circle, rgba(255,255,255,0.1), rgba(0,0,0,0));

  border: 1px solid rgba(0,0,0,.03);
  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 28px rgba(0,0,0,.10);
  animation: introFloat 8s ease-in-out infinite;
}

.intro-logo img {
  max-width: 86%;
  max-height: 86%;
  border-radius: 999px; /* zorgt dat de randen mooi volgen */
}


/* Tekstblok */
.intro-copy p {
  margin-bottom: .75rem;
}

/* Wat kleinere hint onderaan */
.intro-copy .hint {
  margin-top: .5rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Subtiele ‘ademende’ beweging voor het logo */
@keyframes introFloat {
  0%   { transform: translateY(0);        box-shadow: 0 10px 30px rgba(0,0,0,.08); }
  50%  { transform: translateY(-6px);     box-shadow: 0 16px 38px rgba(0,0,0,.12); }
  100% { transform: translateY(0);        box-shadow: 0 10px 30px rgba(0,0,0,.08); }
}

/* Mobiel: logo boven tekst */
@media (max-width: 640px) {
  .intro-layout {
    grid-template-columns: 1fr;
    justify-items: flex-start;
  }

  .intro-logo {
    margin-bottom: .5rem;
  }
}
