/*
Theme Name: ThemeParkRaters
Theme URI: https://themeparkraters.nl
Author: ThemeParkRaters
Author URI: https://themeparkraters.nl
Description: Eenpager-WordPress-thema voor ThemeParkRaters — een YouTube-kanaal dat pretparken beoordeelt. Alles op één scrollende homepage: intro, video's, team, FAQ, achter de schermen en contact. Volledig aanpasbaar via de Customizer en eigen content-onderdelen in wp-admin.
Version: 5.3.0
Requires at least: 6.0
Requires PHP: 7.4
Tested up to: 6.6
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: themeparkraters
Tags: custom-logo, custom-menu, featured-images, translation-ready
*/

:root {
  --navy: #1a2a5e;
  --navy-dark: #0d1a3d;
  --navy-mid: #243470;
  --gold: #c9a227;
  --gold-light: #e8c84a;
  --gold-pale: #f5e199;
  --cream: #faf8f2;
  --white: #ffffff;
  --text-muted: #8a9bc0;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--navy-dark);
  color: var(--white);
  overflow-x: hidden;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ── STARS BACKGROUND ── */
.stars-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(26,42,94,0.8) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,162,39,0.05) 0%, transparent 50%),
    #0b1230;
  z-index: -2;
}
.stars-bg::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.8) 1px, transparent 1px),
    radial-gradient(circle, rgba(255,255,255,0.5) 1px, transparent 1px),
    radial-gradient(circle, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 200px 200px, 120px 120px, 80px 80px;
  background-position: 0 0, 60px 40px, 30px 70px;
  opacity: 0.4;
  z-index: -1;
}

/* ── NAV ── */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 75px;
  background: rgba(11,18,48,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,162,39,0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: none;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex: none;
  overflow: hidden;
}
.nav-logo-icon img { width: 100%; height: 100%; object-fit: cover; }

.nav-logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.2;
}

.nav-logo-text span { color: var(--gold); }

.custom-logo-link img { max-height: 42px; width: auto; }

ul.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
.nav-links .current-menu-item > a { color: var(--gold-light); }
.nav-links .current-menu-item > a::after { width: 100%; }

.nav-links .nav-cta,
a.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark) !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 900 !important;
  letter-spacing: 1.5px !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}

.nav-links .nav-cta:hover,
a.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201,162,39,0.4);
  color: var(--navy-dark) !important;
}

.nav-links .nav-cta::after,
a.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--gold-light); border-radius: 2px; }

/* ── BODY PADDING FOR FIXED NAV ── */
.page-body { min-height: 100vh; }

/* ── HERO ── */
.hero {
  min-height: calc(100vh - 75px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 5%;
  position: relative;
  overflow: hidden;
}

.hero-coaster {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  opacity: 0.06;
  pointer-events: none;
}
.hero-coaster svg { width: 100%; height: 100%; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.4);
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 32px;
  animation: fadeInDown 0.8s ease both;
}
.hero-badge::before { content: '★'; font-size: 10px; }

@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--white) 30%, var(--gold-pale) 70%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  animation: fadeInUp 0.9s 0.15s ease both;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 50px;
  font-weight: 300;
  animation: fadeInUp 0.9s 0.3s ease both;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; animation: fadeInUp 0.9s 0.45s ease both; }

/* Zachte drift-animatie op de coaster-lijn in de hero */
@keyframes hero-drift { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(-16px); } }
.hero-coaster svg { animation: hero-drift 14s ease-in-out infinite; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  padding: 16px 36px;
  border-radius: 5px;
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(201,162,39,0.4); }

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 16px 36px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

/* ── STATS ── */
.stats-bar {
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(201,162,39,0.2);
  border-bottom: 1px solid rgba(201,162,39,0.2);
  padding: 40px 5%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-num {
  font-family: 'Cinzel', serif;
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── SECTION ── */
.section { padding: 90px 5%; }
.section-header { text-align: center; margin-bottom: 60px; }

.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.section-title span {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ── VIDEO CARDS ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.video-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,162,39,0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  text-decoration: none;
  display: block;
  color: inherit;
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,162,39,0.3);
  border-color: rgba(201,162,39,0.4);
}

.video-thumb { aspect-ratio: 16/9; position: relative; overflow: hidden; }

.video-thumb-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  transition: transform 0.4s;
  background-size: cover;
  background-position: center;
}
.video-card:hover .video-thumb-bg { transform: scale(1.05); }

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: background 0.2s;
}
.video-card:hover .play-btn { background: rgba(0,0,0,0.1); }

.play-circle {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--navy-dark);
  transition: transform 0.2s;
}
.video-card:hover .play-circle { transform: scale(1.1); }

.video-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}

.video-info { padding: 20px; }

