/* ==========================================================================
   Style CSS - Rob Peetoom Theme
   Gebaseerd op GT America font family
   ========================================================================== */

/* ==========================================================================
   1. FONT-FACE DECLARATIES
   ========================================================================== */

@font-face {
  font-family: 'GTAmericaCompressed';
  src: url('../fonts/GT-America-Compressed-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'GTAmericaExtended';
  src: url('../fonts/GT-America-Extended-Light.woff2') format('woff2');
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'GTAmericaExtended';
  src: url('../fonts/GT-America-Extended-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'GTAmericaExtended';
  src: url('../fonts/GT-America-Extended-Black.woff2') format('woff2');
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: 'GTAmerica';
  src: url('../fonts/GT-America-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'GTAmerica';
  src: url('../fonts/GT-America-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'OvertheRainbow';
  src: url('../fonts/OvertheRainbow.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

/* ==========================================================================
   2. CSS CUSTOM PROPERTIES
   ========================================================================== */

:root {
  /* Font Families */
  --font-display: 'GTAmericaCompressed', sans-serif;
  --font-heading: 'GTAmericaExtended', sans-serif;
  --font-body: 'GTAmerica', sans-serif;

  /* Font Weights */
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --font-weight-black: 900;

  /* Body Font Sizes */
  --font-size-body: 1rem;
  --font-size-body-lg: 1.25rem;
  --font-size-body-sm: 0.875rem;
  --font-size-body-xs: 0.75rem;
  --font-size-body-xs-reduced: 0.625rem;

  /* Heading Font Sizes - Responsive met clamp() */
  --font-size-h1: clamp(2.25rem, 5vw, 3rem);
  --font-size-h1-xl: clamp(2.5rem, 5.5vw, 3.25rem);
  --font-size-h2: clamp(2rem, 4.5vw, 3rem);
  --font-size-h3: clamp(1.75rem, 3.5vw, 2.25rem);
  --font-size-h3-xl: clamp(2rem, 4vw, 2.5rem);
  --font-size-h4: clamp(1.5rem, 3vw, 2rem);
  --font-size-h5: clamp(1.375rem, 2.5vw, 1.75rem);
  --font-size-h6: clamp(1.25rem, 2vw, 1.5rem);
  --font-size-h7: 1.5rem;
  --font-size-h8: 1.25rem;
  --font-size-h9: 1rem;
  --font-size-h10: 0.75rem;
  --font-size-h11: 0.75rem;

  /* Display Font Sizes (Desktop) */
  --font-size-display-1: 14.25rem;
  --font-size-display-2: 12.75rem;
  --font-size-display-3: 5.5rem;
  --font-size-display-4: 5rem;
  --font-size-display-5: 4rem;

  /* Line Heights */
  --line-height-body: 1.5rem;
  --line-height-body-extended: 1.75rem;
  --line-height-body-reduced: 1.25rem;
  --line-height-body-sm: 1.25rem;
  --line-height-body-sm-reduced: 1.125rem;
  --line-height-body-xs: 1rem;
  --line-height-body-xs-reduced: 0.875rem;

  /* Line Heights - Responsive met clamp() */
  --line-height-h1: clamp(2.75rem, 5.5vw, 3.5rem);
  --line-height-h1-xl: clamp(3rem, 6vw, 3.75rem);
  --line-height-h2: clamp(2.5rem, 5vw, 3.5rem);
  --line-height-h3: clamp(2.25rem, 4vw, 2.75rem);
  --line-height-h3-xl: clamp(2.5rem, 4.5vw, 3rem);
  --line-height-h4: clamp(2rem, 3.5vw, 2.25rem);
  --line-height-h5: clamp(1.75rem, 3vw, 2.25rem);
  --line-height-h6: clamp(1.5rem, 2.5vw, 2rem);
  --line-height-h7: 2rem;
  --line-height-h8: 1.75rem;
  --line-height-h9: 1.25rem;
  --line-height-h10: 1rem;

  --line-height-display-1: 12.5rem;
  --line-height-display-2: 10.75rem;
  --line-height-display-3: 5rem;
  --line-height-display-4: 4.5rem;

  /* Link & Label */
  --font-size-link: 0.875rem;
  --font-size-label: 0.75rem;
  --letter-spacing-link: 0.02rem;
}

/* ==========================================================================
   3. AUTOMATISCHE ELEMENT STYLING
   ========================================================================== */

p {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body);
}

h1 {
  font-family: var(--font-heading);
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-h1);
}

h2 {
  font-family: var(--font-heading);
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-h2);
}

h3 {
  font-family: var(--font-heading);
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-h3);
}

h4 {
  font-family: var(--font-heading);
  font-size: var(--font-size-h4);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-h4);
}

h5 {
  font-family: var(--font-heading);
  font-size: var(--font-size-h5);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-h5);
}

h6 {
  font-family: var(--font-heading);
  font-size: var(--font-size-h6);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-h6);
}

/* ==========================================================================
   4. UTILITY CLASSES - DISPLAY (Hero Titels)
   ========================================================================== */

.text-display-1,
.text-display-2,
.text-display-3,
.text-display-4,
.text-display-5 {
  font-family: var(--font-display);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
}

.text-display-4 {
  font-size: var(--font-size-display-4);
  line-height: var(--line-height-display-4);
}

.text-display-5 {
  font-size: var(--font-size-display-5);
}

/* ==========================================================================
   5. UTILITY CLASSES - HEADINGS
   ========================================================================== */

/* Heading 1 */
.text-heading-1 {
  font-family: var(--font-heading);
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-h1);
}

/* Heading 2 */
.text-heading-2 {
  font-family: var(--font-heading);
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-h2);
}

/* Heading 3 */
.text-heading-3 {
  font-family: var(--font-heading);
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-h3);
}

.text-heading-3-light {
  font-family: var(--font-heading);
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-h3);
}

/* Heading 4 */
.text-heading-4 {
  font-family: var(--font-heading);
  font-size: var(--font-size-h4);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-h4);
}

.text-heading-4-light {
  font-family: var(--font-heading);
  font-size: var(--font-size-h4);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-h4);
}

/* Heading 5 */
.text-heading-5 {
  font-family: var(--font-heading);
  font-size: var(--font-size-h5);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-h5);
}

.text-heading-5-light {
  font-family: var(--font-heading);
  font-size: var(--font-size-h5);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-h5);
}

/* Heading 6 */
.text-heading-6 {
  font-family: var(--font-heading);
  font-size: var(--font-size-h5);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-h5);
}

/* Heading 7 */
.text-heading-7 {
  font-family: var(--font-heading);
  font-size: var(--font-size-h7);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-h7);
}

.text-heading-7-light {
  font-family: var(--font-heading);
  font-size: var(--font-size-h7);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-h7);
}

/* Heading 8 */
.text-heading-8 {
  font-family: var(--font-heading);
  font-size: var(--font-size-h8);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-h8);
}

.text-heading-8-light {
  font-family: var(--font-heading);
  font-size: var(--font-size-h8);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-h8);
}

/* Heading 9 */
.text-heading-9 {
  font-family: var(--font-heading);
  font-size: var(--font-size-h9);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-h9);
}

