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

:root {
  --red:    #e1143c;
  --red-dk: #b80e2f;
  --red-lt: #fde8ec;
  --navy:   #00124d;
  --navy-lt:#001a73;
  --white:  #ffffff;
  --light:  #f5f5f5;
  --border: #e0e0e0;
  --text:   #333333;
  --muted:  #666666;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Ubuntu', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

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

/* ── HEADER ── */
#Header {
  background: var(--white);
  border-bottom: 3px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,18,77,0.08);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 70px;
}

.header-nav-left { display: flex; align-items: center; }
.header-logo     { display: flex; justify-content: center; }
.header-right    { display: flex; justify-content: flex-end; align-items: center; gap: 0.75rem; }

.logo img { height: 44px; width: auto; display: block; }

/* Verhuur snelknop in header */
.header-verhuur {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  background: var(--red);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 4px;
  white-space: nowrap;
  transition: background 0.2s;
}
.header-verhuur:hover { background: var(--red-dk); }
.header-verhuur svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Desktop nav */
.desktop-nav ul { list-style: none; display: flex; gap: 0; }
.desktop-nav .dropdown { display: block; }
.desktop-nav .dropdown li { display: block; }
.desktop-nav > ul > li { position: relative; }

.desktop-nav > ul > li > a {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.3rem 0.75rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.desktop-nav > ul > li > a:hover,
.desktop-nav > ul > li > a.active { color: var(--red); border-bottom-color: var(--red); }

/* Dropdown */
.desktop-nav .dropdown {
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  background: var(--white);
  border: 0.5px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: 0 0 6px 6px;
  min-width: 220px;
  box-shadow: 0 6px 20px rgba(0,18,77,0.10);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s, transform 0.18s;
  z-index: 50;
}

.desktop-nav > ul > li:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }

.dropdown li a {
  display: block;
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  color: var(--text);
  border-bottom: 0.5px solid var(--border);
  transition: color 0.15s, background 0.15s;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { color: var(--red); background: var(--light); }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none; border: none;
  cursor: pointer; flex-direction: column;
  gap: 5px; padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

@media (max-width: 900px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .header-nav-left { display: none; }
  .header-logo { justify-content: flex-start; }
  .header-verhuur { display: none; }
  .nav-toggle { display: flex; }
}

/* ── DRAWER ── */
#nav-overlay {
  position: fixed; inset: 0;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 200; opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
#nav-overlay.open { opacity: 1; pointer-events: all; }

#mobile-drawer {
  position: fixed; top: 0; right: 0;
  height: 100%; width: min(75vw, 260px);
  background: var(--white);
  box-shadow: -4px 0 24px rgba(0,18,77,0.12);
  z-index: 210;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
}
#mobile-drawer.open { transform: translateX(0); }

.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.25rem; height: 60px;
  border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.drawer-header-title { font-size: 1rem; font-weight: 700; color: var(--navy); }

.drawer-close {
  background: none; border: none; cursor: pointer;
  padding: 4px; display: flex; color: var(--muted); transition: color 0.15s;
}
.drawer-close:hover { color: var(--navy); }
.drawer-close svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }

.drawer-nav { flex: 1; overflow-y: auto; padding: 0.5rem 0; }
.drawer-nav ul { list-style: none; }

.drawer-nav ul > li > a {
  display: block; padding: 0.9rem 1.5rem;
  font-size: 1rem; font-weight: 400; color: var(--navy);
  transition: color 0.15s, padding-left 0.15s;
}
.drawer-nav ul > li > a:hover { color: var(--red); padding-left: 1.85rem; }

.drawer-sub { padding: 0 0 0.5rem 0; }
.drawer-sub li a {
  display: block; padding: 0.55rem 1.5rem 0.55rem 2.25rem;
  font-size: 0.875rem; color: var(--muted);
  transition: color 0.15s;
}
.drawer-sub li a:hover { color: var(--red); }