.video-category {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.video-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 10px;
}

.video-meta { font-size: 0.8rem; color: var(--text-muted); display: flex; gap: 14px; flex-wrap: wrap; }

/* ── CATEGORIES ── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.category-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.category-card:hover { background: rgba(201,162,39,0.1); border-color: rgba(201,162,39,0.4); transform: translateY(-4px); }
.category-icon { font-size: 2.4rem; margin-bottom: 14px; display: block; }
.category-name { font-family: 'Cinzel', serif; font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.category-count { font-size: 0.75rem; color: var(--text-muted); }

/* ── DIVIDER ── */
.divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(201,162,39,0.3), transparent); margin: 0 5%; }

/* ── PAGE HERO (subpages) ── */
.page-hero {
  background: linear-gradient(180deg, rgba(26,42,94,0.6) 0%, transparent 100%);
  padding: 70px 5% 50px;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--white), var(--gold-pale));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.page-hero p { color: var(--text-muted); font-size: 1.05rem; max-width: 550px; margin: 0 auto; }

/* ── FILTER BAR ── */
.filter-bar { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; padding: 30px 5%; }
.filter-btn {
  padding: 9px 22px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid rgba(201,162,39,0.3);
  background: transparent;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  display: inline-block;
}
.filter-btn.active, .filter-btn:hover { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy-dark); border-color: transparent; }

.videos-full-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; padding: 0 5% 80px; }

/* ── ABOUT ── */
.about-intro { padding: 70px 5%; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-intro-text h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--white);
}
.about-intro-text h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-intro-text .entry-content p { color: rgba(255,255,255,0.65); line-height: 1.9; margin-bottom: 20px; font-size: 1.05rem; }

.about-visual { position: relative; }
.about-img-frame {
  background: linear-gradient(135deg, rgba(26,42,94,0.8), rgba(201,162,39,0.1));
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 16px;
  padding: 50px;
  text-align: center;
  font-size: 6rem;
  position: relative;
  overflow: hidden;
}
.about-img-frame img { border-radius: 10px; font-size: initial; }
.about-img-frame::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(transparent 0deg, rgba(201,162,39,0.05) 90deg, transparent 180deg);
  animation: spin 15s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.about-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.about-stat-box { background: rgba(255,255,255,0.04); border: 1px solid rgba(201,162,39,0.2); border-radius: 10px; padding: 20px; text-align: center; }
.about-stat-box .num {
  font-family: 'Cinzel', serif; font-size: 2rem; font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.about-stat-box .label { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; }

/* ── TEAM ── */
.team-section { padding: 0 5% 90px; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 36px; }
.team-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 16px;
  padding: 32px 28px 30px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.4); border-color: rgba(201,162,39,0.4); }
.team-avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  background-size: cover;
  background-position: center;
  border: 3px solid var(--gold);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.team-info { padding: 0; }
