/* =============================================
   Agenda pagina — styles
   ============================================= */

/* ══ HERO ══════════════════════════════════════ */
.agenda-hero {
  background: #fff8f0;
  padding: 160px 32px 80px;
  position: relative;
  overflow: hidden;
}
.agenda-hero__deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  pointer-events: none;
}
.agenda-hero__deco img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
}
.agenda-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.agenda-eyebrow {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #6d5e16;
  margin-bottom: 20px;
}
.agenda-hero h1 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.05;
  color: #30241a;
  margin-bottom: 24px;
}
.agenda-hero__body {
  font-size: 18px;
  line-height: 1.625;
  color: var(--text);
  max-width: 560px;
}

/* ══ FILTER STRIP ═══════════════════════════════ */
.agenda-filter {
  border-top: 1px solid rgba(209,196,188,.2);
  border-bottom: 1px solid rgba(209,196,188,.2);
  padding: 40px 32px;
}
.agenda-filter__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.agenda-filter__title {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.agenda-filter__title h2 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 28px;
  color: #201b0f;
}
.agenda-filter__bar {
  width: 64px;
  height: 3px;
  background: #d5d0de;
}
.agenda-filter__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ══ ACTIVITIES ═════════════════════════════════ */
.agenda-activities {
  padding: 80px 32px;
  background: #fff8f0;
}
.agenda-activities__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.agenda-activities__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 640px;
}
.agenda-activities__header h3 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 36px;
  color: #30241a;
}
.agenda-activities__header p {
  font-size: 16px;
  line-height: 1.625;
  color: var(--text);
}
.agenda-activities__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* ── Activity card ────────────────────────────── */
.activity-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(209,196,188,.2);
}
.activity-card__image {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.activity-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.activity-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,248,240,.92);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #30241a;
  padding: 6px 14px;
}
.activity-card__meta {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 0 28px;
  flex-wrap: wrap;
}
.activity-card__date,
.activity-card__location {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.activity-card__date { color: #6d5e16; }
.activity-card__location { color: #80756e; }
.activity-card h4 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 24px;
  color: #201b0f;
  line-height: 1.2;
  padding: 0 28px;
}
.activity-card p {
  font-size: 15px;
  line-height: 1.625;
  color: var(--text);
  padding: 0 28px;
}
.activity-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 28px;
  border-top: 1px solid rgba(209,196,188,.2);
  margin-top: auto;
  flex-wrap: wrap;
}
.activity-card__time {
  display: flex;
  align-items: center;
  gap: 8px;
}
.activity-card__time img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.activity-card__time span {
  font-size: 13px;
  color: var(--text);
}
.activity-card__link {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #30241a;
  text-decoration: underline;
  text-decoration-color: #d1c4bc;
  transition: text-decoration-color .2s;
}
.activity-card__link:hover { text-decoration-color: #30241a; }

/* ══ VOOR WIE / ORGANISATIES ════════════════════ */
.agenda-forwho {
  background: #fdf3de;
  padding: 96px 32px;
}
.agenda-forwho__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.agenda-forwho__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.agenda-forwho__label {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #6d5e16;
}
.agenda-forwho__col h2 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 36px;
  color: #201b0f;
  line-height: 1.1;
}
.agenda-forwho__col > p {
  font-size: 16px;
  line-height: 1.625;
  color: var(--text);
}
.agenda-forwho__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 4px 0;
}
.agenda-forwho__list li {
  font-size: 15px;
  color: var(--text);
  padding-left: 20px;
  position: relative;
}
.agenda-forwho__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--coral);
}
.agenda-maatwerk {
  background: var(--white);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.agenda-maatwerk h4 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 22px;
  color: #201b0f;
}
.agenda-maatwerk p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
  font-style: italic;
}

/* ══ NEWSLETTER ════════════════════════════════ */
.agenda-newsletter {
  background: #642a22;
  padding: 96px 32px;
}
.agenda-newsletter__inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.agenda-newsletter__icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .7;
}
.agenda-newsletter__inner h2 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 36px;
  color: var(--white);
  line-height: 1.1;
}
.agenda-newsletter__inner p {
  font-size: 16px;
  line-height: 1.625;
  color: rgba(255,255,255,.75);
}
.agenda-newsletter__form {
  display: flex;
  gap: 0;
  width: 100%;
  max-width: 480px;
  margin-top: 8px;
}
.agenda-newsletter__form input {
  flex: 1;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  border-right: none;
  padding: 14px 20px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--white);
  outline: none;
}
.agenda-newsletter__form input::placeholder { color: rgba(255,255,255,.5); }
.agenda-newsletter__btn {
  background: var(--white);
  color: #642a22;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

/* ══ Nav active ══════════════════════════════════ */
.nav__links a.active { color: var(--coral); }

/* ══ Responsive ══════════════════════════════════ */
@media (max-width: 900px) {
  .agenda-hero { padding: 120px 24px 64px; }
  .agenda-hero__deco { display: none; }
  .agenda-activities__grid,
  .agenda-forwho__inner { grid-template-columns: 1fr; }
  .agenda-filter { padding: 32px 24px; }
  .agenda-activities { padding: 64px 24px; }
  .agenda-forwho { padding: 64px 24px; }
  .agenda-newsletter { padding: 64px 24px; }
  .agenda-newsletter__form { flex-direction: column; }
  .agenda-newsletter__form input { border-right: 1px solid rgba(255,255,255,.3); border-bottom: none; }
  .agenda-newsletter__btn { width: 100%; }
}

/* Placeholder achtergrond voor activity cards */
.activity-card__image {
  background: var(--sand);
}
