//css index.css

/* /assets/css/index.css */

:root{
  --maroq-red:#a11b23;
  --maroq-red-dark:#7f141a;
  --maroq-dark:#0b1b2b;
  --maroq-blue:#0a4f86;

  --bg:#f7f9fc;
  --card:#ffffff;
  --border:rgba(11,27,43,.12);
  --muted:#5f6f82;

  --radius:18px;
  --radius2:26px;
  --shadow:0 10px 22px rgba(0,0,0,.08);
}

body{
  background: var(--bg);
}

.container.home{
  padding-top: 18px;
  padding-bottom: 26px;
}

/* Generic UI */
.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 18px;
  margin: 16px 0;
}

.cardHead h2{
  margin: 0 0 6px;
  font-size: 20px;
  color: var(--maroq-dark);
}
.cardHead p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration:none;
  font-weight: 900;
  border: 1px solid transparent;
  cursor:pointer;
  user-select:none;
  white-space:nowrap;
}
.btnPrimary{
  background: var(--maroq-red);
  color:#fff;
}
.btnPrimary:hover{ background: var(--maroq-red-dark); }
.btnGhost{
  background: rgba(255,255,255,.92);
  color: var(--maroq-dark);
  border-color: rgba(255,255,255,.35);
}
.btnGhost:hover{ background: #fff; }

.input{
  width:100%;
  border:1px solid rgba(11,27,43,.14);
  background: rgba(247,249,252,.9);
  border-radius: 14px;
  padding: 12px 14px;
  outline:none;
  font-size: 14px;
}
.input:focus{
  border-color: rgba(10,79,134,.45);
  box-shadow: 0 0 0 4px rgba(10,79,134,.10);
}

/* HERO */
.homeHero{
  border-radius: var(--radius2);
  overflow:hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(11,27,43,.08);
	background:#ccdbec;
}
.homeHeroInner{
  padding: 22px 18px;
  color:#fff;
  position:relative;
}
.homeHeroInner:before{
  content:"";
  position:absolute;
  inset:-40px -40px auto -40px;
  height: 260px;
  pointer-events:none;
}
.homeHeroBrand{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 12px;
}
.homeHeroDot{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--maroq-red);
  box-shadow: 0 10px 18px rgba(0,0,0,.18);
}
.homeHeroBrandName{
  font-weight: 900;
  letter-spacing:.4px;
}
.homeHeroBrandSub{
  font-size: 13px;
  opacity:.85;
}

.homeHeroTitle{
  margin: 10px 0 8px;
  font-size: 28px;
  line-height: 1.12;
}
.homeHeroLead{
  margin: 0 0 14px;
  color: rgba(255,255,255,.86);
  font-size: 15px;
  line-height: 1.35;
}
.homeHeroCtas{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  margin: 10px 0 12px;
}
.homeHeroChips{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
}
.chip{
  display:inline-flex;
  align-items:center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  font-weight: 900;
  font-size: 12px;
  color:#fff;
}

/* SEARCH */
.searchRow{
  display:grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  margin-top: 14px;
}
.searchRow .btn{ height: 44px; padding: 0 16px; }