.text-heading-9-light {
  font-family: var(--font-heading);
  font-size: var(--font-size-h9);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-h9);
}

/* Heading 10 */
.text-heading-10 {
  font-family: var(--font-heading);
  font-size: var(--font-size-h10);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-h10);
}

/* Heading 11 */
.text-heading-11 {
  font-family: var(--font-heading);
  font-size: var(--font-size-h11);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-h10);
}

/* ==========================================================================
   6. UTILITY CLASSES - BODY
   ========================================================================== */

.text-body {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body);
}

.text-body-extended {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body-extended);
}

.text-body-lg {
  font-family: var(--font-body);
  font-size: var(--font-size-body-lg);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body-extended);
}

.text-body-lg-reduced {
  font-family: var(--font-body);
  font-size: var(--font-size-body-lg);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body);
}

.text-body-reduced {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body-reduced);
}

.text-body-sm {
  font-family: var(--font-body);
  font-size: var(--font-size-body-sm);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body-sm);
}

.text-body-sm-reduced {
  font-family: var(--font-body);
  font-size: var(--font-size-body-sm);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body-sm-reduced);
}

.text-body-xs {
  font-family: var(--font-body);
  font-size: var(--font-size-body-xs);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body-xs);
}

.text-body-xs-bold {
  font-family: var(--font-body);
  font-size: var(--font-size-body-xs);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-body-xs);
}

.text-body-xs-reduced {
  font-family: var(--font-body);
  font-size: var(--font-size-body-xs-reduced);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body-xs-reduced);
}

.text-body-xs-reduced-leading {
  font-family: var(--font-body);
  font-size: var(--font-size-body-xs);
  font-weight: var(--font-weight-regular);
  line-height: 0.75rem;
}

/* ==========================================================================
   7. UTILITY CLASSES - LINKS & LABELS
   ========================================================================== */

.text-link {
  font-family: var(--font-heading);
  font-size: var(--font-size-link);
  font-weight: var(--font-weight-black);
  line-height: var(--line-height-body-sm);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-link);
}

.text-label {
  font-family: var(--font-heading);
  font-size: var(--font-size-label);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-body-sm);
}

/* ==========================================================================
   8. RESPONSIVE - DESKTOP (1024px+)
   ========================================================================== */

@media (min-width: 1024px) {
  /* Display classes - alleen zichtbaar op desktop */
  .text-display-1 {
    font-size: var(--font-size-display-1);
    line-height: var(--line-height-display-1);
  }

  .text-display-2 {
    font-size: var(--font-size-display-2);
    line-height: var(--line-height-display-2);
  }

  .text-display-3 {
    font-size: var(--font-size-display-3);
    line-height: var(--line-height-display-3);
  }

  /* Heading XL varianten - alleen desktop */
  .text-heading-1-xl {
    font-family: var(--font-heading);
    font-size: var(--font-size-h1-xl);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-h1-xl);
  }

  .text-heading-3-xl {
    font-family: var(--font-heading);
    font-size: var(--font-size-h3-xl);
    font-weight: var(--font-weight-light);
    line-height: var(--line-height-h3-xl);
  }
}

/* ==========================================================================
   9. BUTTON STYLING
   ========================================================================== */

.btn {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body);
  padding: 0.875rem 2.25rem;
  border: 1px solid;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.btn-primary {
  background-color: black;
  color: white;
  border-color: black;
}

.btn-primary:hover {
  background-color: white;
  color: black;
}

.btn-primary:disabled {
  background-color: #e5e5e5;
  color: #999999;
  border-color: #e5e5e5;
  cursor: not-allowed;
}

.btn-secondary {
  background-color: white;
  color: black;
  border-color: black;
}

.btn-secondary:hover {
  background-color: black;
  color: white;
}

.btn-secondary:disabled {
  background-color: #e5e5e5;
  color: #999999;
  border-color: #e5e5e5;
  cursor: not-allowed;
}

.btn-transparent {
  background-color: transparent;
  color: white;
  border-color: white;
}

.btn-transparent:hover {
  background-color: white;
  color: black;
}

.btn-transparent:disabled {
  background-color: #e5e5e5;
  color: #999999;
  border-color: #e5e5e5;
  cursor: not-allowed;
}

.btn-link {
  font-family: var(--font-heading);
  font-size: var(--font-size-link);
  font-weight: var(--font-weight-black);
  text-transform: uppercase;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
}

.btn-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.2s ease;
}

.btn-link:hover::after {
  width: 100%;
}

/* ==========================================================================
   10. BASE & RESET
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: #000;
  background-color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ==========================================================================
   11. LAYOUT HELPERS
   ========================================================================== */

.container {
  width: 100%;
  max-width: 1312px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 4rem;
  }
}

/* ==========================================================================
   12. LOGO BANNER
   ========================================================================== */

.logo-banner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 1rem;
  background-color: #fff;
  border-bottom: 1px solid;
}

@media (min-width: 1024px) {
  .logo-banner {
    display: none;
  }
}

.logo-banner img {
  height: 60px;
  width: auto;
}

/* Rob Peetoom Logo Styling - Mobile Header */
.logo-banner__logo--rob-peetoom img {
  width: 186px;
}

/* Spacer voor grid balans */
.logo-banner__spacer {
  display: block;
}

@media (min-width: 1024px) {
  .logo-banner__spacer {
    display: none;
  }
}

/* Hamburger Button in Logo Banner */
.logo-banner__hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  justify-self: start;
}

@media (min-width: 1024px) {
  .logo-banner__hamburger {
    display: none;
  }
}

.logo-banner__hamburger-lines {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 20px;
  height: 16px;
}

.logo-banner__hamburger-lines span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000;
  transition: transform 0.3s, opacity 0.3s;
}

.logo-banner__hamburger-label {
  display: none;
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: var(--font-weight-medium);
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   13. HERO SECTION
   ========================================================================== */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  background-image: url('../images/HOME.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  padding: 0 3rem;
}

@media (min-width: 1024px) {
  .hero {
    padding: 0 4rem;
  }
}

/* Logo-only hero variant (no heading text) */
.hero--logo-only {
  padding: 0;
}

@media (min-width: 1024px) {
  .hero--logo-only {
    padding: 0 4rem;
  }
}

.hero--logo-only .hero__nav {
  padding: 1.5rem 1rem;
}

@media (min-width: 1024px) {
  .hero--logo-only .hero__nav {
    padding: 1.5rem 0;
  }
}

.hero__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero__nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
}

.hero__logo {
  display: none;
}

@media (min-width: 1024px) {
  .hero__logo {
    display: block;
  }
}

.hero__logo a {
  display: block;
}

.hero__logo img {
  height: 24px;
  width: auto;
}

@media (min-width: 1024px) {
  .hero__logo img {
    height: 60px;
  }
}

/* Rob Peetoom Logo Styling - Desktop Header */
.hero__logo--rob-peetoom img {
  height: auto;
  width: 120px;
}

@media (min-width: 1024px) {
  .hero__logo--rob-peetoom img {
    width: 200px;
  }
}

.hero__menu {
  display: none;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .hero__menu {
    display: flex;
    justify-content: center;
  }
}

