/* ============================================================
   UITVAARTFILMEN.NL — stylesheet

   Opbouw van dit bestand:

    1.  FONTS              webfonts (Playfair Display, Lato)
    2.  BASIS              variabelen, reset, typografie
    3.  LIJSTEN            custom-list, hero-lijst
    4.  HEADER & NAVIGATIE vaste balk, logo, mobiel menu
    5.  HERO               videohero, slideshow, navigatiedots
    6.  KNOPPEN            cta's en knoprijen
    7.  SECTIES            section-content, taupe, beige, banner
    8.  VIDEO              embed en preview
    9.  REVIEWS            reviewkaarten en paginering
   10.  FAQ                accordeon
   11.  KAARTEN            benefit-cards, film-kaart, proces-kaart
   12.  AFBEELDINGEN       image-grid
   13.  TIMELINE           horizontale stappen
   14.  PRIJZEN            pricing-cards en vergelijkingstabel
   15.  CONTACT            contactgegevens en formulier
   16.  FOOTER             footer en balk onderaan

   Breekpunt: 940px (desktop). Media queries staan bij hun
   eigen component, niet gebundeld onderaan.
   ============================================================ */

/* ============================================================
   1. FONTS
   ============================================================ */

@font-face {
  font-display: swap;
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/playfair-display-v40-latin-500.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/playfair-display-v40-latin-700.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/playfair-display-v40-latin-900.woff2') format('woff2');
}
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/lato-v25-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/lato-v25-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* ============================================================
   2. BASIS
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --bg-color: #000;
  --text-kop: #fff;
  --text-main: #fff;
  --beige: #e2d3b8;
  --beige-rgb: 226, 211, 184;   /* voor rgba(), bijv. rgba(var(--beige-rgb), .3) */
  --taupe: #4B423A;
  --deepblue: #172128;
  --warm-grijs: #A8A29E;
  --radius: 1rem;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: 'Lato', sans-serif;
  color: var(--text-main);
  font-weight: 400;
  background-color: var(--bg-color);
}

body.nav-open .site-header {
  background: #111 !important;
  backdrop-filter: none;
}

input, button {
  font: inherit;
}

h1, h2, h3, h4 {
  text-wrap: balance;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
}

p {
  overflow-wrap: break-word;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid #20c6a4;
  outline-offset: 4px;
}

figure {
  margin: 0;
  padding: 0;
}

figure img {
  display: block;
}

h1, h2 {
  font-weight: 700;
  font-style: normal;
  color: var(--text-kop);
  text-transform: uppercase;
  font-size: 2.1rem;
  margin: 0;
  padding: 0;
  line-height: 2.4rem;
}


.intro-body.faq h2 {
  font-size: 1.5rem;
  line-height: 1.7rem;
  margin: 2rem 0rem 2rem 0rem;
  font-weight: 500;
  color: var(--text-kop);
  text-transform: none;
}

.section-content-beige h2,
.section-content-beige p {
  color: #000;
}

.intro-body p,
.intro-body ul,
.banner p,
footer {
  font-size: 1.1rem;
  line-height: 1.7rem;
}

.section-content .intro-body a:not(.button_cta),
.section-content-taupe a:not(.button_cta) {
  color: var(--beige);
  text-decoration: underline;
  font-weight: bold;
}

.section-content .intro-body a:hover,
.section-content-taupe a:hover {
  text-decoration: none;
  font-weight: bold;
}

.section-content-beige .intro-body a:not(.banner-beige_cta) {
  color: var(--deepblue);
  text-decoration: underline;
  font-weight: bold;
}

.section-content-beige .intro-body a:hover {
  text-decoration: none;
}

/* ============================================================
   3. LIJSTEN
   ============================================================ */

.custom-list,
.custom-list-black {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-list li,
.custom-list-black li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.8rem;
}

.custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 16px;
  height: 16px;
  background: url('../images/logo/icon-logo-uitvaartfilmen.svg') no-repeat center;
  background-size: contain;
}

.custom-list-black li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 16px;
  height: 16px;
  background: url('../images/logo/icon-logo-uitvaartfilmen-black.svg') no-repeat center;
  background-size: contain;
}

.custom-list-hero {
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0rem 2rem;
  align-items: center;
  margin-top: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 3s;
}

.custom-list-hero li {
  position: relative;
  margin-bottom: 0.8rem;
  font-style: italic;
}

.custom-list-hero li {
  margin-bottom: 0;
  white-space: nowrap;
}