.drawer-verhuur-btn {
  margin: 0.75rem 1.25rem 0.25rem;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem; background: var(--red); color: #fff;
  font-size: 0.9rem; font-weight: 500; border-radius: 4px;
  transition: background 0.2s;
}
.drawer-verhuur-btn:hover { background: var(--red-dk); }
.drawer-verhuur-btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── BACK TO TOP ── */
#back-to-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 48px; height: 48px;
  background: var(--navy); border: 2px solid var(--red);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  z-index: 190; box-shadow: 0 4px 16px rgba(0,18,77,0.25);
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { background: var(--red); }
#back-to-top svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--navy); color: var(--white);
  padding: 3rem 2rem; text-align: center;
}
.page-hero h1 { font-size: clamp(1.75rem,4vw,2.5rem); font-weight: 700; line-height: 1.15; }
.page-hero p { margin-top: 0.6rem; font-size: 1rem; opacity: 0.72; }

/* ── SECTIONS ── */
.section { padding: 3.5rem 2rem; }
.section--gray  { background: var(--light); }
.section--red   { background: var(--red);   color: var(--white); }
.section--navy  { background: var(--navy);  color: var(--white); }

.container        { max-width: 1100px; margin: 0 auto; }
.container--narrow { max-width: 780px;  margin: 0 auto; }

/* ── FANCY HEADING ── */
.fancy-heading { text-align: center; margin-bottom: 2.5rem; }

.fancy-heading .icon-wrap {
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; background: var(--red);
  border-radius: 50%; margin-bottom: 0.9rem;
}
.fancy-heading .icon-wrap svg { width: 26px; height: 26px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.fancy-heading h2 { font-size: 1.85rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; }

.section--red  .fancy-heading h2,
.section--navy .fancy-heading h2 { color: var(--white); }

.section--red  .fancy-heading .icon-wrap,
.section--navy .fancy-heading .icon-wrap { background: rgba(255,255,255,0.2); }

.fancy-heading p { font-size: 1rem; color: var(--muted); max-width: 560px; margin: 0 auto; }
.section--red  .fancy-heading p,
.section--navy .fancy-heading p { color: rgba(255,255,255,0.75); }

/* ── BUTTONS ── */
.btn-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1rem; }

.btn-main {
  display: flex; align-items: center; justify-content: center;
  gap: 0.6rem; padding: 0.95rem 1.25rem;
  background: var(--red); color: #fff;
  font-family: 'Ubuntu', sans-serif; font-size: 0.925rem; font-weight: 500;
  border-radius: 4px; text-align: center;
  transition: background 0.2s, transform 0.15s; line-height: 1.3;
}
.btn-main:hover { background: var(--red-dk); transform: translateY(-1px); }

