/*
Theme Name: Spelsint
Theme URI: https://spelsint.nl/
Author: Speltherapie praktijk Sint-Oedenrode
Author URI: https://spelsint.nl/
Description: Een warm, speels en toegankelijk WordPress-thema voor Speltherapie praktijk Sint-Oedenrode. Bevat een hero met foto-marquee, custom post types voor therapeuten en werkwijze-stappen, een "Bel mij terug"-modal en een volledig responsive ontwerp.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: spelsint
Tags: education, blog, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, full-width-template
*/

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

:root {
  --blue: #0082CA;
  --blue-light: #e8f4fb;
  --blue-dark: #005f94;
  --green: #009944;
  --green-light: #e6f5ed;
  --warm-white: #fafaf8;
  --text: #2c2c2c;
  --text-light: #6b6b6b;
}

body {
  font-family: "Georgia", "Times New Roman", serif;
  min-height: 100vh;
  background: var(--warm-white);
  color: var(--text);
}

/* ─── Accessibility helpers ─── */

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  position: absolute !important;
  word-wrap: normal !important;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  clip: auto;
  clip-path: none;
  background: white;
  color: var(--blue);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-family: system-ui, -apple-system, sans-serif;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* ─── Header ─── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: white;
  border-bottom: 1px solid #eee;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.header-logo-icon {
  height: 66px;
  width: auto;
}

.header-logo-text {
  height: 66px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
  padding: 0.25rem 0;
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--blue);
}

.nav-link:nth-child(even):hover {
  color: var(--green);
}

.nav-link:nth-child(even)::after {
  background: var(--green);
}

.nav-link:hover::after,
.nav-link--active::after {
  width: 100%;
}

.nav-link--active {
  color: var(--blue);
}

.nav-link:nth-child(even).nav-link--active {
  color: var(--green);
}

.header-aanmelden {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  background: var(--blue);
  border: none;
  border-radius: 50px;
  padding: 0.55rem 1.25rem;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.header-aanmelden:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 130, 202, 0.35);
}

/* ─── Hero ─── */

.hero {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  min-height: 75vh;
}

.hero-logo {
  flex: 0 0 auto;
  animation: floatIn 1s ease-out both;
  filter: drop-shadow(0 16px 60px rgba(0, 130, 202, 0.25))
         drop-shadow(0 6px 24px rgba(0, 153, 68, 0.12));
}

.hero-logo img {
  width: min(820px, 60vw);
  height: auto;
  margin: -4rem 0 -4rem -8rem;
}

.hero-quote {
  flex: 0 1 500px;
  animation: fadeIn 1.2s ease-out 0.3s both;
}

.hero-quote blockquote {
  border: none;
  padding: 0;
}

.hero-quote blockquote p {
  font-size: 2rem;
  line-height: 1.6;
  color: var(--text);
  font-style: italic;
  font-weight: 400;
}

.hero-quote blockquote footer {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: var(--green);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ─── Photos Section ─── */

.photos-section {
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--green-light) 40%, var(--blue-light) 100%);
  padding: 1rem 0 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow-x: clip;
}

.marquee {
  width: 100%;
  overflow: visible;
  padding: 4rem 0;
  margin: -2.5rem 0;
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
}

.marquee--left .marquee-track {
  animation: scrollLeft 60s linear infinite;
}

.marquee--right .marquee-track {
  animation: scrollRight 60s linear infinite;
}

.marquee-track img {
  height: 220px;
  width: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
  flex-shrink: 0;
}

.marquee-track img:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 130, 202, 0.25),
              0 6px 16px rgba(0, 0, 0, 0.1);
  z-index: 10;
  position: relative;
}

.marquee-track img:nth-child(even):hover {
  box-shadow: 0 12px 32px rgba(0, 153, 68, 0.2),
              0 4px 12px rgba(0, 0, 0, 0.08);
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ─── Callback Modal ─── */

.callback-title {
  font-size: 1.6rem;
  color: var(--blue);
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-align: center;
}

.callback-subtitle {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  text-align: center;
}

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

.form-group {
  flex: 1;
  text-align: left;
}

.form-group label {
  display: block;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.form-group input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background: var(--warm-white);
  color: var(--text);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input::placeholder {
  color: #b0b0b0;
}

.form-group input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 130, 202, 0.12);
}