.team-name { font-family: 'Cinzel', serif; font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.team-role { font-size: 0.74rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.team-bio { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; margin-bottom: 18px; text-align: left; }
.team-socials { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.social-pill {
  background: rgba(201,162,39,0.12); border: 1px solid rgba(201,162,39,0.3); color: var(--gold-light);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px; text-decoration: none; transition: background 0.2s;
}
.social-pill:hover { background: rgba(201,162,39,0.25); }

/* ── VALUES ── */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; padding: 0 5% 90px; }
.value-card { padding: 30px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; border-left: 3px solid var(--gold); }
.value-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.value-title { font-family: 'Cinzel', serif; font-size: 1rem; color: var(--white); margin-bottom: 10px; }
.value-text { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 70px; padding: 70px 5% 90px; align-items: start; }
.contact-info h2 { font-family: 'Cinzel', serif; font-size: 2rem; color: var(--white); margin-bottom: 20px; }
.contact-info .entry-content p { color: rgba(255,255,255,0.6); line-height: 1.85; margin-bottom: 20px; font-size: 1rem; }
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-top: 16px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; padding: 18px; background: rgba(255,255,255,0.04); border-radius: 10px; border: 1px solid rgba(255,255,255,0.07); }
.contact-item-icon { font-size: 1.4rem; width: 44px; height: 44px; background: rgba(201,162,39,0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-text strong { display: block; font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-item-text span { color: rgba(255,255,255,0.7); font-size: 0.93rem; }

.contact-form { background: rgba(255,255,255,0.04); border: 1px solid rgba(201,162,39,0.2); border-radius: 16px; padding: 40px; }
.contact-form h3 { font-family: 'Cinzel', serif; font-size: 1.4rem; color: var(--white); margin-bottom: 30px; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px;
  padding: 13px 16px; color: var(--white); font-family: 'Lato', sans-serif; font-size: 0.95rem; outline: none;
  transition: border-color 0.2s, background 0.2s; appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); background: rgba(201,162,39,0.05); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select option { background: var(--navy-dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.submit-btn {
  width: 100%; padding: 16px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy-dark);
  border: none; border-radius: 8px; font-family: 'Cinzel', serif; font-size: 0.95rem; font-weight: 700;
  letter-spacing: 2px; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; margin-top: 8px;
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,162,39,0.4); }

.form-notice {
  border-radius: 8px; padding: 16px 20px; text-align: center; margin-bottom: 20px; font-weight: 700; letter-spacing: 1px;
}
.form-notice--success { background: rgba(201,162,39,0.1); border: 1px solid rgba(201,162,39,0.4); color: var(--gold-light); }
.form-notice--error { background: rgba(180,60,60,0.12); border: 1px solid rgba(220,90,90,0.4); color: #f0a0a0; }

/* ── FOOTER ── */
footer.site-footer { background: rgba(0,0,0,0.5); border-top: 1px solid rgba(201,162,39,0.2); padding: 60px 5% 30px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-brand-name { font-family: 'Cinzel', serif; font-size: 1.3rem; font-weight: 900; color: var(--white); display:flex; align-items:center; gap:10px; }
.footer-brand-name span { color: var(--gold); }
.footer-brand-name img { max-height: 32px; width: auto; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.8; margin-top: 14px; max-width: 280px; }
.footer-heading { font-family: 'Cinzel', serif; font-size: 0.85rem; letter-spacing: 2px; color: var(--gold); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-copy span { color: var(--gold); }

/* ── THUMB FALLBACK COLORS (used when a video has no featured image) ── */
.thumb-1 { background: linear-gradient(135deg, #1a3a6e, #2a5298); }
.thumb-2 { background: linear-gradient(135deg, #6e1a1a, #982a2a); }
.thumb-3 { background: linear-gradient(135deg, #1a6e3a, #2a9850); }
.thumb-4 { background: linear-gradient(135deg, #4a1a6e, #7a2a98); }
.thumb-5 { background: linear-gradient(135deg, #6e4a1a, #987a2a); }
.thumb-6 { background: linear-gradient(135deg, #1a5e6e, #2a8898); }
.thumb-7 { background: linear-gradient(135deg, #2a1a6e, #4a2a98); }
.thumb-8 { background: linear-gradient(135deg, #6e1a4a, #98287a); }
.thumb-9 { background: linear-gradient(135deg, #1a6e5a, #2a9878); }

/* ── WORDPRESS EXTRAS: blog list, 404, pagination, single video embed ── */
.post-list { display: grid; gap: 26px; }
.post-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(201,162,39,0.15); border-radius: 12px; padding: 26px 28px; }
.post-card .post-meta { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.post-card h2 { font-family: 'Cinzel', serif; font-size: 1.4rem; margin-bottom: 10px; color: var(--white); }
.post-card h2 a:hover { color: var(--gold-light); }
.post-card p { color: rgba(255,255,255,0.6); margin-bottom: 14px; }

.empty-state { text-align: center; padding: 60px 20px; background: rgba(255,255,255,0.03); border-radius: 16px; border: 1px solid rgba(201,162,39,0.15); }
.empty-state h2 { font-family: 'Cinzel', serif; margin-bottom: 10px; }
.empty-state p { color: rgba(255,255,255,0.6); }

.pagination-row { display: flex; gap: 10px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.pagination-row a, .pagination-row span {
  padding: 9px 18px; border-radius: 30px; border: 1px solid rgba(201,162,39,0.3); font-weight: 700; font-size: 0.85rem; text-decoration: none; color: rgba(255,255,255,0.7);
}
.pagination-row a:hover { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy-dark); border-color: transparent; }
.pagination-row .current { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy-dark); border-color: transparent; }

.entry-content { font-size: 1.02rem; color: rgba(255,255,255,0.7); line-height: 1.85; }
.entry-content img { border-radius: 12px; margin: 20px 0; }
.entry-content h2, .entry-content h3 { font-family: 'Cinzel', serif; color: var(--white); margin-top: 1.2em; margin-bottom: 0.5em; }
.entry-content a { color: var(--gold-light); }

.video-embed-wrap { border-radius: 16px; overflow: hidden; margin-bottom: 30px; aspect-ratio: 16/9; background: #000; border: 1px solid rgba(201,162,39,0.3); }
.video-embed-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .contact-layout { grid-template-columns: 1fr; gap: 50px; }
}
@media (max-width: 768px) {
  .about-intro { grid-template-columns: 1fr; gap: 40px; }
  nav.site-nav { padding: 0 4%; }
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

@media (max-width: 700px) {
  ul.nav-links {
    display: none;
    position: fixed;
    top: 75px; left: 0; right: 0;
    background: rgba(11,18,48,0.98);
    border-bottom: 1px solid rgba(201,162,39,0.3);
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 18px 5% 26px;
  }
  ul.nav-links.is-open { display: flex; }
  .nav-links a { display: block; padding: 10px 0; width: 100%; }
  .nav-links .nav-cta { display: inline-block; margin-top: 8px; }
  .nav-toggle { display: flex; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ── TICKER / MARQUEE ── */
.ticker-wrap {
  background: rgba(201,162,39,0.045);
  border-top: 1px solid rgba(201,162,39,0.14);
  border-bottom: 1px solid rgba(201,162,39,0.14);
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
}
.ticker-track {
  display: inline-flex;
  gap: 0;
  animation: ticker-scroll 38s linear infinite;
  width: max-content;
}
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(232,200,74,0.65);
  padding: 0 20px;
}
.ticker-item .sep { color: rgba(201,162,39,0.3); }

/* ── VIDEO SPOTLIGHT ── */
.spotlight {
  padding: 70px 5% 90px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.spotlight-player {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201,162,39,0.35);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,162,39,0.15);
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
}
.spotlight-player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.spotlight-facade {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  background: rgba(0,0,0,0.25);
  transition: background 0.2s;
}
.spotlight-facade:hover { background: rgba(0,0,0,0.1); }
.spotlight-facade .play-circle {
  width: 84px; height: 84px;
  font-size: 1.8rem;
  box-shadow: 0 0 0 0 rgba(201,162,39,0.5);
  animation: pulse-ring 2.4s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(201,162,39,0.45); }
  70%  { box-shadow: 0 0 0 26px rgba(201,162,39,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,162,39,0); }
}
.spotlight-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: var(--navy-dark);
  font-size: 0.68rem; font-weight: 900; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 3px; z-index: 2;
}
.spotlight-info .video-category { margin-bottom: 12px; }
.spotlight-info .video-title { font-size: 1.7rem; margin-bottom: 16px; }
.spotlight-info .video-meta { font-size: 0.9rem; margin-bottom: 24px; }
.spotlight-info .video-meta span { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 6px 12px; border-radius: 20px; }

@media (max-width: 900px) {
  .spotlight { grid-template-columns: 1fr; gap: 30px; padding: 50px 5% 70px; }
}

/* ── FACADE PLAY-TO-EMBED OP VIDEOKAARTEN ── */
.video-thumb iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 2; }

/* ── GROOT LOGO IN DE HERO ── */
.hero-logo-big {
  margin-bottom: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeInDown 0.8s ease both;
}
.hero-logo-big img { max-height: 240px; width: auto; margin: 0 auto; }
.hero-logo-mark {
  width: 192px; height: 192px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 92px;
  margin: 0 auto 18px;
  box-shadow: 0 0 90px rgba(201,162,39,0.4);
}
.hero-logo-text {
  font-family: 'Cinzel', serif;
  font-size: 2.6rem;
  letter-spacing: 4px;
  color: var(--white);
  text-transform: uppercase;
}
.hero-logo-text span { color: var(--gold-light); }

/* ── FAQ ACCORDION ── */
.faq-list { max-width: 800px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,162,39,0.18);
  border-radius: 12px;
  padding: 4px 26px;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: rgba(201,162,39,0.45); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(201,162,39,0.15);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: transform 0.25s ease, background 0.2s ease;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy-dark); }
.faq-answer {
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  padding: 0 0 22px;
  font-size: 0.96rem;
}
.faq-answer p:last-child { margin-bottom: 0; }

/* ── ACHTER DE SCHERMEN GALERIJ ── */
.bts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.bts-photo {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201,162,39,0.15);
  cursor: zoom-in;
}
.bts-photo:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 2px; }
.bts-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.bts-photo:hover img { transform: scale(1.08); }
.bts-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px 12px;
  background: linear-gradient(transparent, rgba(11,18,48,0.9));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.bts-photo:hover .bts-caption, .bts-photo:focus-visible .bts-caption { opacity: 1; transform: translateY(0); }
.bts-ig-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--navy-dark);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 4px 10px;
  border-radius: 20px;
  text-decoration: none;
}

.bts-lightbox {
  position: fixed; inset: 0;
  background: rgba(5,9,25,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 40px;
  cursor: zoom-out;
}
.bts-lightbox.is-open { display: flex; }
.bts-lightbox img { max-width: 100%; max-height: 100%; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.bts-lightbox-close {
  position: absolute; top: 24px; right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
}

@media (max-width: 600px) {
  .hero-logo-big img { max-height: 150px; }
  .hero-logo-mark { width: 130px; height: 130px; font-size: 62px; }
  .hero-logo-text { font-size: 1.7rem; }
}
