/* =========================================================
   COMPONENTS.CSS — UI COMPONENTEN
   ========================================================= */

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s;
  border: 0;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--btn-hover);
}

.btn-secondary {
  background: var(--primary);
  color: #fff;
}

.btn-secondary:hover {
  background: var(--secondary);
}

.btn-back {
  background: var(--mouseover-light);
  color: #999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s;
  border: 0;
  margin: 20px 0 20px 0;
}

form button {
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  margin-top: 10px;
  text-decoration: none;
}
form button:hover {
  background: var(--btn-hover);
}
/* ---------- Form ---------- */
.starter-form select,
.starter-form input[type="text"],
.starter-form input[type="email"],
.starter-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  font-size: 1rem;
}
input[type="checkbox"]:checked {
    accent-color: var(--pastel-green); 
}
input[type="radio"]:checked {
    accent-color: var(--pastel-green);
}

/* ---------- Needs Grid ---------- */
.needs-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.need-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: var(--shadow-sm);
}

.need-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.need-card input {
  margin-top: 4px;
}

.need-card i {
  font-size: 20px;
  color: var(--primary);
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, #eef3ff, #ffffff);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
}

.hero h1 {
  margin-bottom: 10px;
}

.hero p {
  max-width: 600px;
}

/* ---------- Step Indicator ---------- */
.steps {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.step {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  font-weight: 600;
}

.step.active {
  background: var(--primary);
  color: #fff;
}

/* ---------- Cards (partners, deals) ---------- */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
/* ---------- Kaders ---------- */
.box {
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  padding:18px;
  box-shadow:0 10px 30px rgba(0,0,0,.04);
}
.form-box {
background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
  max-width: 800px;
  margin: 0 auto;
  width: 600px;
overflow: hidden; 
}
.form-box-img {
  margin: -25px -30px 20px -30px; 
  width: calc(100% + 50px); 
  height: auto; 
  object-fit: cover;
  display: block;
}
/* ==================================================================
   Paginering
================================================================== */
/*
.posts-pagination {
  margin: 1rem 0 2rem;
  text-align: center;
}

.navigation.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.nav-links .page-numbers {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  background: #f0f0f0;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.95rem;
  transition: background 0.3s, color 0.3s;
}

.nav-links .page-numbers:hover {
  background: var(--primary);
  color: #fff;
}

.nav-links .page-numbers.current {
  background: var(--primary);
  color: #fff;
  font-weight: bold;
  cursor: default;
}

.nav-links .page-numbers.dots {
  background: none;
  color: #999;
  cursor: default;
}

.nav-links .next,
.nav-links .prev {
  background: #8fabf7;
  color: #fff;
  font-weight: bold;
}

.nav-links .next:hover,
.nav-links .prev:hover {
  background: var(--primary);
}


/* ---------- Pagination ---------- */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin: var(--spacing, 1rem) 0;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination .page-item {
  display: inline-flex;
}

.pagination .page-link {
  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.75rem;

  font-family: var(--font-family, inherit);
  font-size: 0.9rem;
  font-weight: 500;

  /* basislook uit jouw variabelen */
  color: #ffffff;
  background: var(--primary);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);

  text-decoration: none;

  transition: background-color var(--transition, 200ms),
    border-color var(--transition, 200ms),
    color var(--transition, 200ms),
    opacity var(--transition, 200ms),
    transform var(--transition, 200ms);

  cursor: pointer;
  user-select: none;
}

/* hover (alleen niet active/disabled) */
.pagination .page-item:not(.active):not(.disabled) .page-link:hover {
  background: var(--btn-hover);
  border-color: var(--accent, var(--btn-hover));
  color: #ffffff;
  transform: translateY(-1px);
}

/* active pagina */
.pagination .page-item.active .page-link {
  background: var(--secondary);
  border-color: var(--secondary-dark, var(--secondary));
  color: #ffffff;
  font-weight: 600;
  pointer-events: none;
}

/* disabled */
.pagination .page-item.disabled .page-link {
  opacity: 0.5;
  background: var(--bg-card, #ffffff);
  color: var(--dark, #333);
  border-color: var(--grey-light);
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 480px) {
  .pagination .page-link {
    min-width: 2rem;
    height: 2rem;
    padding: 0 0.5rem;
    font-size: 0.85rem;
  }
}

/* =========================================
   RESPONSIVE CONTENT GRIDS
   ========================================= */

.content-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 30px;
}

/* 3 / 3 - twee gelijke kolommen */
.grid-3-3 {
    grid-template-columns: 1fr 1fr;
}

/* 2 / 1 - brede + smalle kolom */
.grid-2-1 {
    grid-template-columns: 2fr 1fr;
}

/* 1 / 2 - smalle + brede kolom */
.grid-1-2 {
    grid-template-columns: 1fr 2fr;
}

/* 2 / 2 - twee gelijke kolommen */
.grid-2-2 {
    grid-template-columns: 1fr 1fr;
}


/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 768px) {

    .content-grid {
        grid-template-columns: 1fr;
    }

}

/* ==================================================================
   Formulierelementen
================================================================== */
form p {
  margin-bottom: 1.125rem;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  margin-top: 0.375rem;
  background: #fff;
}

textarea {
  resize: vertical;
}

.search-box {
  margin-bottom: 0;
}

.search-box input[type="text"] {
  width: 100%;
  padding: 10px;
}

/* ==================================================================
   Embeds in content
================================================================== */
.embed-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.embed-wrapper iframe {
position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* ==================================================================
   Icons in circel
================================================================== */
.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--pastel-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 40px;
/*  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}
