/* ===== Feesten & Partijen — De Eerste Aanleg ===== */

/* ---------- Variables ---------- */
.feesten {
  --fp-ink: #1a1410;
  --fp-muted: #6b5e56;
  --fp-warm: #8c7567;
  --fp-accent: #6f5854;
  --fp-gold: #c6aa94;
  --fp-gold-light: rgba(181, 150, 120, 0.12);
  --fp-gold-mid: rgba(181, 150, 120, 0.22);
  --fp-cream: #faf6f2;
  --fp-white: #fff;
  --fp-border: rgba(140, 117, 103, 0.15);
  --fp-shadow-sm: 0 2px 8px rgba(30, 20, 10, 0.06);
  --fp-shadow-md: 0 8px 30px rgba(30, 20, 10, 0.10);
  --fp-shadow-lg: 0 16px 48px rgba(30, 20, 10, 0.13);
  --fp-radius: 18px;
  --fp-radius-sm: 12px;
  --fp-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hide slider on this page */
.tpl-feesten-partijen section#slider,
.tpl-feesten-partijen .onderslider,
.tpl-feesten-partijen #usps { display: none !important; }

/* ---------- Section helpers ---------- */
.feesten .sec-head {
  text-align: center;
  margin-bottom: clamp(24px, 5vw, 44px);
}

.feesten .sec-head h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 5vw, 40px);
  line-height: 1.15;
  color: var(--fp-accent);
  letter-spacing: -0.02em;
}

.feesten .sec-head .muted {
  color: var(--fp-muted);
  font-size: clamp(15px, 2vw, 18px);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---------- Buttons ---------- */
.feesten .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--fp-transition);
  letter-spacing: 0.01em;
}

.feesten .btn--accent {
  background: var(--fp-accent);
  color: #fff;
  border-color: var(--fp-accent);
  box-shadow: 0 4px 14px rgba(111, 88, 84, 0.25);
}

.feesten .btn--accent:hover {
  background: #5a4642;
  border-color: #5a4642;
  box-shadow: 0 6px 20px rgba(111, 88, 84, 0.35);
  transform: translateY(-1px);
}

.feesten .btn--ghost {
  background: transparent;
  color: var(--fp-accent);
  border-color: var(--fp-border);
}

.feesten .btn--ghost:hover {
  background: var(--fp-gold-light);
  border-color: var(--fp-gold);
}


/* ============================================================
   HERO
   ============================================================ */
.fp-hero {
  position: relative;
  padding: clamp(60px, 10vw, 120px) 0 clamp(48px, 8vw, 100px);
  background: linear-gradient(170deg, #f7f0e9 0%, #ede3d8 40%, #e4d7ca 100%);
  overflow: hidden;
}

.fp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b59678' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  opacity: 0.7;
  pointer-events: none;
}

/* Decorative shape */
.fp-hero::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 170, 148, 0.25), transparent 70%);
  pointer-events: none;
}

.fp-hero .container {
  position: relative;
  z-index: 1;
  max-width: 860px;
  text-align: center;
}

.fp-hero__title {
  margin: 0 0 16px;
  font-size: clamp(30px, 5.5vw, 52px);
  line-height: 1.1;
  color: var(--fp-ink);
  letter-spacing: -0.025em;
}

.fp-hero__text {
  margin: 0 0 20px;
  font-size: clamp(15px, 2.2vw, 18px);
  line-height: 1.7;
  color: var(--fp-muted);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* USPs */
.fp-usps {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.fp-usps li {
  display: flex;
  gap: 8px;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  border: 1px solid var(--fp-border);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--fp-accent);
  transition: all var(--fp-transition);
}

.fp-usps li:hover {
  background: #fff;
  box-shadow: var(--fp-shadow-sm);
}

.fp-usps li svg { color: var(--fp-warm); flex-shrink: 0; }

.fp-hero__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================================================
   ARRANGEMENTEN
   ============================================================ */
.fp-arr {
  padding: clamp(48px, 8vw, 90px) 0;
  background: var(--fp-white);
}

.arr-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
}

@media (max-width: 1060px) { .arr-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .arr-grid { grid-template-columns: 1fr; } }

.arr-card {
  background: var(--fp-white);
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--fp-transition);
  box-shadow: var(--fp-shadow-sm);
}

.arr-card:hover {
  box-shadow: var(--fp-shadow-lg);
  transform: translateY(-4px);
  border-color: var(--fp-gold);
}