.hero__menu a {
  font-family: var(--font-heading);
  font-size: var(--font-size-body-sm);
  font-weight: var(--font-weight-medium);
  color: #fff;
  transition: opacity 0.2s;
}

.hero__menu a:hover {
  opacity: 0.8;
}

.hero__actions {
  display: none;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .hero__actions {
    display: flex;
    justify-content: flex-end;
  }
}

.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

.hero__emblem {
  width: 100%;
  max-width: 100%;
  animation: rotate 24s linear infinite;
}

@media (min-width: 1024px) {
  .hero__emblem {
    max-width: 680px;
  }
}

/* ==========================================================================
   13. CTA SECTION
   ========================================================================== */

.cta {
  padding: 5rem 1rem;
  background-color: #fff;
}

@media (min-width: 1024px) {
  .cta {
    padding: 7rem 4rem;
  }
}

.cta__container {
  max-width: 1312px;
  margin: 0 auto;
}

.cta__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.cta__content h2 {
}

.cta__content p {
  max-width: 800px;
}

.cta__eyebrow {
  font-family: var(--font-heading);
  font-size: var(--font-size-body-sm);
  font-weight: var(--font-weight-black);
  text-transform: uppercase;
  letter-spacing: 0.02rem;
}

.cta__tagline {
  font-weight: 500;
  font-style: italic;
}

.cta__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 1024px) {
  .cta__actions {
    flex-direction: row;
  }
}

/* ==========================================================================
   14. STATS SECTION
   ========================================================================== */

.stats {
  padding: 5rem 1rem;
  background-color: #fff;
}

@media (min-width: 1024px) {
  .stats {
    padding: 7rem 4rem;
  }
}

.stats__container {
  max-width: 1312px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .stats__container {
    flex-direction: row;
    gap: 5rem;
    justify-content: space-around;
    align-items: center;
  }
}

.stats__header h3 {
  font-family: var(--font-display);
  font-size: var(--font-size-display-3);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  line-height: 1;
}

.stats__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.stats__item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 1.5rem;
  border-left: 1px solid #000;
}

.stats__number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: var(--font-weight-bold);
  line-height: 1;
}

.stats__label {
  font-family: var(--font-heading);
  font-size: var(--font-size-h6);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
}

/* ==========================================================================
   15. GALLERY SECTION
   ========================================================================== */

.gallery {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.gallery__slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery__slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.gallery__slide {
  flex: 0 0 100%;
  height: 100%;
}

.gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid #000;
  border-radius: 50%;
  background-color: #fff;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, color 0.2s;
  z-index: 10;
}

.gallery__arrow:hover {
  background-color: #000;
  color: #fff;
}

.gallery__arrow--prev {
  left: 2rem;
}

.gallery__arrow--next {
  right: 2rem;
}

.gallery__dots {
  display: none;
}

.gallery__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #000;
  background-color: transparent;
  transition: background-color 0.2s;
}

.gallery__dot--active,
.gallery__dot:hover {
  background-color: #000;
}

/* Gallery Wide Variant - 16:9 aspect ratio */
.gallery--wide {
  height: auto;
  max-height: none;
  aspect-ratio: 16 / 9;
}

.gallery--wide .gallery__slider,
.gallery--wide .gallery__slides,
.gallery--wide .gallery__slide {
  height: 100%;
}

/* Gallery Static Image (vervanging voor slider) */
.gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   16. ABOUT SECTION
   ========================================================================== */

.about {
  padding: 5rem 1rem;
  background-color: #fff;
}

@media (min-width: 1024px) {
  .about {
    padding: 7rem 4rem;
  }
}

.about__container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.about__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  max-width: 768px;
  margin: 0 auto;
}

.about__content h2 {
}

.about__content p {
  max-width: 900px;
}

.about__tagline {
  font-weight: 500;
  font-style: italic;
}

/* ==========================================================================
   16.1 BEFORE/AFTER COMPARISON
   ========================================================================== */

.compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .compare-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
  }
}

.compare {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 0.5rem;
}

.compare__img-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.compare__img-wrapper--after {
  clip-path: inset(0px 0px 0px 50%);
}

.compare__img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare__line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0.125rem;
  height: 100%;
  background-color: #fff;
  pointer-events: none;
}

.compare__slider {
  appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  position: absolute;
  width: calc(100% + 2.25rem);
  height: 100%;
  left: -1.125rem;
  margin: 0;
  cursor: grab;
}

.compare__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  height: 2.25rem;
  width: 2.25rem;
  border: 0.25rem solid #fff;
  border-radius: 50%;
  box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  background-image: url('data:image/svg+xml;utf8,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 height%3D%2224px%22 viewBox%3D%220 -960 960 960%22 width%3D%2224px%22 fill%3D%22%23000%22%3E%3Cpath d%3D%22M286.15-293.85 100-479.62l185.77-185.76 42.15 41.76-113 113.62h530.16l-113-113.62 42.15-41.76L860-479.62 674.23-293.85l-42.54-41.77 113.39-114H214.54l113.38 114-41.77 41.77Z%22/%3E%3C/svg%3E');
  background-size: cover;
  cursor: grab;
}

.compare__slider::-moz-range-thumb {
  height: 2.25rem;
  width: 2.25rem;
  border: 0.25rem solid #fff;
  border-radius: 50%;
  box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  background-image: url('data:image/svg+xml;utf8,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 height%3D%2224px%22 viewBox%3D%220 -960 960 960%22 width%3D%2224px%22 fill%3D%22%23000%22%3E%3Cpath d%3D%22M286.15-293.85 100-479.62l185.77-185.76 42.15 41.76-113 113.62h530.16l-113-113.62 42.15-41.76L860-479.62 674.23-293.85l-42.54-41.77 113.39-114H214.54l113.38 114-41.77 41.77Z%22/%3E%3C/svg%3E');
  background-size: cover;
  cursor: grab;
}

.compare__slider:active::-webkit-slider-thumb {
  cursor: grabbing;
}

.compare__slider:active::-moz-range-thumb {
  cursor: grabbing;
}

/* ==========================================================================
   17. TIMELINE SECTION
   ========================================================================== */

.timeline {
  padding: 5rem 0;
  background-color: #fff;
  overflow: hidden;
}

.timeline + .sponsorship {
  padding-top: 0;
}

@media (min-width: 1024px) {
  .timeline {
    padding: 7rem 0;
  }
}

.timeline__container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

/* Content sectie */
.timeline__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .timeline__content {
    max-width: 768px;
    padding: 0 4rem;
  }
}

.timeline__tagline {
  font-family: var(--font-heading);
  font-size: var(--font-size-body-sm);
  font-weight: var(--font-weight-black);
  text-transform: uppercase;
  letter-spacing: 0.02rem;
}

.timeline__content h2 {
}

.timeline__actions {
  margin-top: 0.5rem;
}

/* Timeline slider sectie */
.timeline__slider {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .timeline__slider {
    padding: 0 4rem;
    overflow: visible;
  }
}

.timeline__slider::-webkit-scrollbar {
  display: none;
}

/* Track met doorlopende lijn */
.timeline__track {
  position: relative;
  display: flex;
  gap: 1.5rem;
  min-height: 26rem;
}