.callback-btn {
  padding: 0.75rem 1.5rem;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  background: var(--green);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.callback-btn:hover {
  background: #00803a;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 153, 68, 0.3);
}

.callback-btn:active {
  transform: translateY(0);
}

.callback-btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.callback-success p,
.callback-error p {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  color: var(--green);
  font-weight: 600;
  padding: 1.25rem;
  background: var(--green-light);
  border-radius: 8px;
  text-align: center;
}

.callback-error p {
  color: #b00020;
  background: #fdecef;
}

.modal-trigger {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  background: var(--green);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 153, 68, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.modal-trigger:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 153, 68, 0.45);
  background: #00803a;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.open {
  visibility: visible;
  opacity: 1;
}

.modal-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 420px;
  width: 90%;
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
}

.modal-overlay.open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--text);
}

/* ─── Footer ─── */

.site-footer {
  background: white;
  border-top: 1px solid #eee;
  padding: 2.5rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.footer-logo {
  height: 48px;
  width: auto;
  opacity: 0.6;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-link {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  color: var(--blue);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--blue-dark);
  text-decoration: underline;
}

.footer-copy {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

/* ─── Page Intro ─── */

.page-intro {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  text-align: center;
  animation: fadeIn 0.8s ease-out both;
}

.page-title {
  font-size: 2.8rem;
  color: var(--blue);
  margin-bottom: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.page-subtitle {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-light);
}

/* ─── Therapist Cards ─── */

.therapists {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 2rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.therapist-card {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease;
  animation: fadeIn 0.8s ease-out both;
}

.therapist-card:nth-child(1) { animation-delay: 0.1s; }
.therapist-card:nth-child(2) { animation-delay: 0.3s; }
.therapist-card:nth-child(3) { animation-delay: 0.5s; }

.therapist-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.therapist-card:nth-child(even) {
  flex-direction: row-reverse;
}

.therapist-card--blue {
  border-top: 4px solid var(--blue);
}

.therapist-card--green {
  border-top: 4px solid var(--green);
}

.therapist-image {
  flex: 0 0 260px;
}

.therapist-image img {
  width: 260px;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.therapist-card--blue .therapist-image img {
  box-shadow: 0 8px 24px rgba(0, 130, 202, 0.2);
}

.therapist-card--green .therapist-image img {
  box-shadow: 0 8px 24px rgba(0, 153, 68, 0.2);
}

.therapist-content {
  flex: 1;
}

.therapist-name {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--text);
}

.therapist-card--blue .therapist-name {
  color: var(--blue-dark);
}

.therapist-card--green .therapist-name {
  color: #006b2d;
}

.therapist-quote {
  margin-bottom: 1.25rem;
  padding-left: 1.25rem;
  border-left: 3px solid #ddd;
}

.therapist-card--blue .therapist-quote {
  border-left-color: var(--blue);
}

.therapist-card--green .therapist-quote {
  border-left-color: var(--green);
}

.therapist-quote p {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
}

.therapist-description,
.therapist-description p {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-light);
}

.therapist-description p + p {
  margin-top: 1rem;
}

/* ─── Detail Content ─── */

.detail-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
  animation: fadeIn 0.8s ease-out 0.2s both;
}

.detail-subtitle,
.detail-content h2 {
  font-size: 1.5rem;
  color: var(--blue);
  margin: 2.5rem 0 1rem;
  font-weight: 700;
}

.detail-subtitle:first-child,
.detail-content > h2:first-child {
  margin-top: 0;
}

.detail-content h3 {
  font-size: 1.2rem;
  color: var(--blue-dark);
  margin: 2rem 0 0.75rem;
  font-weight: 700;
}

.detail-content p,
.detail-content li {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.detail-content ul,
.detail-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.detail-content a {
  color: var(--blue);
}

.detail-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* ─── Workflow Section ─── */

.workflow-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
  animation: fadeIn 0.8s ease-out 0.3s both;
}

.workflow-title {
  font-size: 1.5rem;
  color: var(--green);
  margin: 2.5rem 0 2rem;
  font-weight: 700;
}

.workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.workflow-step {
  display: flex;
  gap: 1.5rem;
  position: relative;
}

.workflow-step:not(:last-child) .workflow-line {
  position: absolute;
  left: 1.1rem;
  top: 2.5rem;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), var(--green));
  opacity: 0.25;
}

