/* ===== Stichting Klara – Modern, warm & speels ===== */

/* --- Google Fonts: Poppins (modern, speels) + DM Serif Display (warmte, karakter) --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
  /* Vrolijke, warme tinten – oranje/amber/geel als basis */
  --color-white: #fff;
  --color-black: #222;
  --color-text: #3b3333;
  --color-orange: #e8660d;
  --color-orange-dark: #d45500;
  --color-orange-light: #f58a2e;
  --color-amber: #f5a623;
  --color-yellow: #ffc107;
  --color-yellow-bright: #ffd54f;
  --color-yellow-soft: #fff8e1;
  --color-cream: #fef9f0;
  --color-warm-bg: #fdf7f0;
  --color-sage: #8ba888;
  --color-sage-light: #e7f0e4;
  --color-rust: #e06030;

  --font-body: 'Poppins', sans-serif;
  --font-heading: 'DM Serif Display', serif;

  --header-height: 72px;
  --scroll-margin: 120px;
  --container: min(92%, 1040px);
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 12px 48px rgba(232, 102, 13, 0.16);
  --shadow-glow: 0 0 0 4px rgba(232, 102, 13, 0.12);

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s ease;
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: var(--scroll-margin);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--color-orange);
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
}

a:hover {
  color: var(--color-orange-light);
}

/* Focus ring voor accessibility */
:focus-visible {
  outline: 3px solid var(--color-orange-light);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================
   HEADER
   ============================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(to top, #e8660d, #f5a623, #ffc107);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.50);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  min-height: var(--header-height);
}

.logo-link {
  display: flex;
  align-items: center;
  transition: transform var(--transition-bounce), filter var(--transition);
}

.logo-link:hover {
  transform: scale(1.04) rotate(-1deg);
  filter: drop-shadow(0 0 12px rgba(255, 193, 7, 0.4));
}

.logo-img {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--color-white);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ============================
   DESKTOP NAV
   ============================ */
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.25rem;
}

.nav-list a {
  display: block;
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-list a:hover {
  background: rgba(255, 255, 255, 0.25);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* ============================
   MOBILE NAV (max-width: 768px)
   ============================ */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-main {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #e8660d;
    padding: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }

  .nav-main.is-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 0.25rem;
  }

  .nav-list a {
    display: block;
    padding: 0.9rem 1.25rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
  }

  .nav-list a:hover,
  .nav-list a:active {
    background: rgba(255, 255, 255, 0.3);
  }
}

@media (min-width: 769px) {
  .nav-main {
    display: block !important;
  }
}

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + 1.5rem) 1.25rem 2rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero {
    padding-top: calc(var(--header-height) + 0.75rem);
    padding-bottom: 1.25rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .hero-title {
    font-size: clamp(1.5rem, 6vw, 1.85rem) !important;
  }
  .hero-subtitle {
    font-size: 0.95rem;
  }
}

@media (min-width: 769px) {
  .hero {
    min-height: 70vh;
    padding: calc(var(--header-height) + 3rem) 2rem 4rem;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/2024-02-paarden-strao-2023.jpg'),
    linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-light) 45%, var(--color-yellow) 100%);
  background-size: cover, cover;
  background-position: center 35%, center;
  animation: heroBgZoom 20s ease-in-out infinite alternate;
}

@keyframes heroBgZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

@media (max-width: 768px) {
  .hero-bg {
    background-size: 200% auto, cover;
    background-position: center 25%, center;
  }
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(34, 34, 34, 0.35) 0%,
    rgba(34, 34, 34, 0.6) 50%,
    rgba(34, 34, 34, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-align: center;
}

/* H1 met serif-heading voor warmte */
.hero-title {
  margin: 0 0 1.25rem;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.25;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
  animation: heroTitleIn 1.1s cubic-bezier(0.4, 0, 0.2, 1) both;
  transition: transform var(--transition-bounce), text-shadow var(--transition);
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  }
}

.hero-title:hover {
  transform: scale(1.02);
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.6), 0 0 60px rgba(255, 193, 7, 0.3);
}