.timeline__track::before {
  content: "";
  position: absolute;
  left: -1rem;
  right: -1rem;
  top: 50%;
  height: 2px;
  background: #000;
  transform: translateY(-50%);
  z-index: 1;
  display: none;
}

@media (min-width: 1024px) {
  .timeline__track::before {
    display: block;
    left: -4rem;
    right: -4rem;
  }
}

@media (min-width: 1024px) {
  .timeline__track {
    gap: 2rem;
  }
}

/* Timeline kolommen - grid layout */
.timeline__column {
  flex: 0 0 200px;
  display: grid;
  grid-template-rows: 1fr 2rem 1fr;
  gap: 0.75rem;
  scroll-snap-align: start;
}

.timeline__column:first-child {
  padding-left: 1rem;
}

@media (min-width: 1024px) {
  .timeline__column {
    flex: 1 1 0;
    min-width: 0;
  }

  .timeline__column:first-child {
    padding-left: 0;
  }
}

/* Image container */
.timeline__image {
  grid-row: 1;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #f5f5f5;
}

.timeline__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Info tekst */
.timeline__info {
  grid-row: 3;
}

.timeline__info h5 {
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* Marker op de lijn */
.timeline__marker {
  grid-row: 2;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #000;
  justify-self: center;
  align-self: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px #fff;
}

/* Lijn achter elke marker (mobiel) */
.timeline__marker::before {
  content: "";
  position: absolute;
  left: -50vw;
  right: -50vw;
  top: 50%;
  height: 2px;
  background: #000;
  transform: translateY(-50%);
  z-index: -1;
}

@media (min-width: 1024px) {
  .timeline__marker::before {
    display: none;
  }
}

/* Alternerende layout: image onder, info boven */
.timeline__column--alt .timeline__image {
  grid-row: 3;
}

.timeline__column--alt .timeline__info {
  grid-row: 1;
}

/* ==========================================================================
   18. VIDEO SECTION
   ========================================================================== */

.video {
  padding: 5rem 1rem;
  background-color: #fff;
}

@media (min-width: 1024px) {
  .video {
    padding: 7rem 4rem;
  }
}

.video__container {
  max-width: 1312px;
  margin: 0 auto;
}

.video__placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.video__placeholder img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video__placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border: none;
  background: none;
  cursor: pointer;
  transition: transform 0.2s;
}

.video__play:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* ==========================================================================
   19. SPONSORS SECTION
   ========================================================================== */

.sponsors {
  padding: 5rem 1rem;
  background-color: #fff;
}

@media (min-width: 1024px) {
  .sponsors {
    padding: 7rem 4rem;
  }
}

.sponsors__container {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
}

.sponsors__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.sponsors__tagline {
  font-family: var(--font-heading);
  font-size: var(--font-size-body-sm);
  font-weight: var(--font-weight-black);
  text-transform: uppercase;
  letter-spacing: 0.02rem;
}

.sponsors__content h2 {
}

.sponsors__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 0.5rem 0;
}

.sponsors__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsors__logo img {
  height: 40px;
  width: auto;
}

/* ==========================================================================
   20. FOOTER
   ========================================================================== */

.footer {
  padding: 5rem 1rem 2rem;
  background-color: #fff;
  border-top: 1px solid #e5e5e5;
}

@media (min-width: 1024px) {
  .footer {
    padding: 5rem 4rem 2rem;
  }
}

.footer__container {
  max-width: 1312px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer__main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .footer__main {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: block;
  margin-bottom: 1rem;
}

.footer__logo img {
  height: 120px;
  width: auto;
}

/* Rob Peetoom Logo Styling - Footer */
.footer__logo--rob-peetoom img {
  height: auto;
  width: 200px;
}

.footer__description {
  color: #666;
}

.footer__links {
  display: flex;
  gap: 4rem;
}

.footer__column h5 {
  margin-bottom: 1rem;
}

.footer__column ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__column a,
.footer__address {
  font-size: var(--font-size-body-sm);
  color: #666;
  transition: color 0.2s;
  word-break: break-all;
}

.footer__column a:hover {
  color: #000;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e5e5;
}

@media (min-width: 1024px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: var(--font-size-body-sm);
  color: #666;
  transition: color 0.2s;
}

.footer__legal a:hover {
  color: #000;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  width: 24px;
  height: 24px;
  color: #000;
  transition: opacity 0.2s;
}

.footer__social a:hover {
  opacity: 0.7;
}

/* ==========================================================================
   21. VIDEO LIGHTBOX
   ========================================================================== */

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.lightbox--active {
  opacity: 1;
  visibility: visible;
}

.lightbox__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.lightbox__content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  z-index: 1;
}

.lightbox__close {
  position: absolute;
  top: -3rem;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: none;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s;
}

.lightbox__close:hover {
  opacity: 0.7;
}

.lightbox__video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background-color: #000;
}

.lightbox__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   22. MOBILE MENU
   ========================================================================== */

/* Hamburger Button */
.hero__hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.hero__hamburger-lines {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 20px;
  height: 16px;
}

.hero__hamburger-lines span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

.hero__hamburger-label {
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: var(--font-weight-medium);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (min-width: 1024px) {
  .hero__hamburger {
    display: none;
  }
}

/* Mobile Menu Container */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  pointer-events: none;
}

/* Backdrop */
.mobile-menu__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  border: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
  cursor: pointer;
}

.mobile-menu__backdrop.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* Menu Panel */
.mobile-menu__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 560px;
  height: 100%;
  background-color: #fff;
  transform: translateX(-100%);
  transition: transform 0.5s;
  display: flex;
  flex-direction: column;
  padding: 0 1rem 3rem;
  overflow-y: auto;
  pointer-events: auto;
}

.mobile-menu__panel.is-active {
  transform: translateX(0);
}

@media (min-width: 1024px) {
  .mobile-menu__panel {
    padding: 2rem 4rem 3rem;
  }
}

/* Menu Header */
.mobile-menu__header {
  display: flex;
  align-items: center;
  height: 4rem;
  flex-shrink: 0;
}

.mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: -0.5rem;
  color: #000;
  transition: opacity 0.2s;
}

.mobile-menu__close:hover {
  opacity: 0.7;
}

/* Menu Navigation */
.mobile-menu__nav {
  flex-grow: 1;
  padding-top: 2rem;
}

.mobile-menu__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu__list li a {
  font-family: var(--font-heading);
  font-size: var(--font-size-h5);
  font-weight: var(--font-weight-light);
  color: #000;
  text-decoration: none;
  transition: opacity 0.2s;
}

.mobile-menu__list li a:hover {
  opacity: 0.7;
}

/* Menu Actions */
.mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
}

.mobile-menu__actions .btn {
  text-align: center;
}

/* Menu Footer */
.mobile-menu__footer {
  padding-top: 3rem;
  margin-top: auto;
}

.mobile-menu__social {
  display: flex;
  gap: 1rem;
}

.mobile-menu__social a {
  width: 24px;
  height: 24px;
  color: #000;
  transition: opacity 0.2s;
}

.mobile-menu__social a:hover {
  opacity: 0.7;
}