.workflow-step-marker {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.workflow-step-number {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.workflow-step:nth-child(even) .workflow-step-number {
  background: var(--green);
}

.workflow-step-body {
  padding-bottom: 2rem;
  flex: 1;
}

.workflow-step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.workflow-step-body p {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-light);
}

/* ─── Posts / Blog ─── */

.post-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.post-card {
  background: white;
  border-radius: 16px;
  padding: 2rem 2.25rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border-top: 4px solid var(--blue);
  animation: fadeIn 0.8s ease-out both;
}

.post-card:nth-child(even) {
  border-top-color: var(--green);
}

.post-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.post-card-title a {
  color: var(--blue);
  text-decoration: none;
}

.post-card-title a:hover {
  text-decoration: underline;
}

.post-meta {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.post-card-excerpt {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
}

.read-more {
  display: inline-block;
  margin-top: 1rem;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

.pagination {
  max-width: 800px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
  text-align: center;
  font-family: system-ui, -apple-system, sans-serif;
}

.pagination .page-numbers {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  margin: 0 0.2rem;
  border-radius: 8px;
  color: var(--blue);
  text-decoration: none;
}

.pagination .page-numbers.current {
  background: var(--blue);
  color: white;
}

/* ─── Comments ─── */

.comments-area {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
  font-family: system-ui, -apple-system, sans-serif;
}

.comments-area .comment-list {
  list-style: none;
  padding: 0;
}

.comments-area .comment-body {
  padding: 1.25rem 0;
  border-bottom: 1px solid #eee;
}

/* ─── Animations ─── */

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateX(-40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Hamburger / Mobile Nav ─── */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 1.75rem;
  height: 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-toggle.open .nav-toggle-bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav-toggle.open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ─── WordPress admin bar offset for sticky header ─── */

body.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

/* ─── Responsive ─── */

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 2rem 1rem;
    min-height: auto;
  }

  .hero-logo img {
    width: min(480px, 85vw);
    margin: -1rem 0;
  }

  .hero-quote blockquote p {
    font-size: 1.5rem;
    text-align: center;
  }

  .hero-quote blockquote footer {
    text-align: center;
  }

  .marquee-track img {
    height: 180px;
  }

  .therapist-card,
  .therapist-card:nth-child(even) {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem;
  }

  .therapist-image {
    flex: 0 0 auto;
  }

  .therapist-image img {
    width: 200px;
    height: 240px;
  }

  .therapist-quote {
    border-left: none;
    padding-left: 0;
    border-top: 3px solid #ddd;
    border-bottom: 3px solid #ddd;
    padding: 1rem 0;
  }

  .therapist-card--blue .therapist-quote {
    border-top-color: var(--blue);
    border-bottom-color: var(--blue);
  }

  .therapist-card--green .therapist-quote {
    border-top-color: var(--green);
    border-bottom-color: var(--green);
  }

  .page-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .header-inner {
    position: relative;
    padding: 0.85rem 1.25rem 0.85rem 1.25rem;
    justify-content: space-between;
  }

  /* Icon: left */
  .header-logo {
    gap: 0;
    z-index: 1;
  }

  .header-logo-icon {
    height: 42px;
  }

  /* Text logo: centered absolutely */
  .header-logo-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 36px;
    pointer-events: none;
  }

  /* Hamburger: right with breathing room */
  .nav-toggle {
    display: flex;
    z-index: 1;
    margin-right: 0.25rem;
  }

  .header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: white;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.9rem;
    border-bottom: 1px solid #eee;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-6px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
    z-index: 99;
  }

  .header-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    font-size: 1rem;
  }

  .header-aanmelden {
    margin-top: 0.25rem;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 1.5rem 1.5rem 1rem;
  }

  .hero-logo img {
    width: min(340px, 90vw);
  }

  .hero-quote {
    flex: 0 1 auto;
  }

  .hero-quote blockquote p {
    font-size: 1.25rem;
  }

  .marquee-track img {
    height: 140px;
  }

  .photos-section {
    gap: 1rem;
    padding: 2rem 0 3rem;
  }

  .modal-trigger span {
    display: none;
  }

  .modal-trigger {
    padding: 1rem;
    border-radius: 50%;
  }
}