/* SECTIONS */
.homeSection{
  margin: 18px 0 10px;
}
.sectionHead h2{
  margin: 0;
  font-size: 20px;
  color: var(--maroq-dark);
}
.sectionHead p{
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

/* CATEGORY GRID */
.gridCats{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}
.catCard{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  box-shadow: 0 8px 16px rgba(0,0,0,.06);
  text-decoration:none;
}
.catCard:hover{
  border-color: rgba(10,79,134,.22);
  transform: translateY(-1px);
}
.catIcon{
  width: 46px;
  height: 46px;
  border-radius: 50%;
}
.iBlue{ background: var(--maroq-blue); }
.iRed{ background: var(--maroq-red); }
.iGreen{ background: #008c5f; }
.iPurple{ background: #7a47b5; }

.catTitle{
  font-weight: 900;
  color: var(--maroq-dark);
  font-size: 14px;
  line-height: 1.2;
}
.catSub{
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

/* WHY */
.whyGrid{
  display:grid;
  gap: 12px;
  margin-top: 14px;
}
.whyItem{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 12px;
  border-radius: 16px;
  background: rgba(247,249,252,.85);
  border: 1px solid rgba(11,27,43,.10);
}
.whyDot{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--maroq-red);
  margin-top: 4px;
  flex: 0 0 auto;
}
.whyTitle{
  font-weight: 900;
  color: var(--maroq-dark);
  margin-bottom: 4px;
}
.whyText{
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

/* STEPS */
.stepsList{
  margin: 12px 0 0 18px;
  color: var(--maroq-dark);
  font-weight: 700;
}
.stepsList li{
  margin: 8px 0;
  color: var(--maroq-dark);
}
.stepsCta{
  margin-top: 14px;
}

/* Responsive */
@media (max-width: 820px){
  .searchRow{
    grid-template-columns: 1fr;
  }
  .gridCats{
    grid-template-columns: 1fr;
  }
  .homeHeroTitle{
    font-size: 26px;
  }
}

/* HERO (tekst + foto) */
.homeHero{
  border-radius: var(--radius2);
  overflow:hidden;
  background: linear-gradient(135deg, #0b1b2b 0%, #123554 55%, #0b1b2b 100%);
  box-shadow: var(--shadow);
  border: 1px solid rgba(11,27,43,.08);
}

.homeHeroGrid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;  /* tekst links, foto rechts */
  align-items: stretch;
  min-height: 360px;
}

.homeHeroInner{
  padding: 22px 18px;
  color:#fff;
  position:relative;
}

.homeHeroInner:before{
  content:"";
  position:absolute;
  inset:-40px -40px auto -40px;
  height: 260px;
  pointer-events:none;
}

.homeHeroImg{
  position:relative;
  background: rgba(255,255,255,.06);
  border-left: 1px solid rgba(255,255,255,.10);
  min-height: 260px;
}

.homeHeroImg img{
  width:100%;
  height:100%;
  display:block;
  object-fit: cover;
  object-position: center;
}

/* mobiel: foto onder tekst */
@media (max-width: 820px){
  .homeHeroGrid{
    grid-template-columns: 1fr;
  }
  .homeHeroImg{
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.10);
    height: 220px;
  }
}

/* =========================================================
   Category cards v2 (thumb + description)
   Desktop: min. 3 cards
   Height: slightly higher than old design
   ========================================================= */

.catGrid2{
  display:grid;
  gap:14px;
  grid-template-columns: 1fr;
}

@media (min-width: 720px){
  .catGrid2{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (min-width: 1024px){
  .catGrid2{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}

/* Card */
.catCard2{
  display:grid;
  grid-template-rows: 170px 1fr; /* thumb height; makes card a bit taller */
  border-radius: 18px;
  overflow:hidden;

  background: rgba(255,255,255,.92);
  border: 1px solid rgba(11,27,43,.12);
  box-shadow: 0 10px 18px rgba(0,0,0,.06);

  text-decoration:none;
  color: inherit;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.catCard2:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0,0,0,.10);
  border-color: rgba(11,27,43,.18);
}

.catThumb{
  background:#fff;
}

.catThumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.catBody{
  padding: 14px 14px 16px;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.catTitle2{
  font-weight: 900;
  font-size: 16px;
  letter-spacing: .2px;
  line-height: 1.2;
}

.catDesc2{
  font-size: 13px;
  line-height: 1.45;
  color: rgba(11,27,43,.78);
  min-height: 2.9em; /* keeps cards equal-ish height even if desc varies */
}

.catMeta2{
  margin-top: 2px;
}

.catChip2{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 10px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 12px;

  background: rgba(10,79,134,.10);
  color: #0a4f86;
  border: 1px solid rgba(10,79,134,.18);
}