/* Body Scroll Lock */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* ==========================================================================
   23. HERO GALA VARIANT
   ========================================================================== */

.hero--gala {
  justify-content: flex-start;
  background-image: url('../images/hero-gala.jpg');
}

.hero--gala .hero__content {
  text-align: center;
  color: #fff;
  gap: 1.5rem;
}

.hero__tagline {
  font-family: var(--font-heading);
  font-size: var(--font-size-body-sm);
  font-weight: var(--font-weight-black);
  text-transform: uppercase;
  letter-spacing: 0.02rem;
  color: #fff;
}

.hero--gala h1 {
  color: #fff;
  text-transform: uppercase;
  max-width: 800px;
}

.hero__description {
  color: #fff;
  max-width: 600px;
  text-align: center;
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1.5rem;
  font-style: italic;
}

.hero--donate {
  background-image: url('../images/DONATE.png');
  padding: 0;
}

@media (min-width: 1024px) {
  .hero--donate {
    padding: 0 4rem;
  }
}

.hero--donate .hero__nav {
  padding: 1.5rem 1rem;
}

@media (min-width: 1024px) {
  .hero--donate .hero__nav {
    padding: 1.5rem 0;
  }
}

.hero--sponsor {
  background-image: url('../images/SPONSOR.png');
  padding: 0;
}

@media (min-width: 1024px) {
  .hero--sponsor {
    padding: 0 4rem;
  }
}

.hero--sponsor .hero__nav {
  padding: 1.5rem 1rem;
}

@media (min-width: 1024px) {
  .hero--sponsor .hero__nav {
    padding: 1.5rem 0;
  }
}

.hero__date {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font-size-body-sm);
  margin-top: 0.5rem;
}

/* ==========================================================================
   24. COUNTDOWN TIMER
   ========================================================================== */

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  background-color: transparent;
  margin-top: 2rem;
}

.countdown__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1.5rem;
  position: relative;
}

@media (min-width: 1024px) {
  .countdown__item {
    padding: 2rem 2.5rem;
  }
}

/* Verticale scheidingslijnen tussen items */
.countdown__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background-color: #fff;
}

.countdown__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  color: #fff;
}

.countdown__label {
  font-family: var(--font-heading);
  font-size: var(--font-size-body-sm);
  font-weight: var(--font-weight-medium);
  color: #fff;
  margin-top: 0.5rem;
}

/* ==========================================================================
   25. PRICING SECTION
   ========================================================================== */

.pricing {
  padding: 5rem 1rem;
  background-color: #fff;
}

@media (min-width: 1024px) {
  .pricing {
    padding: 7rem 4rem;
  }
}

.pricing__container {
  max-width: 1312px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.pricing__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  max-width: 768px;
  margin: 0 auto;
}

.pricing__tagline {
  font-family: var(--font-heading);
  font-size: var(--font-size-body-sm);
  font-weight: var(--font-weight-black);
  text-transform: uppercase;
  letter-spacing: 0.02rem;
}

.pricing__header h2 {
}


.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pricing__card {
  border: 1px solid #000;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pricing__card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.pricing__card-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
}

.pricing__card-prices {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.pricing__card-price {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 5rem);
  font-weight: var(--font-weight-bold);
  line-height: 1;
}

.pricing__card-price-idr {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: var(--font-weight-regular);
  color: #666;
  line-height: 1;
}

.pricing__features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.pricing__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: var(--font-size-body);
}

.pricing__features svg {
  flex-shrink: 0;
}

.pricing__btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

/* Pricing Header - Left Aligned Variant */
.pricing__header--left {
  align-items: flex-start;
  text-align: left;
  margin: 0;
}

.pricing__header--left p {
  text-transform: none;
  letter-spacing: normal;
}

/* Pricing Grid - 3 Columns */
@media (min-width: 1024px) {
  .pricing__grid--three {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Pricing Grid - 4 Columns */
@media (min-width: 768px) {
  .pricing__grid--four {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .pricing__grid--four {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Donation Slider */
.pricing__slider {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.pricing__slider-input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}

.pricing__slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: #000;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.pricing__slider-input::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.pricing__slider-input::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: #000;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.pricing__slider-input::-moz-range-thumb:hover {
  transform: scale(1.1);
}

.pricing__slider-labels {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: var(--font-size-body-sm);
  color: #666;
}

/* Price Subtitle */
.pricing__card-subtitle {
  font-family: var(--font-body);
  font-size: var(--font-size-body-sm);
  font-weight: var(--font-weight-regular);
  color: #666;
  text-transform: uppercase;
}

/* Price Description */
.pricing__card-description {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-regular);
  color: #333;
  line-height: 1.6;
  flex: 1;
}

/* ==========================================================================
   26. SCHEDULE SECTION
   ========================================================================== */

.schedule {
  padding: 5rem 1rem;
  background-color: #fff;
}

@media (min-width: 1024px) {
  .schedule {
    padding: 7rem 4rem;
  }
}

.schedule__container {
  max-width: 1312px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.schedule__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  max-width: 768px;
  margin: 0 auto;
}

.schedule__tagline {
  font-family: var(--font-heading);
  font-size: var(--font-size-body-sm);
  font-weight: var(--font-weight-black);
  text-transform: uppercase;
  letter-spacing: 0.02rem;
}

.schedule__header h2 {
}

/* Schedule List */
.schedule__list {
  border-top: 1px solid #000;
}

.schedule__item {
  border-bottom: 1px solid #000;
}

/* Schedule Row */
.schedule__row {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.5rem 1rem;
  padding: 1.5rem 0;
  align-items: center;
}

@media (min-width: 1024px) {
  .schedule__row {
    grid-template-columns: 100px 1fr 150px 150px auto;
    grid-template-rows: 1fr;
    gap: 2rem;
    padding: 1.5rem 0;
  }
}

.schedule__time {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  color: #000;
  grid-column: 1;
  grid-row: 1;
}

@media (min-width: 1024px) {
  .schedule__time {
    grid-column: auto;
    grid-row: auto;
  }
}

.schedule__info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  grid-column: 1 / -1;
  grid-row: 2;
}

@media (min-width: 768px) {
  .schedule__info {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .schedule__info {
    grid-column: auto;
    grid-row: auto;
  }
}

.schedule__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-medium);
}

.schedule__tags {
  display: flex;
  gap: 0.5rem;
}

.schedule__tag {
  font-family: var(--font-body);
  font-size: var(--font-size-body-xs);
  padding: 0.25rem 0.5rem;
  background-color: #f5f5f5;
  border: 1px solid #e5e5e5;
}

.schedule__speaker,
.schedule__location {
  display: none;
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  color: #000;
}

@media (min-width: 1024px) {
  .schedule__speaker,
  .schedule__location {
    display: block;
  }
}

/* Toggle Button */
.schedule__toggle {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid #000;
  color: #000;
  cursor: pointer;
  padding: 0.75rem;
  transition: background-color 0.2s;
  width: 48px;
  height: 48px;
}

@media (min-width: 1024px) {
  .schedule__toggle {
    grid-column: auto;
    grid-row: auto;
    width: 140px;
    height: auto;
    padding: 0.75rem 1rem;
    justify-content: center;
  }
}

.schedule__toggle:hover {
  background-color: #f5f5f5;
}

.schedule__toggle-text {
  display: none;
  font-family: var(--font-body);
  font-size: var(--font-size-body);
}

@media (min-width: 1024px) {
  .schedule__toggle-text {
    display: block;
  }

  .schedule__toggle-arrow {
    display: none;
  }
}

.schedule__toggle-arrow {
  transition: transform 0.3s;
}

.schedule__item.is-open .schedule__toggle-arrow {
  transform: rotate(180deg);
}

/* Details Content */
.schedule__details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}