@media (min-width: 940px) {
  .custom-list-hero {
    font-size: 1rem;
    display: flex;
    flex-direction: row;
    gap: 1rem 2rem;
    align-items: center;
  }

  .custom-list-hero li {
    margin-bottom: 0;
    white-space: nowrap;
    padding-left: 1.5rem;
  }

  .custom-list-hero li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.3em;
    width: 16px;
    height: 16px;
    background: url('../images/logo/icon-logo-uitvaartfilmen.svg') no-repeat center;
    background-size: contain;
  }
}

.black {
  color: black;
}

.bold {
  font-weight: bold;
}

.section-eyebrow p {
  color: var(--beige);
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.1rem;
  margin-block-start: 0em;
  margin-block-end: 0em;
}


@media (min-width: 940px) {
  h1, h2 {
    font-size: 3.5rem;
    line-height: 4rem;
  }

  .intro-body p,
  .intro-body ul,
  .banner p,
  footer {
    font-size: 1.1rem;
    line-height: 2rem;
  }

  .section-eyebrow p {
    font-size: 1.4rem;
  }

  .custom-list li::before {
    top: 0.5em;
  }
}

/* ============================================================
   4. HEADER & NAVIGATIE
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
}

.site-header.is-sticky {
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 120px;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0)
  );
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.site-header.is-sticky::before {
  opacity: 0;
}


body.nav-open .site-header.is-sticky {
  background: #111;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem 0 0;

  display: grid;
  grid-template-columns: auto 1fr auto auto;   /* hamburger | ruimte | telefoon | whatsapp */
  align-items: center;
  height: 70px;
  position: relative;
  z-index: 1;
}

/* hamburger */
.nav-toggle {
  justify-self: start;
  font-size: 22px;
  color: #fff;
  background: none;
  border: none;
  margin-left: 0.5rem;
}

/* logo */
.brand-logo {
  /* Absoluut gecentreerd, zodat het aantal iconen rechts
     de positie van het logo niet beïnvloedt */
  position: absolute;
  left: 50%;
  transform: translate(-50%, 3px);
}

.brand-logo img {
  height: 48px;
}

/* telefoon */
.nav-telefoon {
  justify-self: end;
  font-size: 20px;
  color: #fff;
  margin-right: 1.1rem;
}

/* whatsapp */
.nav-whatsapp {
  justify-self: end;
  font-size: 22px;
  color: #fff;
}

.main-nav {
  display: none;
}

.nav-open .main-nav {
  display: block;
  position: fixed;
  inset: 0;
  background: #111;
  padding-top: 100px;
  z-index: 2000;
}

/* close knop */
.menu-close {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 32px;
  color: #fff;
  background: none;
  border: none;
}

/* menu items */
.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.main-nav li {
  margin: 1.5rem 0;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

/* hover effect */
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: #e2d3b8;
}

@media (min-width: 940px) {

  /* mobile weg */
  .nav-toggle,
  .nav-whatsapp,
  .nav-telefoon,
  .menu-close {
    display: none;
  }

  .nav-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
    height: 100px;

    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .brand-logo {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 5px); /* 👈 naar beneden */
  }

  .brand-logo img {
    height: 90px;
  }

  /* NAV */
  .main-nav {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }

  /* LINKS */
  .nav-left {
    display: flex;
    gap: 3rem;
  }

  /* RECHTS */
  .nav-right {
    display: flex;
    gap: 3rem;
  }

  /* EXTRA RUIMTE RONDOM LOGO */
  .nav-left {
    padding-right: 140px;
  }

  .nav-right {
    padding-left: 140px;
  }

  .main-nav a {
    position: relative;
    display: inline-block;
    padding: 0.75rem 1rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    transition: color 0.25s ease;
  }

  /* underline (onzichtbaar start) */
  .main-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 6px;
    width: 0;
    height: 1px;
    background-color: var(--beige);
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }

  .main-nav a:hover::after,
  .main-nav a[aria-current="page"]::after {
    width: 60%;
  }

}

/* ============================================================
   5. HERO
   ============================================================ */

.hero_container {
  position: relative;
  height: 100vh;
  min-height: 260px;
  /*max-height: 600px;*/
  overflow: hidden;
  background-color: #000;
}

.hero_video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}


/* Gradient overlay */
.hero_overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 0.4) 70%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.hero_fade_bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 320px;
  z-index: 3;
  pointer-events: none;

  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 50%,
    rgba(0,0,0,0.7) 100%,
    #000 100%
  );
}

/* Content */
.hero_content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
  color: #fff;
  transform: translateY(-4%);
  position: absolute;
  inset: 0;
}

.hero_title {
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1rem;
  margin-top: 0;
  /*animation: fadeUp 0.8s ease forwards;
  opacity: 0;*/
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: 0.05em;
}

/* Subtitle */
.hero_subtitle {
  text-transform: uppercase;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 500;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 1s;
  width: 80%;
  font-family: "Playfair Display", serif;
}




