/* ---------- Basis opmaak ---------- */

.text-center {
  text-align: center !important;
  font-weight: 600;
}

/* ---------- Plattegrond layout ---------- */
.plattegrond {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1300px;
  margin: 0 auto 3rem auto;
  padding: 0 1rem;
}

/* Elke kolom */
.kolom {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
}

/* ---------- Bedrijf items ---------- */
.item {
  background: #f8f8fb;
  border: 1px solid #e1e1e8;
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 6px;
  font-size: 0.95rem;
  line-height: 1.3;
  transition: all 0.15s ease;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}

/* Hover-effect */
.item:hover {
    background: #f8f8fb;
  border-color: #e1e1e8;
  transform: none;
}

/* ---------- Responsieve aanpassing ---------- */
@media (max-width: 1100px) {
  .kolom {
    flex: 1 1 45%;
  }
}

@media (max-width: 768px) {
  .kolom {
    flex: 1 1 100%;
  }
}



/* ====== Sectie stijl ====== */

/* ====== Logo grid ====== */
.ttt-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
  padding: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* ====== Individuele logo’s ====== */
.ttt-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.ttt-logo:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

/* ====== Logo-afbeeldingen ====== */
.ttt-logo img {
  max-width: 140px;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.1);
  opacity: 0.9;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.ttt-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* ====== Responsieve optimalisatie ====== */
@media (max-width: 600px) {
  .ttt-logo-grid {
    gap: 1rem;
  }

  .ttt-logo img {
    max-width: 100px;
  }
}


/* ====== CTA Talententuin Achterhoek ====== */
.ttw-cta-wrap {
  max-width: 1200px;
  margin: 24px auto 0;
  padding: 0 16px;
}

.ttw-cta {
  background: #a61f67;
  color: #fff;
  border-radius: 14px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.ttw-cta h2 {
  margin: 0 0 6px 0;
  font-size: 1.4rem;
  line-height: 1.3;
}

.ttw-cta p {
  margin: 0.5rem 0;
  font-size: 1rem;
  opacity: 0.95;
  color: white !important;
}

/* Specifieke stijl voor de Achterhoek variant (optioneel ander accent) */
.tta-achterhoek {
  background: linear-gradient(135deg, #a61f67 0%, #7b164d 100%);
}

.ttw-cta .ttw-btn {
  margin-left: auto;
  text-decoration: none;
  display: inline-block;
  padding: 10px 16px;
  background: #fff;
  color: #a61f67 !important;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  transition: transform 0.06s ease-in-out, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

.ttw-cta .ttw-btn:hover,
.ttw-cta .ttw-btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .ttw-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .ttw-cta .ttw-btn {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ttw-cta,
  .ttw-cta .ttw-btn {
    transition: none;
  }
}