@keyframes heroTitleIn {
  from { opacity: 0; transform: translateY(32px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-subtitle {
  margin: 0;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
  animation: heroSubtitleIn 1s 0.25s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes heroSubtitleIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================
   SECTIES
   ============================ */
.section {
  padding: 5rem 1.5rem;
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}

.section--alt {
  background: var(--color-warm-bg);
}

.section--yellow {
  background: #ffc107;
}

/* Decoratieve golvende sectiescheiders */
.section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 48px;
  background: inherit;
  clip-path: ellipse(60% 100% at 50% 100%);
  z-index: 1;
  pointer-events: none;
}

.section:first-of-type::before {
  display: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Section titles met serif-font */
.section-title {
  margin: 0 0 1.75rem;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 400;
  color: var(--color-black);
  position: relative;
  padding-bottom: 0.85rem;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-orange), var(--color-amber), var(--color-yellow));
  border-radius: 2px;
  transition: width var(--transition);
}

.section-title:hover::after {
  width: 80px;
}

.section-intro,
.lead {
  font-size: 1.1rem;
  margin: 0 0 2rem;
  color: var(--color-text);
  line-height: 1.8;
}

/* ============================
   CONTENT GRID (Meer over Klara)
   ============================ */
.content-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .content-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.content-block {
  background: var(--color-white);
  padding: 1.75rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition-bounce);
}

/* Decoratief accent streepje linksboven */
.content-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--color-orange), var(--color-amber), var(--color-yellow));
  border-radius: 0 0 2px 0;
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-block:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.content-block:hover::before {
  height: 100%;
}

.content-block p {
  margin: 0;
}

/* ============================
   SUBSECTION TITLES (h3)
   ============================ */
.subsection-title {
  margin: 2.5rem 0 1.25rem;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 400;
  color: var(--color-orange);
  position: relative;
  padding-left: 1rem;
  border-left: 4px solid var(--color-amber);
}

.subsection-title:first-of-type {
  margin-top: 0.5rem;
}

/* ============================
   TEXT WITH PHOTO (afwisselend links/rechts)
   ============================ */
.text-with-photo {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: center;
}

@media (min-width: 640px) {
  .text-with-photo {
    grid-template-columns: 280px 1fr;
  }
  .text-with-photo--reverse {
    grid-template-columns: 1fr 280px;
  }
  .text-with-photo--reverse .text-with-photo__img {
    order: 2;
  }
  .text-with-photo--reverse .text-with-photo__text {
    order: 1;
  }
}

@media (min-width: 900px) {
  .text-with-photo {
    grid-template-columns: 320px 1fr;
  }
  .text-with-photo--reverse {
    grid-template-columns: 1fr 320px;
  }
}

.text-with-photo__img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition-bounce);
}

.text-with-photo__img img:hover {
  box-shadow: var(--shadow-hover);
  transform: scale(1.02) rotate(-0.5deg);
}

.text-with-photo__text p {
  margin: 0 0 0.85rem;
}

.text-with-photo__text p:last-child {
  margin-bottom: 0;
}

/* ============================
   CONTENT BLOCK WIDE (volle breedte)
   ============================ */
.content-block--wide {
  max-width: 100%;
  margin-bottom: 2rem;
}

/* ============================
   TAGLINE QUOTE (blockquote)
   ============================ */
.tagline-quote {
  margin: 1rem 0;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-amber) 100%);
  color: var(--color-white);
  border-radius: var(--radius);
  font-size: 1.15rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.tagline-quote:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}

/* ============================
   KLARA FOOTNOTE
   ============================ */
.klara-footnote {
  font-size: 0.92rem;
  color: #777;
  margin: 0.5rem 0;
  line-height: 1.6;
}

/* ============================
   SECTION CTA (afsluitende link/zin)
   ============================ */
.section-cta {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  text-align: center;
  font-size: 1rem;
}

/* ============================
   TAGLINE + FOTO 50/50
   ============================ */
.tagline-photo-row {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
  align-items: center;
}

@media (min-width: 640px) {
  .tagline-photo-row {
    grid-template-columns: 1fr 1fr;
  }
}

.tagline-col .tagline { margin: 0 0 1rem; }
.tagline-col p { margin: 0 0 0.75rem; }
.tagline-col p:last-child { margin-bottom: 0; }
.figure-col .section-img { margin: 0; }
.figure-col .figcaption { margin-top: 0.75rem; }

.tagline {
  font-size: 1.08rem;
  margin: 2rem 0;
  padding: 1.5rem 1.75rem;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-yellow-soft) 100%);
  border-left: 5px solid var(--color-orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.tagline:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.section-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition-bounce);
}

.section-img:hover {
  box-shadow: var(--shadow-hover);
  transform: scale(1.02) rotate(-0.5deg);
}

.figcaption {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: #777;
  font-style: italic;
}

/* ============================
   CONTACT & SPONSOREN
   ============================ */
.two-col {
  display: grid;
  gap: 2rem;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-block,
.sponsoren-block {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition-bounce);
}