.btn-main--outline {
  background: transparent; border: 2px solid var(--red); color: var(--red);
}
.btn-main--outline:hover { background: var(--red); color: #fff; }

.btn-main--navy { background: var(--navy); }
.btn-main--navy:hover { background: var(--navy-lt); }

.btn-main svg { flex-shrink: 0; width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── VERHUUR BANNER ── */
.verhuur-banner {
  background: var(--red);
  padding: 1.25rem 2rem;
}
.verhuur-banner .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.verhuur-banner-text {
  color: #fff;
  font-size: 1rem; font-weight: 500;
}
.verhuur-banner-text span { opacity: 0.85; font-weight: 400; font-size: 0.9rem; margin-left: 0.5rem; }
.verhuur-banner-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: #fff; color: var(--red);
  font-weight: 700; font-size: 0.9rem;
  border-radius: 4px; white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.verhuur-banner-btn:hover { background: var(--red-lt); transform: translateY(-1px); }
.verhuur-banner-btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ── NEWS CARDS ── */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }

.news-card {
  background: var(--white); border: 1px solid var(--border);
  border-top: 3px solid var(--red); border-radius: 4px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.news-card:hover { box-shadow: 0 6px 24px rgba(0,18,77,0.10); transform: translateY(-2px); }

.news-card-img { width: 100%; height: 180px; object-fit: cover; display: block; }
.news-card-img-placeholder {
  width: 100%; height: 180px; background: var(--red-lt);
  display: flex; align-items: center; justify-content: center;
}
.news-card-img-placeholder svg { width: 40px; height: 40px; fill: none; stroke: var(--red); stroke-width: 1.5; opacity: 0.4; }

.news-card-body { padding: 1.25rem 1.25rem 1rem; flex: 1; display: flex; flex-direction: column; }
.news-card-date { font-size: 0.75rem; color: var(--muted); margin-bottom: 0.4rem; font-weight: 500; }
.news-card-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; line-height: 1.3; }
.news-card-excerpt { font-size: 0.875rem; color: var(--muted); line-height: 1.55; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.news-card-footer { padding: 0.75rem 1.25rem; border-top: 1px solid var(--border); }
.news-card-link { font-size: 0.82rem; font-weight: 600; color: var(--red); display: flex; align-items: center; gap: 0.3rem; transition: gap 0.15s; }
.news-card:hover .news-card-link { gap: 0.55rem; }
.news-card-link svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── KALENDER ── */
.kalender-embed { width: 100%; border-radius: 4px; overflow: hidden; border: 1px solid var(--border); }
.kalender-embed iframe { display: block; width: 100%; height: 600px; border: 0; }

/* ── INFO GRID ── */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; }
@media (max-width: 700px) { .info-grid { grid-template-columns: 1fr; } }

.info-box { background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 1.75rem; }
.info-box h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); padding-bottom: 0.65rem; margin-bottom: 0.9rem; border-bottom: 2px solid var(--red); }
.info-box ul { list-style: none; padding: 0; }
.info-box ul li { padding: 0.3rem 0 0.3rem 1.2rem; position: relative; font-size: 0.9rem; color: var(--text); line-height: 1.55; }
.info-box ul li::before { content: ''; position: absolute; left: 0; top: 0.68em; width: 6px; height: 6px; border-radius: 50%; background: var(--red); }
.info-box ul li a { color: var(--red); }
.info-box ul li a:hover { text-decoration: underline; }

/* ── SUBMENU CARDS (Info subpagina's) ── */
.submenu-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }

.submenu-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  color: var(--navy);
  transition: background 0.15s, color 0.15s;
}
.submenu-item:last-child { border-bottom: none; }
.submenu-item:hover { background: var(--red-lt); color: var(--red); }

.submenu-item-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--red-lt); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.submenu-item-icon svg { width: 18px; height: 18px; fill: none; stroke: var(--red); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.submenu-item:hover .submenu-item-icon { background: var(--red); }
.submenu-item:hover .submenu-item-icon svg { stroke: #fff; }

.submenu-item-body { flex: 1; }
.submenu-item-title { font-size: 0.95rem; font-weight: 600; }
.submenu-item-desc  { font-size: 0.8rem;  color: var(--muted); margin-top: 1px; }
.submenu-item:hover .submenu-item-desc { color: var(--red); opacity: 0.8; }

.submenu-item-arrow { flex-shrink: 0; width: 18px; height: 18px; fill: none; stroke: var(--border); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.15s, transform 0.15s; }
.submenu-item:hover .submenu-item-arrow { stroke: var(--red); transform: translateX(3px); }

/* ── LEIDING ── */
.leiding-section { margin-bottom: 3rem; }
.leiding-section h2 {
  font-size: 2rem; font-weight: 700; color: var(--navy);
  text-align: center; margin-bottom: 2rem;
}

.leiding-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 1.5rem;
  justify-content: center;
}

.leiding-card {
  text-align: center;
  background: transparent;
  border: none;
  padding: 0;
  width: 200px;
  flex-shrink: 0;
}

.leiding-card img, .leiding-card .leiding-avatar {
  width: 180px; height: 180px;
  border-radius: 50%;
  object-fit: object-position: top;
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
  border: 3px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
}
.leiding-card:hover img,
.leiding-card:hover .leiding-avatar { border-color: var(--red); transform: scale(1.03); }

.leiding-card .leiding-avatar {
  background: var(--red-lt);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; font-weight: 700; color: var(--red);
}

.leiding-card .leiding-name {
  font-size: 1.05rem; font-weight: 700; color: var(--navy);
  margin-bottom: 0.25rem;
}
.leiding-card .leiding-bijnaam {
  font-size: 0.85rem; color: var(--muted); font-style: normal;
}
.leiding-card .leiding-divider {
  width: 40px; height: 2px; background: var(--border);
  margin: 0.6rem auto 0; border-radius: 2px;
}
.leiding-card .leiding-tel {
  margin-top: 0.5rem; font-size: 0.8rem; color: var(--red);
}

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  width: 100%; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 0; font-family: 'Ubuntu', sans-serif;
  font-size: 0.975rem; font-weight: 600; color: var(--navy);
  cursor: pointer; text-align: left; gap: 1rem; transition: color 0.15s;
}
.faq-question:hover { color: var(--red); }
.faq-question svg { flex-shrink: 0; width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; transition: transform 0.25s; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 800px; }
.faq-answer-inner { padding: 0 0 1.1rem; font-size: 0.9rem; color: var(--muted); line-height: 1.65; }
.faq-answer-inner a { color: var(--red); }
.faq-answer-inner a:hover { text-decoration: underline; }