.hero_buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 2s;
}

.buttons_container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.5rem 0 0 0;
  padding: 0rem;
  align-items: flex-start;
}

.horizontal {
  display: flex;
  flex-direction: row;
}

@media (min-width: 940px) {
  .buttons_container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    padding: 0;
  }
}

/* Fade animation */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CTA */
/* ============================================================
   6. KNOPPEN
   ============================================================ */

.hero_cta {
  font-size: 0.6rem;
  display: inline-block;
  padding: 0.3rem 0.5rem;
  border: 2px solid #fff;
  color: #000;
  background-color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-transform: uppercase;
}

.button_cta {
  font-size: 0.8rem;
  padding: 0.8rem 0.6rem;
  border: 2px solid #fff;
  color: #000;
  background-color: #fff;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
}

/* Hover state */
.hero_cta:hover,
.button_cta:hover {
  background-color: transparent;
  color: #fff;
}

@media (min-width: 940px) {
  /* Buttons container */

  .hero_buttons {
    gap: 1rem;
  }

  /* CTA */
  .hero_cta {
    font-size: 0.8rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 2px solid #fff;
    color: #000;
    background-color: #fff;
  }

  /* Hover state */
  .hero_cta:hover {
    background-color: transparent;
    color: #fff;
  }
}



.hero-slides {
  position: relative;
  height: 100%;
}

/* =====================
   SLIDES
===================== */

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

/* image wrapper */
.hero-slide picture,
.hero-slide img {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-slide img {
  object-fit: cover;
  object-position: center center;
}

/* overlay */
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.35) 40%,
    rgba(0, 0, 0, 0.1) 70%,
    rgba(0, 0, 0, 0) 100%
  );
}

.hero-slide.is-active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   NAV DOTS
===================== */

.hero-nav {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.hero-nav button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: var(--beige);
  cursor: pointer;
}

.hero-nav button[aria-selected="true"] {
  background: #fff;
}

.hero-progress {
  position: absolute;
  bottom: 1.3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  overflow: hidden;
  border-radius: 2px;
  z-index: 10;
}

.hero-progress-bar {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--beige);
  transform-origin: left;
}

/* animatieklasse */
.hero-progress-bar.is-animating {
  animation: heroProgress linear forwards;
}

/* keyframes */
@keyframes heroProgress {
  from { width: 0%; }
  to   { width: 100%; }
}

@media (min-width: 940px) {
  .hero_container {
    height: 100vh;
    max-height: none;
  }

  .hero_container.blog {
    height: calc(35vh - 60px);
  }

  .hero_title {
    font-size: clamp(2rem, 5vw, 4rem);
    max-width: 20ch;
  }

  .hero_container--small{
    height:65vh;
    min-height:200px;
  }
  .hero_map iframe {
    width:120%;
    height:120%;
    transform:translate(-10%,-10%);
  }

  .hero_fade_bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    pointer-events: none;
    height: 500px;

    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0.8) 100%,
      #000 100%
    );
  }
}

/* ============================================================
   7. SECTIES
   ============================================================ */

.section-content {
  max-width: 1280px;
  margin: 1.5rem auto;
  padding: 1rem 1.5rem;
  width: 100%;
}

.section-content.intro {
  margin: 0rem auto;
}

.section-content-taupe {
  background-color: var(--deepblue);
  padding: 1.5rem 1.5rem;
}

.section-content-beige {
  background-color: var(--beige);
  padding: 1.5rem 1.5rem;
  position: relative;
  overflow: hidden;
  min-height: 150px;
}