.schedule__details p {
  padding: 0 0 1.5rem 0;
}

@media (min-width: 1024px) {
  .schedule__details p {
    padding: 0 0 1.5rem 100px;
    margin-left: 2rem;
  }
}

.schedule__item.is-open .schedule__details {
  max-height: 200px;
  opacity: 1;
}

/* ==========================================================================
   27. TESTIMONIALS SECTION
   ========================================================================== */

.testimonials {
  padding: 5rem 1rem;
  background-color: #fff;
}

@media (min-width: 1024px) {
  .testimonials {
    padding: 7rem 4rem;
  }
}

.testimonials__container {
  max-width: 1312px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.testimonials__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  max-width: 768px;
  margin: 0 auto;
}

.testimonials__header h2 {
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Testimonial Card */
.testimonial {
  position: relative;
  background-image: url('../images/template.png');
  background-size: cover;
  background-position: center;
  min-height: 400px;
}

.testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.testimonial__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: 400px;
  padding: 2rem;
  color: #fff;
}

.testimonial__quote {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body);
  margin: 0;
  margin-bottom: 1.5rem;
}

.testimonial__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial__name {
  font-family: var(--font-heading);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-medium);
}

.testimonial__position {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-regular);
}

.testimonial__stars {
  display: flex;
  gap: 0.25rem;
  color: #fff;
}

.testimonial__stars svg {
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   28. DONATE SECTION
   ========================================================================== */

.donate {
  padding: 5rem 1rem;
  background-color: #fff;
}

@media (min-width: 1024px) {
  .donate {
    padding: 7rem 4rem;
  }
}

.donate__container {
  max-width: 1312px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.donate__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  max-width: 768px;
  margin: 0 auto;
}

.donate__header h2 {
}

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

.donate__subtitle {
  font-size: var(--font-size-body-sm);
  font-style: italic;
  color: #666;
  max-width: 500px;
}

.donate__tagline {
  font-family: var(--font-heading);
  font-size: var(--font-size-body-sm);
  font-weight: var(--font-weight-black);
  text-transform: uppercase;
  letter-spacing: 0.02rem;
}

/* ==========================================================================
   29. PHOTO COLLAGE
   ========================================================================== */

.collage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  padding: 2rem 0;
}

@media (min-width: 1024px) {
  .collage {
    min-height: 500px;
  }
}

.collage__item {
  position: absolute;
  overflow: hidden;
}

.collage__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Center image - largest/main */
.collage__item--center {
  position: relative;
  width: 60%;
  max-width: 400px;
  aspect-ratio: 3 / 4;
  z-index: 2;
}

@media (min-width: 1024px) {
  .collage__item--center {
    max-width: 500px;
  }
}

/* Left image - overlaps left-bottom of center */
.collage__item--left {
  width: 40%;
  max-width: 280px;
  aspect-ratio: 4 / 3;
  z-index: 3;
  left: 5%;
  bottom: 0;
}

@media (min-width: 1024px) {
  .collage__item--left {
    max-width: 350px;
    left: 10%;
  }
}

/* Right image - overlaps right-middle of center */
.collage__item--right {
  width: 40%;
  max-width: 280px;
  aspect-ratio: 4 / 3;
  z-index: 3;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}

@media (min-width: 1024px) {
  .collage__item--right {
    max-width: 350px;
    right: 10%;
  }
}

/* Collage Animations */
.collage__item {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.collage__item--center {
  transform: scale(0.95);
}

.collage__item--left {
  transform: translateX(50px);
}

.collage__item--right {
  transform: translateX(-50px) translateY(-50%);
}

/* Animated state */
.collage.is-visible .collage__item--center {
  opacity: 1;
  transform: scale(1);
}

.collage.is-visible .collage__item--left {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.5s;
}

.collage.is-visible .collage__item--right {
  opacity: 1;
  transform: translateX(0) translateY(-50%);
  transition-delay: 0.5s;
}

/* ==========================================================================
   30. TEAM SECTION
   ========================================================================== */

.team {
  padding: 5rem 1rem;
  background-color: #fff;
}

@media (min-width: 1024px) {
  .team {
    padding: 7rem 4rem;
  }
}

.team__container {
  max-width: 1312px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.team__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  max-width: 768px;
  margin: 0 auto;
}

.team__tagline {
  font-family: var(--font-heading);
  font-size: var(--font-size-body-sm);
  font-weight: var(--font-weight-black);
  text-transform: uppercase;
  letter-spacing: 0.02rem;
}

.team__header h2 {
}

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

@media (min-width: 768px) {
  .team__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team__member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.team__image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #e5e5e5;
}

.team__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.team__name {
  font-family: var(--font-heading);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-medium);
}

.team__title {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-regular);
}

.team__bio {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-regular);
  color: #666;
}

/* ==========================================================================
   31. FAQ SECTION
   ========================================================================== */

.faq {
  padding: 5rem 1rem;
  background-color: #fff;
}

@media (min-width: 1024px) {
  .faq {
    padding: 7rem 4rem;
  }
}

.faq__container {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.faq__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.faq__header h2 {
}

/* FAQ List */
.faq__list {
  border-top: 1px solid #000;
}

.faq__item {
  border-bottom: 1px solid #000;
}

.faq__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
}

.faq__question {
  font-family: var(--font-heading);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-medium);
  text-align: left;
}

.faq__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid #000;
  cursor: pointer;
  padding: 0.75rem;
  transition: background-color 0.2s;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.faq__toggle:hover {
  background-color: #f5f5f5;
}

.faq__toggle-arrow {
  transition: transform 0.3s ease;
}