/* ── BIVAK COUNTDOWN ── */
.countdown-row { display: flex; justify-content: center; gap: 1.5rem; margin: 2rem 0; flex-wrap: wrap; }
.countdown-block { text-align: center; }
.countdown-number { display: block; font-size: 3rem; font-weight: 700; color: var(--white); line-height: 1; min-width: 3rem; }
.countdown-label  { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.65); margin-top: 0.35rem; }
.countdown-sep    { font-size: 2.5rem; font-weight: 700; color: rgba(255,255,255,0.35); align-self: flex-start; margin-top: 0.15rem; }

/* ── FOTOS ── */
.foto-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0.75rem; }
.foto-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 4px; display: block; transition: opacity 0.2s, transform 0.2s; cursor: pointer; }
.foto-grid img:hover { opacity: 0.88; transform: scale(1.02); }

.foto-album { margin-bottom: 2.5rem; }
.foto-album h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); padding-bottom: 0.5rem; margin-bottom: 1rem; border-bottom: 2px solid var(--red); }

/* ── CONTACT ── */
.contact-card { background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--red); border-radius: 4px; padding: 1.75rem; margin-bottom: 1.25rem; }
.contact-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.contact-row { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.9rem; }
.contact-row svg { flex-shrink: 0; width: 18px; height: 18px; margin-top: 1px; fill: none; stroke: var(--red); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-row a { color: var(--red); }
.contact-row a:hover { text-decoration: underline; }

/* ── MAP ── */
.map-wrap { width: 100%; border-radius: 4px; overflow: hidden; border: 1px solid var(--border); margin-top: 1.5rem; }
.map-wrap iframe { display: block; width: 100%; height: 300px; border: 0; }

/* ── SKELETON ── */
.skeleton { background: linear-gradient(90deg, var(--light) 25%, var(--border) 50%, var(--light) 75%); background-size: 200% 100%; animation: shimmer 1.4s infinite; border-radius: 4px; }
@keyframes shimmer { to { background-position: -200% 0; } }

/* ── FOOTER ── */
#Footer { background: var(--navy); color: rgba(255,255,255,0.6); text-align: center; padding: 1.5rem 2rem; font-size: 0.82rem; line-height: 1.9; }
#Footer a { color: rgba(255,255,255,0.8); }
#Footer a:hover { color: var(--red); }

/* ── PROSE (muziekkapel, geschiedenis, ...) ── */
.prose { font-size: 0.95rem; line-height: 1.8; color: var(--text); }
.prose h2 { font-size: 1.4rem; font-weight: 700; color: var(--navy); margin: 2rem 0 0.75rem; padding-bottom: 0.4rem; border-bottom: 2px solid var(--red); }
.prose h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin: 1.5rem 0 0.5rem; }
.prose p { margin-bottom: 1rem; }
.prose ul { margin: 0.5rem 0 1rem 1.25rem; }
.prose ul li { margin-bottom: 0.3rem; }
.prose a { color: var(--red); }
.prose a:hover { text-decoration: underline; }
.prose strong { font-weight: 700; color: var(--navy); }