.contact-block::before,
.sponsoren-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-orange), var(--color-amber), var(--color-yellow));
  opacity: 0;
  transition: opacity var(--transition);
}

.contact-block:hover,
.sponsoren-block:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.contact-block:hover::before,
.sponsoren-block:hover::before {
  opacity: 1;
}

.contact-block h3,
.sponsoren-block h3 {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-orange);
}

.contact-block p,
.sponsoren-block p {
  margin: 0 0 0.5rem;
}

/* ============================
   FOTOALBUM
   ============================ */
.photo-album {
  margin-top: 0;
  padding: 1.5rem 0;
}

.photo-album .section-title {
  margin-bottom: 1.25rem;
}

.photo-album-viewer {
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: center;
  gap: 1rem;
  max-width: 740px;
  width: 100%;
  margin: 0 auto 1.25rem;
  min-height: 400px;
}

.photo-album-btn {
  width: 52px;
  height: 52px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-orange);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background var(--transition), color var(--transition), transform var(--transition-bounce), box-shadow var(--transition);
}

.photo-album-btn:hover {
  background: var(--color-orange);
  color: var(--color-white);
  transform: scale(1.12);
  box-shadow: var(--shadow-hover);
}

.photo-album-btn:active {
  transform: scale(0.95);
}

.photo-album-frame {
  min-width: 0;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.photo-album-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.4s ease;
}

.photo-album-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 0;
}

.photo-album-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition-bounce), border-color var(--transition);
}

.photo-album-dots button:hover {
  background: var(--color-orange-light);
  transform: scale(1.3);
}

.photo-album-dots button[aria-selected="true"] {
  background: var(--color-orange);
  border-color: var(--color-amber);
  transform: scale(1.3);
}

@media (max-width: 480px) {
  .photo-album-viewer {
    grid-template-columns: 44px 1fr 44px;
    gap: 0.5rem;
    min-height: 260px;
  }
  .photo-album-btn {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }
  .photo-album-frame {
    height: 260px;
  }
}

/* ============================
   LINKS
   ============================ */
.links-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.links-list li {
  margin-bottom: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition-bounce);
}

.links-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-sage);
  border-radius: 2px;
  transition: width var(--transition);
}

.links-list li:hover {
  box-shadow: var(--shadow-hover);
  transform: translateX(6px);
}

.links-list li:hover::before {
  width: 6px;
}

.links-list a {
  font-weight: 700;
}

/* ============================
   DOWNLOADS
   ============================ */
.downloads-row {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 640px) {
  .downloads-row {
    grid-template-columns: 1fr 1fr;
  }
}

.downloads-photo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.downloads-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-bounce), box-shadow var(--transition);
}

.downloads-img:hover {
  transform: scale(1.02) rotate(-0.5deg);
  box-shadow: var(--shadow-hover);
}

.downloads-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.downloads-list li {
  margin-bottom: 0.6rem;
}

.downloads-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  color: var(--color-orange-dark);
  border: 1px solid rgba(212, 98, 26, 0.15);
  transition: background var(--transition), color var(--transition), transform var(--transition-bounce), box-shadow var(--transition);
}

.downloads-list a:hover {
  background: var(--color-white);
  color: var(--color-orange);
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-md);
}

.downloads-list a::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: var(--color-orange);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4'/%3E%3Cpolyline points='7 10 12 15 17 10'/%3E%3Cline x1='12' y1='15' x2='12' y2='3'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4'/%3E%3Cpolyline points='7 10 12 15 17 10'/%3E%3Cline x1='12' y1='15' x2='12' y2='3'/%3E%3C/svg%3E");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  flex-shrink: 0;
  transition: transform var(--transition-bounce);
}

.downloads-list a:hover::before {
  transform: translateY(2px);
}

/* ============================
   ANIMATIES: scroll reveal met stagger
   ============================ */
.animate-in {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delay voor kinderen */
.content-grid .animate-in:nth-child(2) { transition-delay: 0.12s; }
.two-col .animate-in:nth-child(2) { transition-delay: 0.12s; }
.tagline-photo-row .animate-in:nth-child(2) { transition-delay: 0.15s; }

/* ============================
   FOOTER
   ============================ */
.site-footer {
  background: var(--color-black);
  color: var(--color-white);
  padding: 3rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-orange), var(--color-amber), var(--color-yellow), var(--color-sage));
}

.footer-tagline {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-yellow);
  letter-spacing: 0.02em;
}

.footer-copy {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.7;
}

.site-footer a {
  color: var(--color-yellow-bright);
  transition: color var(--transition);
}

.site-footer a:hover {
  color: var(--color-white);
}