/* Card image */
.arr-card > img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.arr-card:hover > img {
  transform: scale(1.04);
}

.arr-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.arr-title {
  margin: 0 0 6px;
  font-size: 22px;
  color: var(--fp-ink);
  line-height: 1.25;
}

.arr-intro {
  margin: 0 0 14px;
  color: var(--fp-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Price / duration meta */
.arr-meta {
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0 0 14px;
  list-style: none;
  flex-wrap: wrap;
}

.arr-meta li {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  background: var(--fp-gold-light);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  color: var(--fp-accent);
}

.arr-meta li svg { color: var(--fp-warm); flex-shrink: 0; }

/* Includes list */
.arr-inc {
  list-style: none;
  margin: 0 0 18px;
  padding: 12px 0;
  border-top: 1px solid var(--fp-border);
  display: grid;
  gap: 6px;
}

.arr-inc li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
  color: var(--fp-muted);
}

.arr-inc li svg {
  color: #1ba098;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Push CTA to bottom */
.arr-card__body .btn {
  margin-top: auto;
  align-self: flex-start;
}


/* ============================================================
   ZALEN & CAPACITEIT
   ============================================================ */
.fp-cap {
  padding: clamp(48px, 8vw, 90px) 0;
  background: var(--fp-cream);
}

.cap-table {
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius);
  overflow: hidden;
  background: var(--fp-white);
  box-shadow: var(--fp-shadow-sm);
}

.cap-row {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr 0.7fr 1.8fr;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(140, 117, 103, 0.08);
  align-items: center;
  transition: background var(--fp-transition);
  font-size: 15px;
}

.cap-row:last-child { border-bottom: none; }

.cap-row:not(.cap-row--head):hover {
  background: var(--fp-gold-light);
}

.cap-row--head {
  background: linear-gradient(135deg, var(--fp-accent), #7d645e);
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cap-name {
  font-weight: 700;
  color: var(--fp-ink);
}

.cap-notes {
  color: var(--fp-muted);
  font-size: 14px;
}

.cap-amen {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.cap-amen li {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  background: var(--fp-gold-light);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--fp-accent);
}

.cap-amen li svg { color: #1ba098; }

/* Mobile: card-style rows */
@media (max-width: 900px) {
  .cap-row {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    padding: 16px 20px;
  }
  .cap-row--head > div:nth-child(n+4),
  .cap-row > div:nth-child(4) { display: none; }
  .cap-row .cap-notes { grid-column: 1 / -1; }
}

@media (max-width: 580px) {
  .cap-row { grid-template-columns: 1fr; gap: 4px; }
  .cap-row--head { display: none; }
  .cap-name { font-size: 17px; margin-bottom: 4px; }
}


/* ============================================================
   IDEEËN & VOORBEELDEN
   ============================================================ */
.fp-ex {
  padding: clamp(48px, 8vw, 90px) 0;
  background: var(--fp-white);
}

.ex-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
}

@media (max-width: 900px) { .ex-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .ex-grid { grid-template-columns: 1fr; } }

.ex-card {
  background: linear-gradient(145deg, var(--fp-cream), #fff);
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius);
  padding: 28px 24px;
  transition: all var(--fp-transition);
  position: relative;
  overflow: hidden;
}

.ex-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--fp-gold), var(--fp-accent));
  opacity: 0;
  transition: opacity var(--fp-transition);
}

.ex-card:hover {
  box-shadow: var(--fp-shadow-md);
  transform: translateY(-3px);
  border-color: var(--fp-gold);
}

.ex-card:hover::before { opacity: 1; }

.ex-card h3 {
  margin: 0 0 14px;
  font-size: 20px;
  color: var(--fp-accent);
}

.bullets {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.bullets li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: var(--fp-muted);
}

.bullets li svg { color: #1ba098; flex-shrink: 0; }


/* ============================================================
   GALERIJ
   ============================================================ */
.fp-gal {
  padding: clamp(48px, 8vw, 90px) 0;
  background: linear-gradient(180deg, var(--fp-cream), var(--fp-white));
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 2vw, 16px);
}

@media (max-width: 900px)  { .gal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .gal-grid { grid-template-columns: 1fr; } }

.gal-grid figure {
  margin: 0;
  border-radius: var(--fp-radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gal-grid figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 10, 5, 0.35));
  opacity: 0;
  transition: opacity var(--fp-transition);
  pointer-events: none;
}