.faq__item.is-open .faq__toggle-arrow {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__answer p {
  padding-bottom: 1.5rem;
}

.faq__item.is-open .faq__answer {
  max-height: 500px;
}

/* ==========================================================================
   Sponsorship Section
   ========================================================================== */

.sponsorship {
  padding: 5rem 1.5rem;
}

.sponsorship__header {
  max-width: 768px;
  margin: 0 auto 4rem;
  text-align: center;
}

.sponsorship__header h2 {
  margin-bottom: 1rem;
}

.sponsorship__table-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.sponsorship__table-wrapper::-webkit-scrollbar {
  display: none;
}

.sponsorship__table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

.sponsorship__table thead th {
  padding: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
}

.sponsorship__table thead th:first-child {
  text-align: left;
}

.sponsorship__table tbody td {
  padding: 1.25rem 1rem;
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
  font-family: var(--font-body);
  font-size: 1rem;
}

.sponsorship__feature-header,
.sponsorship__feature {
  text-align: left !important;
  font-weight: 400;
}

.sponsorship__feature-header {
  font-weight: 700 !important;
}

.sponsorship__check {
  color: #000;
}

.sponsorship__pricing {
  border-top: 2px solid #000;
}

.sponsorship__pricing-label {
  font-weight: 700 !important;
}

.sponsorship__pricing-row td {
  font-size: 0.875rem;
  white-space: nowrap;
}

.sponsorship__conversion {
  font-size: 0.75rem;
  color: #666;
}

.sponsorship__note {
  max-width: 768px;
  margin: 2rem auto 0;
  text-align: center;
  font-style: italic;
}

@media (min-width: 1024px) {
  .sponsorship {
    padding: 7rem 2rem;
  }

  .sponsorship__note {
    margin-top: 3rem;
  }
}

/* ==========================================================================
   Why Sponsor Section (Sponsor Page)
   ========================================================================== */

.why-sponsor {
  padding: 5rem 1rem;
  background-color: #fff;
}

@media (min-width: 1024px) {
  .why-sponsor {
    padding: 7rem 4rem;
  }
}

.why-sponsor__container {
  max-width: 1312px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .why-sponsor__container {
    flex-direction: row;
    align-items: stretch;
    gap: 5rem;
  }
}

/* Content kant (links) */
.why-sponsor__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .why-sponsor__content {
    flex: 1;
    justify-content: center;
  }
}

.why-sponsor__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-sponsor__tagline {
  font-family: var(--font-heading);
  font-size: var(--font-size-body-sm);
  font-weight: var(--font-weight-black);
  text-transform: uppercase;
  letter-spacing: 0.02rem;
}

.why-sponsor__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Lijst met items */
.why-sponsor__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0.5rem 0;
}

.why-sponsor__list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.why-sponsor__list-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

/* Acties */
.why-sponsor__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

/* Afbeelding kant (rechts) */
.why-sponsor__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .why-sponsor__image {
    flex: 1;
    aspect-ratio: auto;
    min-height: 640px;
  }
}

.why-sponsor__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   Content Section (Sponsor Page)
   ========================================================================== */

.content-section {
  padding: 4rem 1.5rem;
}

.content-section--alt {
  background-color: #f5f5f5;
}

.content-section__container {
  max-width: 800px;
  margin: 0 auto;
}

.content-section__header {
  text-align: center;
  margin-bottom: 2rem;
}

.content-section__tagline {
  display: block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.content-section__header h1,
.content-section__header h2 {
  margin-bottom: 0.5rem;
}

.content-section__body {
  text-align: center;
}

.content-section__body p {
  margin-bottom: 1rem;
}

.content-section__body p:last-child {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .content-section {
    padding: 6rem 2rem;
  }
}

/* ==========================================================================
   Sponsor Form Section
   ========================================================================== */

.sponsor-form {
  padding: 0;
  background: #fff;
}

.sponsor-form__container {
  max-width: none;
  margin: 0;
}

@media (min-width: 1024px) {
  .sponsor-form {
    padding: 6rem 2rem;
    background-image: url('../images/hero-compact.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .sponsor-form__container {
    max-width: 768px;
    margin: 0 auto;
  }

  .sponsor-form__card {
    padding: 4rem;
    border: 1px solid #000;
  }
}

.sponsor-form__card {
  background: #fff;
  border: none;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 3rem 1.5rem;
  text-align: center;
}

.sponsor-form__card h2 {
  margin-bottom: 0.5rem;
}

.sponsor-form__card > p {
  margin-bottom: 2rem;
}

.sponsor-form__form {
  text-align: left;
}

.sponsor-form__group {
  margin-bottom: 1.5rem;
}

.sponsor-form__group label {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.sponsor-form__group input,
.sponsor-form__group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid #000;
  background: #fff;
  resize: vertical;
}

.sponsor-form__group input:focus,
.sponsor-form__group textarea:focus {
  outline: none;
  border-color: #000;
  box-shadow: 0 0 0 1px #000;
}

.sponsor-form__group textarea {
  min-height: 150px;
}

.sponsor-form__checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.sponsor-form__checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 1px solid #000;
  cursor: pointer;
}

.sponsor-form__checkbox label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  cursor: pointer;
}

.sponsor-form__checkbox a {
  color: #000;
  text-decoration: underline;
}

.sponsor-form__form .btn {
  display: block;
  margin: 0 auto;
}

.sponsor-form__form .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.sponsor-form__message {
  text-align: center;
  padding: 0;
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  min-height: 1.25rem;
}

.sponsor-form__message--success {
  color: #16a34a;
}

.sponsor-form__message--error {
  color: #dc2626;
}

/* ==========================================================================
   32. HERO COMPACT VARIANT
   ========================================================================== */

.hero--compact {
  height: auto;
  min-height: auto;
  max-height: none;
  padding-bottom: 5rem;
  background-image: url('../images/hero-compact.jpg');
}

@media (min-width: 1024px) {
  .hero--compact {
    padding-bottom: 7rem;
  }
}

.hero--compact .hero__content {
  padding-top: 3rem;
  align-items: flex-start;
  text-align: left;
}

@media (min-width: 1024px) {
  .hero--compact .hero__content {
    padding-top: 5rem;
  }
}

.hero--compact h1 {
  color: #fff;
  text-transform: uppercase;
}

.hero__meta {
  font-family: var(--font-body);
  font-size: var(--font-size-body-sm);
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1rem;
}

/* ==========================================================================
   33. LEGAL PAGES (Privacy, Terms)
   ========================================================================== */

.legal {
  padding: 4rem 1rem;
  background-color: #fff;
  overflow: visible;
}

@media (min-width: 1024px) {
  .legal {
    padding: 6rem 4rem;
  }
}

.legal__container {
  max-width: 1312px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  overflow: visible;
}

@media (min-width: 1024px) {
  .legal__container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: start;
  }
}

/* Table of Contents */
.legal__toc {
  background-color: #f9f9f9;
  padding: 1.5rem;
  border: 1px solid #e5e5e5;
}

@media (min-width: 1024px) {
  .legal__toc {
    position: sticky;
    top: 2rem;
    padding: 2rem;
  }
}

.legal__toc-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e5e5;
}

.legal__toc-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legal__toc-list a {
  font-family: var(--font-body);
  font-size: var(--font-size-body-sm);
  color: #666;
  transition: color 0.2s, font-weight 0.2s;
  display: block;
}

.legal__toc-list a:hover {
  color: #000;
}

.legal__toc-list a.is-active {
  color: #000;
  font-weight: var(--font-weight-medium);
}

/* Legal Content */
.legal__content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.legal__section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal__section h2 {
  font-size: var(--font-size-h4);
  line-height: var(--line-height-h4);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e5e5e5;
}

.legal__section h3 {
  font-size: var(--font-size-h6);
  line-height: var(--line-height-h6);
  margin-top: 1rem;
}

.legal__section p {
  line-height: var(--line-height-body-extended);
  color: #333;
}

