/*
Theme Name: Divi Child
Theme URI: https://diviextended.com/
Version: 1.2
Description: Child theme of Divi (Legacy Mode - No Variables)
Author: Divi Extended
Template: Divi
*/

/* Helps Divi code blocks behave predictably */
.imv-wrap *{ box-sizing: border-box; }

/* =====================================================================
   IMV – “Wat vind je hier?” Blurb (checklist)
   ===================================================================== */

.imv-regio-blurb{
  max-width: 1180px;
  margin: 28px auto 34px;
  padding: 22px 22px;
  border-radius: 22px;
  background: rgba(20,24,29,.60);
  border: 1px solid rgba(255,255,255,.08);
}

.imv-regio-blurb h2{
  margin: 0 0 14px;
  color: rgba(255,255,255,.95);
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;
  text-align: center;
}

.imv-regio-list{
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  gap: 10px;
  grid-gap: 10px;
  max-width: 860px;
}

.imv-regio-list li{
  display: flex;
  gap: 12px;
  grid-gap: 12px;
  align-items: flex-start;
  color: rgba(255,255,255,.82);
  font-size: 16px;
  line-height: 1.5;
}

.imv-regio-list .check{
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(182,255,59,.12);
  border: 1px solid rgba(182,255,59,.25);
  color: #b6ff3b;
  font-weight: 900;
  margin-top: 1px;
}

/* =====================================================================
   IMV – Region Cards Grid (Brussel / Vlaanderen / Wallonië) — FINAL
   ===================================================================== */

.imv-regio-grid{
  max-width: 1180px;
  margin: 26px auto 10px;
  display: grid;

  /* 3-column layout (legacy-safe, no fr/minmax needed) */
  grid-template-columns: 31.5% 31.5% 31.5%;
  gap: 2.75%;
  grid-gap: 2.75%;

  align-items: stretch;
}

.imv-regio-card{
  border-radius: 22px;
  overflow: hidden;
  background: rgba(20,24,29,.65);
  border: 1px solid rgba(255,255,255,.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.imv-regio-hero{
  position: relative;
  min-height: 250px;
  background-size: cover;
  background-position: center;
  padding: 22px;
  display: flex;
  align-items: flex-end;
}

.imv-regio-hero:before{
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.18), rgba(0,0,0,.78));
}

/* Title sits on the image */
.imv-regio-title{
  position: relative;
  margin: 0;
  color: #fff;
  font-size: 40px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0,0,0,.45);
}

/* TUNED body spacing + hierarchy */
.imv-regio-body{
  padding: 22px 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;       /* modern */
  grid-gap: 10px;  /* legacy */
}

.imv-regio-desc{
  margin: 0 0 6px;
  color: rgba(255,255,255,.85);
  font-size: 16px;       /* ↓ was 17 */
  line-height: 1.55;
}

/* Meta row (Prijsniveau) */
.imv-regio-meta{
  display: flex;
  align-items: center;
  gap: 8px;
  grid-gap: 8px;
  flex-wrap: wrap;
  margin: 0; /* no extra push down */
}

.imv-regio-meta .label{
  color: rgba(255,255,255,.58);
  font-size: 14px; /* ↓ was 15 */
}

.imv-regio-meta .value{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  grid-gap: 6px;
  color: rgba(182,255,59,.92);
  font-weight: 650; /* ↓ was 850 */
  font-size: 14px;  /* ↓ was 16 */
}

.imv-regio-meta .value:before{
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #b6ff3b;
  display: inline-block;
  opacity: .95;
}

/* Tip */
.imv-regio-note{
  margin: 0 0 8px;
  color: rgba(255,255,255,.52);
  font-size: 14px;
  line-height: 1.5;
}

/* CTA button */
.imv-regio-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px; /* slightly smaller */
  border-radius: 999px;
  border: 1px solid rgba(182,255,59,.30);
  background: rgba(182,255,59,.10);
  color: #b6ff3b;
  font-weight: 800;
  font-size: 14px; /* ↓ was 16 */
  text-decoration: none !important;
  width: fit-content;
}

/* Divider line */
.imv-regio-divider{
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 6px 0 0;
}

/* City chips */
.imv-regio-chips{
  display: flex;
  gap: 16px;
  grid-gap: 16px;
  flex-wrap: wrap;
  padding-top: 6px;
}

.imv-chip{
  color: rgba(255,255,255,.75);
  text-decoration: none !important;
  font-weight: 650;
  font-size: 14px; /* ↓ was 15 */
}

.imv-chip:hover{
  color: #b6ff3b;
}

/* Responsive */
@media (max-width: 1100px){
  .imv-regio-grid{
    grid-template-columns: 100%;
    gap: 18px;
    grid-gap: 18px;
  }
  .imv-regio-title{ font-size: 34px; }
  .imv-regio-hero{ min-height: 220px; }
}


/* =====================================================================
   IMV – CTA Block (“Klaar om te starten?”)
   ===================================================================== */

.imv-cta{
  max-width: 1180px;
  margin: 34px auto 0;
  padding: 44px 26px;
  border-radius: 22px;
  border: 1px solid rgba(182,255,59,.18);
  background: rgba(182,255,59,.05);
  text-align: center;
}

.imv-cta h2{
  margin: 0 0 10px;
  font-size: 44px;
  line-height: 1.05;
  color: #fff;
  font-weight: 900;
}

.imv-cta p{
  margin: 0 auto 22px;
  max-width: 840px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,.82);
}

.imv-cta-actions{
  display: flex;
  gap: 16px;
  grid-gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.imv-btn-primary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: #b6ff3b;
  color: #0b0d10;
  font-weight: 900;
  text-decoration: none !important;
  min-width: 230px;
}

.imv-btn-secondary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: rgba(0,0,0,.00);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  font-weight: 850;
  text-decoration: none !important;
  min-width: 230px;
}

.imv-cta-foot{
  margin-top: 18px;
  color: rgba(255,255,255,.72);
  font-size: 15px;
}

.imv-cta-foot a{
  color: #b6ff3b;
  font-weight: 800;
  text-decoration: none !important;
}

/* =====================================================================
   IMV – Final CTA (bottom block)
   ===================================================================== */

.imv-final-cta{
  max-width: 1100px;
  margin: 80px auto 0;
  padding: 56px 32px;
  border-radius: 24px;
  background: radial-gradient(
    120% 120% at 50% 0%,
    rgba(182,255,59,0.12) 0%,
    rgba(0,0,0,0.85) 55%,
    rgba(0,0,0,0.95) 100%
  );
  border: 1px solid rgba(182,255,59,0.35);
  text-align: center;
}

.imv-final-cta h2{
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 14px;
  color: #ffffff;
}

.imv-final-cta p{
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 720px;
  margin: 0 auto 32px;
}

.imv-final-cta-actions{
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.imv-final-cta-footer{
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.imv-final-cta-footer a{
  color: #b6ff3b;
  font-weight: 700;
  text-decoration: none;
}

.imv-final-cta-footer a:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =====================================================================
   IMV – “Wat vind je hier?” Blurb
   ===================================================================== */

.imv-regio-blurb{
  max-width: 900px;
  margin: 60px auto;
  padding: 40px 32px;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.02)
  );
  text-align: center;
}

.imv-regio-blurb h2{
  margin: 0 0 24px;
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
}

.imv-regio-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.imv-regio-list li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.5;
  color: #e5e5e5;
  text-align: left;
}

.imv-regio-list li:last-child{
  margin-bottom: 0;
}

.imv-regio-list .check{
  flex: 0 0 auto;
  margin-top: 2px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #b6ff3b;
}