/* ══════════════════════════════════════════
   EXTRA MOBILE BREAKPOINTS
   ══════════════════════════════════════════ */

/* Tablet — 768px */
@media (max-width: 768px) {
  .section { padding: 2.5rem 1.25rem; }

  .page-hero { padding: 2rem 1.25rem; }

  .fancy-heading h2 { font-size: 1.5rem; }

  /* Kalender iframe kleiner op tablet */
  .kalender-embed iframe { height: 400px; }

  /* Verhuur banner stapelen */
  .verhuur-banner .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .verhuur-banner-btn { align-self: flex-start; }

  /* Contact 2-koloms -> 1-kolom */
  .info-grid { grid-template-columns: 1fr; }

  /* Countdown iets kleiner */
  .countdown-number { font-size: 2.25rem; }
  .countdown-sep    { font-size: 2rem; }
  .countdown-row    { gap: 1rem; }
}

/* Telefoon — 480px */
@media (max-width: 480px) {
  .section { padding: 2rem 1rem; }

  .page-hero { padding: 1.75rem 1rem; }
  .page-hero h1 { font-size: 1.5rem; }

  /* Kalender iframe als agenda-weergave beter op klein scherm */
  .kalender-embed iframe { height: 350px; }

  /* Buttons full-width op kleine schermen */
  .btn-row { grid-template-columns: 1fr; }

  /* Leiding iets smaller grid */
  .leiding-grid { gap: 1.5rem 1rem; justify-content: center; }
  .leiding-card { max-width: 160px; }
  .leiding-card img, .leiding-card .leiding-avatar { width: 130px; height: 130px; }
  .leiding-card .leiding-avatar { font-size: 2.2rem; }

  /* Countdown compact */
  .countdown-number { font-size: 1.85rem; min-width: 2rem; }
  .countdown-sep    { font-size: 1.6rem; }
  .countdown-label  { font-size: 0.6rem; }
  .countdown-row    { gap: 0.65rem; }

  /* Fancy heading kleiner */
  .fancy-heading h2  { font-size: 1.35rem; }
  .fancy-heading .icon-wrap { width: 48px; height: 48px; }
  .fancy-heading .icon-wrap svg { width: 22px; height: 22px; }

  /* News grid 1 kolom */
  .news-grid { grid-template-columns: 1fr; }

  /* Info box padding */
  .info-box { padding: 1.25rem; }
  .contact-card { padding: 1.25rem; }

  /* Submenu items */
  .submenu-item { padding: 0.85rem 1rem; }

  /* Header verhuur knop verbergen ook al op grotere schermen */
  .header-verhuur { display: none; }

  /* Footer */
  #Footer { padding: 1.25rem 1rem; font-size: 0.78rem; }
}

/* Zeer kleine schermen — 360px */
@media (max-width: 360px) {
  .header-inner { padding: 0 1rem; }
  .logo img { height: 36px; }
  .countdown-row { flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
  .countdown-sep { display: none; }
}

/* ── FOTOS PAGINA ─────────────────────────────── */
.fotos-filters {
  position: sticky;
  top: 70px;
  z-index: 50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 0;
}

.fotos-filter-pills {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.fotos-filter-pills::-webkit-scrollbar { display: none; }

.fotos-pill {
  flex-shrink: 0;
  padding: 0.35rem 1rem;
  border-radius: 99px;
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.825rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  background: var(--light);
  color: var(--muted);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.fotos-pill:hover { background: var(--border); color: var(--navy); }
.fotos-pill.active { background: var(--red); color: #fff; }

/* Jaar blok */
.fotos-year-block { margin-bottom: 3.5rem; }

.fotos-year-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.fotos-year-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.fotos-year-bar {
  width: 4px;
  height: 2rem;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}

.fotos-year-label h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.fotos-year-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.fotos-year-count {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
  flex-shrink: 0;
}

/* Album grid */
.fotos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 860px) { .fotos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .fotos-grid { grid-template-columns: 1fr; } }

/* Album kaart */
.fotos-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  text-decoration: none;
  color: var(--text);
  transition: box-shadow 0.25s, transform 0.25s;
}
.fotos-card:hover { box-shadow: 0 8px 32px rgba(0,18,77,0.12); transform: translateY(-3px); }

.fotos-card-cover {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--light);
}

.fotos-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.fotos-card:hover .fotos-card-img { transform: scale(1.05); }

.fotos-card-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--red-lt);
}
.fotos-card-placeholder svg {
  width: 48px; height: 48px;
  fill: none; stroke: var(--red); stroke-width: 1.5; opacity: 0.35;
}