.legal__section ul,
.legal__section ol {
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal__section ul {
  list-style: disc;
}

.legal__section ol {
  list-style: decimal;
}

.legal__section li {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  line-height: var(--line-height-body-extended);
  color: #333;
}

.legal__section a {
  color: #000;
  text-decoration: underline;
  transition: opacity 0.2s;
}

.legal__section a:hover {
  opacity: 0.7;
}

/* Contact info block */
.legal__contact {
  background-color: #f9f9f9;
  padding: 1.5rem;
  border: 1px solid #e5e5e5;
  margin-top: 1rem;
}

.legal__contact p {
  margin: 0;
}

.legal__contact p + p {
  margin-top: 0.5rem;
}

/* ==========================================================================
   34. HERITAGE TIMELINE SECTION
   ========================================================================== */

.heritage-timeline {
  background-color: #171719;
  color: #fff;
  overflow: hidden;
}

/* Titel */
.heritage-timeline__title {
  padding: 3rem 1rem;
}

@media (min-width: 1024px) {
  .heritage-timeline__title {
    padding: 4rem;
  }
}

.heritage-timeline__title h2 {
  color: #fff;
}

/* ==========================================================================
   34.1 HERITAGE TIMELINE SLIDE
   ========================================================================== */

.heritage-timeline__slide {
  position: relative;
  height: 33.5rem;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .heritage-timeline__slide {
    height: 54.5rem;
    padding: 0 4rem;
  }
}

/* Slide content (jaar + info) */
.heritage-timeline__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  position: relative;
  z-index: 5;
}

@media (min-width: 1024px) {
  .heritage-timeline__content {
    flex-direction: row;
    align-items: center;
  }
}

/* Jaar - groot display */
.heritage-timeline__year {
  font-family: var(--font-display);
  font-size: 6.75rem;
  line-height: 6.75rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  color: #fff;
}

@media (min-width: 1024px) {
  .heritage-timeline__year {
    font-size: var(--font-size-display-1);
    line-height: var(--line-height-display-1);
    flex: 1;
  }
}

/* Info tekst */
.heritage-timeline__info {
  max-width: 400px;
  color: #fff;
}

@media (min-width: 1024px) {
  .heritage-timeline__info {
    flex: 1;
  }
}

.heritage-timeline__info h3 {
  color: #fff;
  margin-bottom: 1rem;
}

.heritage-timeline__info p {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: #fff;
}

@media (min-width: 1024px) {
  .heritage-timeline__info p {
    font-size: var(--font-size-body-lg);
    line-height: var(--line-height-body-extended);
  }
}

/* ==========================================================================
   34.2 HERITAGE TIMELINE IMAGES
   ========================================================================== */

.heritage-timeline__images {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.heritage-timeline__image {
  position: absolute;
  overflow: hidden;
}

.heritage-timeline__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Image wrapper voor animatie */
.heritage-timeline__image-space {
  height: 100%;
  overflow: hidden;
}

.heritage-timeline__image-container {
  height: 100%;
  transform: translateY(-100%);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.heritage-timeline__image-container img {
  transform: translateY(100%);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Zichtbare staat (na scroll animatie) */
.heritage-timeline__image.is-visible .heritage-timeline__image-container {
  transform: translateY(0);
}

.heritage-timeline__image.is-visible .heritage-timeline__image-container img {
  transform: translateY(0);
}

/* ==========================================================================
   34.2.1 FOCUS MODE - Afbeelding vervaagt bij tekst focus
   ========================================================================== */

/* Basis: afbeelding container krijgt blur en opacity transition */
.heritage-timeline__images {
  transition: opacity 0.5s ease, filter 0.5s ease;
}

/* Mobiel: Start met lage opacity en blur wanneer tekst in focus */
.heritage-timeline__slide.is-text-focus .heritage-timeline__images {
  opacity: 0.2;
  filter: blur(4px);
}

/* Wanneer tekst uit focus: afbeelding wordt zichtbaar */
.heritage-timeline__slide.is-image-focus .heritage-timeline__images {
  opacity: 1;
  filter: blur(0);
}

/* Desktop: subtielere effecten */
@media (min-width: 1024px) {
  .heritage-timeline__slide.is-text-focus .heritage-timeline__images {
    opacity: 0.35;
    filter: blur(2px);
  }
}

/* ==========================================================================
   34.3 IMAGE POSITIES - MOBILE (1 afbeelding)
   ========================================================================== */

.heritage-timeline__image.heritage-timeline__image--1.heritage-timeline__image--single {
  top: 1rem;
  left: 2rem;
  width: 20.5rem;
  height: 30rem;
  z-index: 4;
}

/* Image posities - Mobile (2 afbeeldingen) */
.heritage-timeline__image.heritage-timeline__image--1.heritage-timeline__image--double {
  top: 1rem;
  left: 2rem;
  width: 14.6875rem;
  height: 21.75rem;
  z-index: 4;
}

.heritage-timeline__image.heritage-timeline__image--2.heritage-timeline__image--double {
  right: 1rem;
  bottom: 2.5rem;
  width: 16.5625rem;
  height: 20.5rem;
  z-index: 3;
}

/* Image posities - Mobile (3 afbeeldingen) */
.heritage-timeline__image.heritage-timeline__image--1.heritage-timeline__image--triple {
  top: 3rem;
  left: 2rem;
  width: 12.6875rem;
  height: 15.5rem;
  z-index: 4;
}

.heritage-timeline__image.heritage-timeline__image--2.heritage-timeline__image--triple {
  right: 3rem;
  bottom: 2.5rem;
  width: 16.5625rem;
  height: 14rem;
  z-index: 3;
}

.heritage-timeline__image.heritage-timeline__image--3.heritage-timeline__image--triple {
  top: 1rem;
  right: 1rem;
  width: 9.75rem;
  height: 14rem;
  z-index: 2;
}

/* ==========================================================================
   34.4 IMAGE POSITIES - DESKTOP
   ========================================================================== */

@media (min-width: 1024px) {
  .heritage-timeline__image.heritage-timeline__image--1.heritage-timeline__image--single {
    top: 6rem;
    left: 12rem;
    width: 64rem;
    height: 42.5rem;
  }

  .heritage-timeline__image.heritage-timeline__image--1.heritage-timeline__image--double {
    top: 6rem;
    left: 20rem;
    width: 28rem;
    height: 36.25rem;
  }

  .heritage-timeline__image.heritage-timeline__image--2.heritage-timeline__image--double {
    right: 12rem;
    bottom: 6rem;
    width: 32rem;
    height: 31rem;
  }

  .heritage-timeline__image.heritage-timeline__image--1.heritage-timeline__image--triple {
    top: 6rem;
    left: 12rem;
    width: 28rem;
    height: 34.1875rem;
  }

  .heritage-timeline__image.heritage-timeline__image--2.heritage-timeline__image--triple {
    right: 20rem;
    bottom: 6rem;
    width: 40rem;
    height: 29.4375rem;
  }

  .heritage-timeline__image.heritage-timeline__image--3.heritage-timeline__image--triple {
    top: 6rem;
    right: 8rem;
    width: 24rem;
    height: 34.4375rem;
  }
}

/* Footer spacing */
.heritage-timeline__footer {
  height: 6rem;
}

@media (min-width: 1024px) {
  .heritage-timeline__footer {
    height: 8rem;
  }
}