.section-content-beige::before {
  content: "";
  position: absolute;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 250px; /* speel hiermee */
  height: 250px;

  background-image: url('../images/logo/logo-uitvaartfilmen.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.section-logo-bg {
  position: relative;
  overflow: hidden;
}

.section-logo-bg::before {
  content: "";
  position: absolute;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 900px;
  height: 900px;

  background-image: url('../images/logo/logo-uitvaartfilmen.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.section-logo-bg > * {
  position: relative;
  z-index: 1;
}

/* Container */
.section-content-taupe .container {
  max-width: 1280px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section-content-beige .container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0rem;
}

.section-content-beige .containerbreed {
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column; /* onder elkaar */
  text-align: left;
}

.foto {
  margin-bottom: 1rem;
}

/* Afbeelding */
.taupe-image img {
  width: 100%;
  height: auto;
  display: block;
  border: 0.5rem solid var(--beige);
}

/* Afbeelding */
.containerbreed picture,
.containerbreed img {
  width: 100%;
  height: auto;
  display: block;
}

/* Tekst */
.taupe-text {
  max-width: 600px;
}
/* Variant zonder foto ernaast: volle breedte */
.taupe-text-breed {
  max-width: none;
}

/* Desktop */
@media (min-width: 940px) {
  .section-content-taupe {
    padding: 0rem 1.5rem;
    margin-top: 15rem;
  }

  .section-content-beige {
    background-color: var(--beige);
    padding: 10rem 1.5rem;
  }

  .section-content-beige::before {
    width: 1000px; /* speel hiermee */
    height: 1000px;
  }

  .section-content-taupe .container {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }

  .section-content-beige .container {
    flex-direction: row;
    align-items: top;
    gap: 1rem;
  }

  .section-content-beige .containerbreed {
    flex-direction: row;        /* naast elkaar */
    align-items: center;
    text-align: left;
    gap: 7rem;
    max-width: 1600px;
  }

  .foto {
    flex-shrink: 0;
    width: 320px;
  }

  .foto img {
    border-radius: 3px;
  }

  .taupe-image {
    flex: 1;
    max-width: 640px;
    transform: translateY(-115px);
  }

  .taupe-text {
    flex: 1;
    padding: 4rem 0;
  }
}

.center {
  text-align: center;
}

/* Basis = mobiel */
.intro-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Tekst */
.intro-text {
  flex: 1;
}

/* Afbeelding */
.intro-image {
  flex: 1;
}

.intro-image img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  display: block;
}

/* Desktop (vanaf tablet/desktop) */
@media (min-width: 769px) {
  .intro-content {
    flex-direction: row;
    align-items: center;
    gap: 8rem;
  }

  .intro-image img {
    width: 100%;
    max-height: none;
    height: auto;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  }
  .section-content {
    padding: 8rem 2rem;
  }
}

.banner {
  position: relative;
  padding: 3rem 0;
  overflow: hidden;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center; /* verticaal centreren */
  align-items: center;     /* horizontaal centreren */
}

.banner-image-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.8)
  );
  z-index: 1;
}

.banner h2 {
  position: relative;
  z-index: 2;
  font-weight: 900;
}

.banner_title {
  position: relative;
  z-index: 2;
  font-weight: 900;
  text-wrap: balance;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: var(--text-kop);
  text-transform: uppercase;
  font-size: 2.1rem;
  margin: 0;
  padding: 0;
  line-height: 2.4rem;
}

.banner p,
.banner a {
  position: relative;
  z-index: 2;
}

.banner h2,
.banner p {
  max-width: 300px;
}

@media (min-width: 940px) {
  .banner {
    min-height: 600px;
  }

  .banner_title {
    font-size: 3.5rem;
    line-height: 4rem;
  }

  .banner h2,
  .banner p {
    max-width: 740px;
  }
}

.button__icon_space {
  margin-right: 0.4em;
  font-size: 1.05em;
}

/* ============================================================
   8. VIDEO
   ============================================================ */

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
  border-radius: var(--radius);
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-wrapper > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   9. REVIEWS
   ============================================================ */

.reviews-grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;

  margin: 2rem 0;
  padding-bottom: 1rem;

  scrollbar-width: none;
}

.reviews-grid::-webkit-scrollbar {
  display: none;
}

.review {
  flex: 0 0 90%;
  scroll-snap-align: center;

  position: relative;
  padding: 2rem;
  border: 1px solid rgba(var(--beige-rgb), .25);

  background: linear-gradient(
    180deg,
    rgba(255,255,255,.02),
    rgba(255,255,255,0)
  );
}

.review::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(var(--beige-rgb), .45);
  pointer-events: none;
}

.review-quote {
  display: block;
  font-family: "Playfair Display", serif;
  color: var(--beige);
  font-size: 5rem;
  line-height: 1;
  opacity: .35;
  margin-bottom: 0rem;
}

.review-text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.9;
}

.review-footer {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(var(--beige-rgb), .15);
}

.review-stars {
  color: var(--beige);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.review-author {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--beige);
}



.review-pagination {
  display: flex;
  justify-content: center;
  gap: .75rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.review-pagination span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(var(--beige-rgb), .25);
  transition: all .3s ease;
}

.review-pagination span.active {
  background: var(--beige);
  transform: scale(1.25);
}

.reviews-grid.een {
  margin: 1.5rem 0rem;
}

.reviews-grid.een .review {
  flex-basis: 100%;
}

/* Desktop */

@media (min-width: 940px) {
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    overflow: visible;
    margin: 5rem 0;
  }

  .reviews-grid.een {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    overflow: visible;
    margin: 5rem 0;
  }

  .review {
    flex: initial;
    min-height: 420px;

    display: flex;
    flex-direction: column;
  }

  .review-footer {
    margin-top: auto;
  }

  .review-pagination {
    display: none;
  }
}