.fotos-card-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s;
}
.fotos-card:hover .fotos-card-overlay { background: rgba(0,0,0,0.22); }

.fotos-card-overlay-label {
  display: flex; align-items: center; gap: 0.4rem;
  background: #fff; color: var(--navy);
  font-size: 0.8rem; font-weight: 700;
  padding: 0.45rem 0.9rem; border-radius: 99px;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.fotos-card-overlay-label svg {
  width: 14px; height: 14px;
  fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.fotos-card:hover .fotos-card-overlay-label { opacity: 1; transform: translateY(0); }

.fotos-card-badge {
  position: absolute; top: 0.6rem; left: 0.6rem;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  color: #fff; font-size: 0.7rem; font-weight: 700;
  padding: 0.2rem 0.6rem; border-radius: 99px;
}

.fotos-card-body {
  padding: 1rem 1.1rem 0.85rem;
  display: flex; flex-direction: column; flex: 1;
}

.fotos-card-title {
  font-size: 0.95rem; font-weight: 700; color: var(--navy);
  line-height: 1.3; margin-bottom: 0.3rem;
  transition: color 0.15s;
}
.fotos-card:hover .fotos-card-title { color: var(--red); }

.fotos-card-desc {
  font-size: 0.8rem; color: var(--muted); line-height: 1.5;
  margin-bottom: 0.5rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.fotos-card-footer {
  margin-top: auto; padding-top: 0.65rem;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}

.fotos-card-year {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; color: var(--muted); font-weight: 500;
}
.fotos-card-year svg {
  width: 13px; height: 13px;
  fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round;
}

.fotos-card-cta {
  display: flex; align-items: center; gap: 0.25rem;
  font-size: 0.75rem; font-weight: 700; color: var(--red);
  transition: gap 0.15s;
}
.fotos-card:hover .fotos-card-cta { gap: 0.45rem; }
.fotos-card-cta svg {
  width: 13px; height: 13px;
  fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}

.fotos-card-skeleton {
  aspect-ratio: 4/3;
  border-radius: 12px;
}

/* Privacy notice */
.foto-privacy {
  display: flex; align-items: flex-start; gap: 0.75rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 6px; padding: 1rem 1.25rem;
  font-size: 0.875rem; color: var(--muted);
}
.foto-privacy svg { flex-shrink: 0; width: 18px; height: 18px; margin-top: 1px; fill: none; stroke: var(--navy); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.foto-privacy a { color: var(--red); }
.foto-privacy a:hover { text-decoration: underline; }

/* ── MUZIEKKAPEL TARIEVEN ──────────────────────── */
.muziek-tarieven {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

@media (max-width: 560px) { .muziek-tarieven { grid-template-columns: 1fr; } }

.muziek-tarief {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: 4px;
  padding: 1.25rem;
}

.muziek-tarief-type {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.muziek-tarief-type svg {
  width: 18px; height: 18px; flex-shrink: 0;
  fill: none; stroke: var(--red); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.muziek-tarief-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 0.5px solid var(--border);
}

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

.muziek-tarief-prijs {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}

.muziek-tarief-prijs span {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--muted);
  margin-left: 1px;
}