.gal-grid figure:hover::after { opacity: 1; }

.gal-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gal-grid figure:hover img { transform: scale(1.06); }


/* ============================================================
   FAQ
   ============================================================ */
.fp-faq {
  padding: clamp(48px, 8vw, 90px) 0;
  background: var(--fp-white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--fp-white);
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius-sm);
  padding: 0;
  overflow: hidden;
  transition: all var(--fp-transition);
}

.faq-item + .faq-item { margin-top: 10px; }
.faq-item:hover { border-color: var(--fp-gold); }

.faq-item[open] {
  box-shadow: var(--fp-shadow-sm);
  border-color: var(--fp-gold);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  padding: 18px 52px 18px 22px;
  list-style: none;
  position: relative;
  color: var(--fp-ink);
  transition: color var(--fp-transition);
  line-height: 1.4;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }

/* Custom chevron */
.faq-item summary::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--fp-warm);
  border-bottom: 2px solid var(--fp-warm);
  transform: translateY(-65%) rotate(45deg);
  transition: transform var(--fp-transition);
}

.faq-item[open] summary::after {
  transform: translateY(-35%) rotate(-135deg);
}

.faq-a {
  padding: 0 22px 18px;
  color: var(--fp-muted);
  line-height: 1.7;
  font-size: 15px;
}


/* ============================================================
   CTA + FORM SECTION
   ============================================================ */
.fp-ctaform {
  padding: clamp(56px, 9vw, 100px) 0;
  background: linear-gradient(165deg, #3d2924 0%, var(--fp-accent) 50%, #7d645e 100%);
  position: relative;
  overflow: hidden;
}

.fp-ctaform::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

/* Big decorative circle */
.fp-ctaform::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(198, 170, 148, 0.12);
  pointer-events: none;
}

.fp-ctaform .container { position: relative; z-index: 1; }

.cta-wrap {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
}

@media (max-width: 900px) {
  .cta-wrap { flex-direction: column; text-align: center; }
}

.cta-copy { flex: 1; }

.cta-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 4.5vw, 40px);
  line-height: 1.15;
  color: #fff;
}

.cta-copy .muted {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.6;
}

.contact-lines {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .contact-lines { justify-content: center; }
}

.contact-lines .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.contact-lines .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Map */
.fp-map { margin-top: clamp(24px, 4vw, 40px) !important; }

.map-embed {
  border-radius: var(--fp-radius);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--fp-shadow-lg);
}

.map-embed iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}


/* ============================================================
   STICKY CTA (mobile)
   ============================================================ */
.fp-sticky {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  background: var(--fp-accent);
  color: #fff;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(111, 88, 84, 0.4);
  z-index: 50;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: all var(--fp-transition);
}

.fp-sticky:hover {
  background: #5a4642;
  box-shadow: 0 10px 36px rgba(111, 88, 84, 0.5);
}

@media (min-width: 820px) { .fp-sticky { display: none; } }


/* ============================================================
   DECORATIVE DIVIDERS
   ============================================================ */
.fp-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 20px;
  color: var(--fp-gold);
}

.fp-divider::before,
.fp-divider::after {
  content: '';
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--fp-gold), transparent);
}

.fp-divider svg {
  width: 20px;
  height: 20px;
  opacity: 0.6;
}


/* ============================================================
   FADE-IN ANIMATIONS
   ============================================================ */
.fp-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fp-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.fp-fade-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fp-fade-children.is-visible > *:nth-child(1) { transition-delay: 0s; }
.fp-fade-children.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
.fp-fade-children.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
.fp-fade-children.is-visible > *:nth-child(4) { transition-delay: 0.24s; }
.fp-fade-children.is-visible > *:nth-child(5) { transition-delay: 0.32s; }
.fp-fade-children.is-visible > *:nth-child(6) { transition-delay: 0.40s; }

.fp-fade-children.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 640px) {
  .fp-hero {
    padding-top: clamp(40px, 8vw, 60px);
    padding-bottom: clamp(36px, 6vw, 48px);
  }
  .fp-hero__title { font-size: clamp(26px, 7vw, 36px); }
  .fp-usps li { font-size: 13px; padding: 6px 12px; }
  .arr-card > img { height: 180px; }
  .gal-grid img { height: 200px; }
  .faq-item summary { font-size: 15px; padding: 14px 44px 14px 16px; }
  .faq-a { padding: 0 16px 14px; }
}