/* ============================================================
   10. FAQ
   ============================================================ */


.faq-item {
  background-color: #EAE3D9;
  border-radius: 12px;
  padding: 1.25rem 1.25rem;
  margin-bottom: 1rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  position: relative;

  padding-left: 2rem; /* vaste ruimte voor icoon */
  padding-right: 0;

  display: block;
}

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

.faq-item summary h3 {
  margin: 0;
  font-size: 1rem;
  color: black;
  font-family: 'Lato', sans-serif;
}

.faq-item summary::before {
  content: "\2b"; /* + */
  font-family: "Font Awesome 7 Free";
  font-weight: 900;

  position: absolute;
  left: 0;
  top: 0;

  font-size: 1.1rem;
  color: black;

  transition: transform 0.25s ease;
}

details[open] summary::before {
  transform: rotate(45deg); /* wordt een × */
}

.faq-content {
  padding-top: 0.75rem;
  color: black;
  max-width: 700px;
}

.section-content .intro-body .faq-content a,
.section-content .intro-body .faq-content a:visited {
  color: var(--deepblue);
  text-decoration: underline;
  font-weight: 700;
}

.section-content .intro-body .faq-content a:hover {
  text-decoration: none;
}

@media (min-width: 940px) {

  .faq-content {
    padding-top: 0.75rem;
    max-width: 1280px;
  }

  .faq-item summary h3 {
    font-size: 1.2rem;
    font-weight: 700;
  }
}

/* ============================================================
   11. KAARTEN
   ============================================================ */

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.benefit-card {
  background: var(--beige);
  padding: 24px;
  color: black;
}

.benefit-card h3 {
  margin: 0 0 1rem 0;
  font-size: 1.5rem;
}

.benefit-card p {
  margin: 0;
  line-height: 1.7;
}

/* ============================================================
   12. AFBEELDINGEN
   ============================================================ */

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.image-grid img {
  width: 100%;
  height: auto;
  display: block;
  background: white;
}

@media (min-width: 940px) {
  .image-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .image-grid img {
    border: 0.5rem solid var(--beige);
  }

  .image-grid {
    gap: 2rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .benefit-card {
    padding: 30px;
  }
}

/* =====================
   UITVAARTVIDEO INTRO (film-kaart)
===================== */
.video-intro-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* film-kaart */
.film-kaart {
  position: relative;
  overflow: hidden;
  background: var(--deepblue);
  border-top: 3px solid var(--beige);
  border-bottom: 3px solid var(--beige);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
}

/* logo-watermerk, zelfde patroon als .section-content-beige::before */
.film-kaart::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  background-image: url('../images/logo/logo-uitvaartfilmen.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

/* inhoud boven het watermerk */
.film-kaart > * {
  position: relative;
  z-index: 1;
}

.film-kaart-titel {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 1.75rem 0;
  text-align: center;
}
.film-kaart-titel em {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  color: var(--beige);
  margin-top: 0.25rem;
}

.film-spec {
  margin: auto 0;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.85rem 0;
}
.film-spec:not(:last-child) {
  border-bottom: none;
}
.film-spec dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--warm-grijs);
  white-space: nowrap;
}
/* de stippellijn tussen label en waarde */
.film-spec::before {
  content: "";
  order: 2;
  flex: 1;
  border-bottom: 1px dotted rgba(var(--beige-rgb), .4);
  transform: translateY(-4px);
}
.film-spec dt { order: 1; }
.film-spec dd {
  order: 3;
  margin: 0;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--beige);
  white-space: nowrap;
}

/* Desktop */
@media (min-width: 940px) {
  .video-intro-grid {
    flex-direction: row;
    gap: 6rem;
  }
  .film-kaart {
    flex: 1;
    padding: 3rem 3.5rem;
    margin-top: 2.5rem;
  }
  .film-kaart::before {
    width: 500px;
    height: 500px;
  }
  .video-intro-text {
    flex: 1.4;
  }
  .film-spec dd {
    font-size: 1.15rem;
  }
}

/* ============================================================
   13. TIMELINE
   ============================================================ */

.timeline-section {
  padding-bottom: 1.5rem;
}

.timeline-container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.timeline-hint {
  margin-bottom: 1rem;
}

.timeline-scroll {
  overflow-x: auto;
  padding-bottom: 1rem;

  scrollbar-width: thin;
}

.timeline-horizontal,
.timeline-horizontal4 {
  display: flex;
  gap: 2rem;
  min-width: max-content;
  position: relative;
}

.timeline-horizontal::before,
.timeline-horizontal4::before {
  content: "";
  position: absolute;
  top: 118px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(0,0,0,.12);
}

.timeline-step {
  width: 280px;
  flex-shrink: 0;
  position: relative;
}

.timeline-step-werkwijze {
  width: 280px;
  flex-shrink: 0;
  position: relative;
  background: var(--deepblue);
  border: 1px solid rgba(var(--beige-rgb), .35);
  padding: 2rem 1.5rem;
}

.timeline-step-werkwijze::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(var(--beige-rgb), .2);
  pointer-events: none;
}

.timeline-image {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  margin-bottom: 2rem;
}

.timeline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 5px;
}

.timeline-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--beige);
  border-radius: 50%;
  background: var(--deepblue);
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}
.timeline-icon i {
  font-size: 1.6rem;
  color: var(--beige);
}

.timeline-number {
  display: block;

  margin-bottom: .75rem;

  color: var(--taupe);

  font-size: .85rem;
  font-weight: 700;

  letter-spacing: .2em;
  text-transform: uppercase;
}

.timeline-step h3 {
  margin: 0 0 1rem;

  font-size: 1.35rem;
}

.timeline-step p {
  margin: 0;

  line-height: 1.8;
}

@media (min-width: 940px) {

  .timeline-section {
    padding-bottom: 8rem;
  }

  .timeline-hint {
    display: none;
  }

  .timeline-scroll {
    overflow: visible;
  }

  .timeline-horizontal {
    display: grid;
    grid-template-columns: repeat(6, 1fr);

    min-width: 0;
    gap: 2rem;
  }

  .timeline-horizontal4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    min-width: 0;
    gap: 2rem;
  }

  .timeline-step {
    width: auto;
  }
}

.mobile-break {
  display: none;
}

@media (max-width: 768px) {
  .mobile-break {
    display: inline;
  }
}

/* ============================================================
   16. FOOTER
   ============================================================ */

/* Achtergrond over volledige breedte */
footer {
  background-color: var(--beige);
  color: #000;
  position: relative;
  overflow: hidden;
}

/* Inhoud gecentreerd met max breedte */
.footer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1.5rem;

  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Mobiel */
.footer-left,
.footer-center,
.footer-right {
  text-align: left;
}

footer::before {
  content: "";
  position: absolute;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 1200px; /* speel hiermee */
  height: 1200px;

  background-image: url('../images/logo/logo-uitvaartfilmen.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
}

footer ul,
.bottom_footer ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
}

footer ul li {
	line-height: 2rem;
}

footer section h4 {
	font-size: 1.7rem;
	font-weight: 900;
	margin: 0px 0px 15px 0px;
	padding: 0px;
  text-transform: uppercase;
}
footer a {
	text-decoration: none;
	color: #000;
}
footer a:hover {
	color: var(--green-color);
}

.bottom_footer a {
	text-decoration: none;
	color: #fff;
}
.bottom_footer a:hover {
	color: #e2d3b8;
}

/* ICON spacing */
.footer-left i {
  margin-right: 6px;
}

.bottom_footer {
  background-color: #000;
  font-size: 0.8rem;
  padding: 10px 15px;
}

.bottom_footer_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}

.bottom_footer_container p {
  margin: 0.2rem 0;
}

.footer-nav li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}

.footer-nav li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;

  width: 16px;
  height: 16px;

  background-image: url('../images/logo/icon-logo-uitvaartfilmen-black.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.whatsapp-cta {
  display: none;
}

#uitvaartvideo {
  scroll-margin-top: 230px;
}

.video-preview {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 1.5rem;
}

.video-preview-image {
  position: relative;
}

.video-preview-image a {
  display: block;
  position: relative;
  overflow: hidden;
}

.video-preview-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  transition: transform 0.4s ease;
}

.video-preview-image:hover img {
  transform: scale(1.03);
}

/* Play button */
.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 80px;
  height: 80px;

  background: rgba(0, 0, 0, 0.75);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.3s ease;
}

.video-play-button i {
  color: #fff;
  font-size: 1.8rem;
  margin-left: 4px; /* optisch centreren */
}

.video-preview-image:hover .video-play-button {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(0, 0, 0, 0.9);
}

/* ============================================================
   14. PRIJZEN
   ============================================================ */

.pricing-grid {
  display: grid;
  gap: 2rem;
}

.pricing-card {
  position: relative;

  display: flex;
  flex-direction: column;

  padding: 2rem;

  background: var(--color-taupe);

  border: 1px solid #d6c8b4;
  border-radius: 4px;

  overflow: hidden;

  transition: all .3s ease;
}

/* binnenrand */

.pricing-card::after {
  content: "";

  position: absolute;
  inset: 8px;

  border: 1px solid rgba(214, 200, 180, .7);

  pointer-events: none;
}

/* badge */

.pricing-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;

  padding: .45rem .9rem;

  background: rgba(214, 200, 180, .35);
  border: 1px solid rgba(214, 200, 180, .8);
  border-radius: 999px;

  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;

  z-index: 2;
}

/* uitgelichte kaart */

.pricing-card.featured {
  border-color: #c7b59c;
}

.pricing-card.featured::after {
  border-color: rgba(199, 181, 156, .9);
}

/* header */

.pricing-header h3 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.pricing-header p {
  margin-bottom: 2rem;
}

/* lijst */

.pricing-card .custom-list {
  margin-bottom: auto;
}

.pricing-card .custom-list li {
  padding-bottom: .75rem;
}

/* footer */

.pricing-footer {
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, .08);
}

/* prijs */

.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: .75rem;

  margin-bottom: 1rem;

  font-size: 1rem;
  line-height: 1;
}

.pricing-price strong {
  font-size: 3rem;
  font-weight: 700;
  line-height: .85;
}

.pricing-note {
  margin: 0;
  font-size: .95rem;
  color: #fff;
}

.pricing-ex p {
  font-size: .85rem;
  font-style: italic;
  opacity: .75;
}

/* =====================
   TABLET / DESKTOP
===================== */

@media (min-width: 940px) {

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card {
    min-height: 100%;
    padding: 3rem;
  }

  .pricing-card::after {
    inset: 10px;
  }

  .pricing-badge {
    top: 2rem;
    right: 2rem;
  }

  .pricing-header h3 {
    margin-bottom: 1rem;
    font-size: 3rem;
  }

  .pricing-footer {
    margin-top: 2.5rem;
    padding-top: 1.75rem;
  }

  .pricing-price strong {
    font-size: 4rem;
  }

}

.extra-option {
  display: flex;
  flex-direction: column;
}

.extra-option p {
  margin-bottom: auto;
}

.extra-price {
  margin-top: 2rem;
  padding-top: 1rem;

  border-top: 1px solid rgba(0,0,0,.08);

  font-size: 1.4rem;
  font-weight: 700;
}

.comparison-table-wrapper {
  margin-top: 40px;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 28px 0;
  text-align: left;
}

.comparison-table thead th {
  font-size: 1.3rem;
  font-weight: 700;
}

.comparison-table thead tr {
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.comparison-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table td:first-child {
  width: 45%;
  font-weight: 700;
}

.comparison-table td:nth-child(2),
.comparison-table td:nth-child(3) {
  width: 32.5%;
}

.comparison-table i {
  font-size: 1.6rem;
}

@media (max-width: 768px) {

  .comparison-table th,
  .comparison-table td {
    padding: 18px 12px;
    font-size: 0.95rem;
  }

  .comparison-table thead th {
    font-size: 1rem;
  }

}

@media (min-width: 940px) {

  .video-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

}

.extra-info-box {
  margin-top: 2rem;
  padding: 1rem;
  background-color: var(--beige);
  color: #000;
  text-align: center;
  font-style: italic;
}

.audio-demo-box {
  margin-top: 2rem;
  padding: 1rem;
  border: 1px solid rgba(var(--beige-rgb), .2);
}

.audio-demo-box strong {
  display: block;
  margin-bottom: .75rem;
  font-size: .95rem;
}

.audio-demo-box audio {
  width: 100%;
  max-width: 320px;
}

/* =====================
   WERKWIJZE INTRO (editorial)
===================== */
.werkwijze-intro-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* grote openingszin */
.intro-lead {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.6;
  color: var(--beige);
  border-left: 2px solid var(--beige);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  max-width: 34ch;
}

/* proces-kaart */
.proces-kaart {
  position: relative;
  background: var(--deepblue);
  border: 1px solid rgba(var(--beige-rgb), .35);
  padding: 2rem;
}
/* binnenrand, zelfde detail als de pricing-cards */
.proces-kaart::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(var(--beige-rgb), .2);
  pointer-events: none;
}
.proces-kaart-titel {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--beige);
  font-size: 1.2rem;
  margin: 0 0 1.5rem 0;
}

/* verticale stappen met verbindingslijn */
.proces-stappen {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.proces-stappen li {
  position: relative;
  display: flex;
  gap: 1.25rem;
  padding-bottom: 2rem;
}
.proces-stappen li:last-child {
  padding-bottom: 0;
}
/* lijn tussen de nummers */
.proces-stappen li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 0;
  width: 1px;
  background: rgba(var(--beige-rgb), .3);
}
.proces-nummer {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--beige);
  border-radius: 50%;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--beige);
}
.proces-stappen strong {
  display: block;
  margin-top: 0.5rem;
  font-size: 1rem;
}
.proces-stappen p {
  margin: 0.25rem 0 0 0;
  font-size: 0.9rem;
  color: var(--warm-grijs);
}

/* portret in de intro (over mij) */
.intro-portret {
  width: 100%;
}
.intro-portret img {
  width: 100%;
  height: auto;
  display: block;
  border: 0.5rem solid var(--beige);
}

@media (min-width: 940px) {
  .intro-portret {
    flex: 1;
    max-width: 480px;
    margin-top: 2.5rem;   /* zelfde offset als de film-kaart: gelijk met de H2 */
  }
}

/* Desktop */
@media (min-width: 940px) {
  .werkwijze-intro-grid {
    flex-direction: row;
    gap: 6rem;
    align-items: center;
  }
  .werkwijze-intro-text {
    flex: 1.4;
  }
  .proces-kaart {
    flex: 1;
    padding: 3rem;
    align-self: start;
  }
  .intro-lead {
    font-size: 1.7rem;
  }
}

@media (min-width: 940px) {
  .footer {
    padding: 8rem 0rem;

    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
  }

  .footer-col {
    flex: 1;
  }

  .footer-left {
    text-align: left;
  }

  .footer-center {
    text-align: center;
  }

  .footer-nav li::before {
    content: none;
  }

  .footer-nav li {
    padding-left: 0;
    margin-bottom: 0px;
  }

  .footer-right {
    text-align: right;
  }

  .whatsapp-cta {
    position: fixed;
    right: 15px;
    bottom: 15px;
    width: 45px;
    height: 45px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .whatsapp-cta:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  }


  .footer a:hover {
    text-decoration: underline;
  }

  .bottom_footer_container {
    max-width: 1280px;
    margin-inline: auto;
    height: 50px;
    flex-direction: row;
    justify-content: space-between; /* 🔑 links / rechts */
    align-items: center;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 700;
  }
}

/* =====================
   CONTACT — kaart & formulier
   (toevoegen aan uitvaartfilmen.css)
===================== */

/* contactgegevens in de proces-kaart */
.contact-lijst {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-lijst li {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding-bottom: 1.75rem;
}
.contact-lijst li:last-child {
  padding-bottom: 0;
}
.contact-icoon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--beige);
  border-radius: 50%;
  color: var(--beige);
  font-size: 1rem;
}
.contact-lijst strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1rem;
}
.contact-lijst p {
  margin: 0.25rem 0 0 0;
  font-size: 0.95rem;
  color: var(--warm-grijs);
}
.contact-lijst a {
  color: var(--beige);
  text-decoration: underline;
  font-weight: bold;
}
.contact-lijst a:hover {
  text-decoration: none;
}

.contact-form {
  position: relative;
  background: var(--deepblue);
  border: 1px solid rgba(var(--beige-rgb), .35);
  padding: 2rem 1.5rem;
  margin-top: 2rem;
}
.contact-form::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(var(--beige-rgb), .2);
  pointer-events: none;
}
.contact-form > * {
  position: relative;
  z-index: 1;
}

/* velden */
.form-veld {
  margin-bottom: 1.25rem;
}
.form-veld label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--warm-grijs);
}
.verplicht {
  color: var(--beige);
}
.optioneel {
  text-transform: none;
  letter-spacing: 0;
}
.form-veld input,
.form-veld textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(var(--beige-rgb), .35);
  border-radius: 3px;
  color: var(--text-main);
  font: inherit;
}
.form-veld input:focus,
.form-veld textarea:focus {
  outline: 2px solid var(--beige);
  outline-offset: 2px;
}
.form-veld textarea {
  resize: vertical;
  min-height: 140px;
}

/* honeypot onzichtbaar */
.form-verborgen {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* knop & meldingen */
.form-verstuur {
  border: 2px solid #fff;
  cursor: pointer;
}
.form-success,
.form-error {
  margin: 1.5rem 0 0 0;
  padding: 1rem 1.25rem;
  font-weight: 700;
}
.form-success {
  background: rgba(var(--beige-rgb), .12);
  border: 1px solid var(--beige);
  color: var(--beige);
}
.form-error {
  background: rgba(224, 141, 141, .1);
  border: 1px solid #e08d8d;
  color: #e08d8d;
}
.form-privacy {
  margin: 1rem 0 0 0;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--warm-grijs);
}

/* anker niet achter de sticky header laten verdwijnen */
#contactformulier {
  scroll-margin-top: 120px;
}

/* Desktop */
@media (min-width: 940px) {
  .contact-form {
    padding: 3rem;
    margin-top: 2.5rem;
  }
}
