/* ============================================
   CasaCoach Radio – Stylesheet
   Kleuren:
     Lichtblauw:   #9ed3d5
     Donkergrijs:  #5a534d
     Oranje:       #e75c25
     Turquoise:    #017e93
   ============================================ */

/* ============================================
   CSS Custom Properties
   ============================================ */
:root {
  --light-blue:  #9ed3d5;
  --dark-grey:   #5a534d;
  --orange:      #e75c25;
  --turquoise:   #017e93;
  --white:       #ffffff;
  --bg-warm:     #f5f0eb;
  --bg-card:     #ffffff;

  --shadow-sm:   0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow:      0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg:   0 8px 40px rgba(0, 0, 0, 0.16);

  --radius:      16px;
  --radius-lg:   24px;
  --radius-xl:   32px;

  --transition:  0.28s ease;
  --font:        'Nunito', sans-serif;
}

/* ============================================
   Reset & Base
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--dark-grey);
  background-color: var(--bg-warm);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: var(--font);
}

/* ============================================
   NAVIGATIE
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition:
    background var(--transition),
    padding var(--transition),
    box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 90px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
  transition: filter var(--transition), height var(--transition);
}

.navbar.scrolled .logo-img {
  height: 44px;
  filter: none;
}

.logo-fallback {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  display: none;
}

.logo-img[style*="display: none"] + .logo-fallback {
  display: block;
}

.navbar.scrolled .logo-fallback {
  color: var(--turquoise);
  text-shadow: none;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 4px;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 8px 14px;
  border-radius: 22px;
  transition:
    background var(--transition),
    color var(--transition);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  outline: none;
}

.navbar.scrolled .nav-links a {
  color: var(--dark-grey);
  text-shadow: none;
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a:focus-visible {
  background: var(--light-blue);
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}

.navbar.scrolled .hamburger span {
  background: var(--dark-grey);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO SECTIE
   ============================================ */
#hero {
  position: relative;
  min-height: 85vh;
  /* Plaats hero.jpg in de images/ map */
  background: url('../images/hero.jpg') center 40% / cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(1, 126, 147, 0.25) 0%,
    rgba(10, 20, 30, 0.45) 45%,
    rgba(10, 20, 30, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 100px 48px 80px 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

/* Tagline */
.hero-tagline {
  text-align: left;
  color: var(--white);
}

.hero-tagline h1 {
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.25;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
  letter-spacing: -0.5px;
}

.hero-sub-inline {
  color: var(--light-blue);
  white-space: nowrap;
}

/* Widgets rij – gestapeld links */
.hero-widgets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
  max-width: 460px;
}

/* Widget basis */
.widget {
  background: rgba(10, 20, 30, 0.52);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  color: var(--white);
  /* Voorkomt dat grid-items breder worden dan hun kolom */
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

/* ---- Player Widget ---- */
.player-widget {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  animation: pulseDot 1.3s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.75); }
}

.player-icon {
  font-size: 2.6rem;
  color: var(--light-blue);
  line-height: 1;
}

.player-title {
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.2;
}

.player-sub {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.65;
  letter-spacing: 0.5px;
  margin-top: -8px;
}

.player-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}

/* Play knop */
.play-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--orange);
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: center;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  box-shadow: 0 4px 22px rgba(231, 92, 37, 0.55);
}

.play-btn:hover,
.play-btn:focus-visible {
  transform: scale(1.09);
  box-shadow: 0 6px 28px rgba(231, 92, 37, 0.75);
  outline: none;
}

.play-btn.playing {
  background: var(--turquoise);
  box-shadow: 0 4px 22px rgba(1, 126, 147, 0.6);
}

/* Volume balk */
.volume-control {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.volume-control i {
  font-size: 0.85rem;
  opacity: 0.75;
  flex-shrink: 0;
}

#volumeSlider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.28);
  outline: none;
  cursor: pointer;
}

#volumeSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
  transition: transform var(--transition);
}

#volumeSlider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

#volumeSlider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: none;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
}

/* ---- Nu Speelt Widget ---- */
.nowplaying-widget {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nowplaying-widget h3 {
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--light-blue);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nowplaying-current {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px;
  min-width: 0;
  overflow: hidden;
}

.track-art {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #f07a3e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* Disc spin animatie zet aan via JS */
#discIcon {
  animation: spinDisc 3s linear infinite;
  animation-play-state: paused;
}

@keyframes spinDisc {
  to { transform: rotate(360deg); }
}

.track-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  overflow: hidden;
  min-width: 0;
}

.meta-label {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  opacity: 0.65;
}

.track-title {
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-artist {
  font-size: 0.78rem;
  opacity: 0.78;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.history-label {
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--light-blue);
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 4px;
}

.history-list {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  max-height: 160px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.2) transparent;
}

.history-list::-webkit-scrollbar {
  width: 4px;
}

.history-list::-webkit-scrollbar-track {
  background: transparent;
}

.history-list::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.25);
  border-radius: 4px;
}

.history-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  transition: background var(--transition);
}

.history-item:hover {
  background: rgba(255,255,255,0.12);
}

.history-time {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--light-blue);
  opacity: 0.75;
  flex-shrink: 0;
  min-width: 36px;
}

.history-track {
  flex: 1;
  min-width: 0;
}

.history-track-title {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.history-track-artist {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.history-placeholder {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  padding: 8px 10px;
  font-style: italic;
}

/* Wave overgang */
.wave-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.wave-bottom svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 20px;
}

/* 2-koloms grid voor de content secties */
.sections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

/* ============================================
   CONTENT SECTIES (gedeeld)
   ============================================ */
.content-section {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 38px 36px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}

/* Fade-in animatie (bij voorkeur) */
@media (prefers-reduced-motion: no-preference) {
  .content-section {
    opacity: 0;
    transform: translateY(22px);
    transition:
      opacity 0.55s ease,
      transform 0.55s ease,
      box-shadow var(--transition);
  }

  .content-section.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-section:hover {
  box-shadow: var(--shadow-lg);
}

/* Sectie icoon */
.section-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--orange) 0%, #f07840 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(231, 92, 37, 0.3);
}

.content-section h2 {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--turquoise);
  margin-bottom: 12px;
  line-height: 1.25;
}

.content-section p {
  font-size: 0.93rem;
  line-height: 1.72;
  color: var(--dark-grey);
  margin-bottom: 12px;
}

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

.section-subtitle {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 6px !important;
}

/* Feature lijst */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark-grey);
}

.feature-list li i {
  color: var(--orange);
  margin-top: 2px;
  flex-shrink: 0;
}

/* ============================================
   NIEUWS SECTIE
   ============================================ */
.nieuws-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.nieuws-card {
  background: var(--bg-warm);
  border-radius: 12px;
  padding: 14px 16px;
  border-left: 4px solid var(--orange);
  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.nieuws-card:hover {
  background: #e8f7f8;
  border-left-color: var(--turquoise);
  transform: translateX(3px);
}

.nieuws-tag {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--orange);
  margin-bottom: 5px;
  transition: color var(--transition);
}

.nieuws-card:hover .nieuws-tag {
  color: var(--turquoise);
}

.nieuws-card h4 {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--dark-grey);
  margin-bottom: 4px;
}

.nieuws-card p {
  font-size: 0.82rem;
  margin-bottom: 0;
  opacity: 0.8;
}

/* ============================================
   PODCAST – DE SPAANSE TAFEL
   ============================================ */
.podcast-episodes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 20px;
}

/* Spaanse Tafel header met logo */
.tafel-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 22px;
}

.tafel-logo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.tafel-header h2 {
  margin-bottom: 4px;
}

.tafel-header .section-subtitle {
  margin-bottom: 0 !important;
}

@media (max-width: 768px) {
  .tafel-header {
    grid-template-columns: 1fr;
  }

  .tafel-logo {
    border-radius: 12px;
    aspect-ratio: 1 / 1;
  }
}

/* ---- Laatste YouTube video ---- */
.latest-video-label {
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.latest-video-card {
  display: flex;
  text-decoration: none;
  color: var(--dark-grey);
  margin-bottom: 20px;
  border: 2px solid transparent;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-warm);
  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

/* Verticale layout: thumbnail boven, tekst onder */
.latest-video-card--vertical {
  flex-direction: column;
}

.latest-video-card:hover {
  background: #e4f2f3;
  border-color: var(--light-blue);
  transform: translateY(-2px);
}

.latest-video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--dark-grey);
  flex-shrink: 0;
}

.latest-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.latest-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  font-size: 2.2rem;
  transition: background var(--transition);
}

.latest-video-card:hover .latest-video-play {
  background: rgba(231, 92, 37, 0.72);
}

.latest-video-info {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.latest-video-title {
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

.latest-video-meta {
  font-size: 0.72rem;
  opacity: 0.6;
}

.latest-video-desc {
  font-size: 0.8rem;
  line-height: 1.55;
  opacity: 0.75;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---- Podcast afleveringen ---- */
.episode-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-warm);
  border-radius: 12px;
  padding: 14px;
  transition:
    background var(--transition),
    transform var(--transition);
}

.episode-card:hover {
  background: #e4f2f3;
  transform: translateX(3px);
}

.episode-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--light-blue);
  min-width: 38px;
  line-height: 1;
  flex-shrink: 0;
}

.episode-info {
  flex: 1;
  min-width: 0;
}

.episode-info h4 {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--dark-grey);
  margin-bottom: 3px;
}

.episode-info p {
  font-size: 0.78rem;
  margin: 0;
  opacity: 0.72;
}

.episode-play {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  border: none;
  color: var(--white);
  font-size: 0.78rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background var(--transition),
    transform var(--transition);
}

.episode-play:hover,
.episode-play:focus-visible {
  background: var(--turquoise);
  transform: scale(1.12);
  outline: none;
}

/* ============================================
   APP SECTIE
   ============================================ */
.app-section {
  background: linear-gradient(145deg, var(--turquoise) 0%, #015f70 100%);
  position: relative;
  overflow: hidden;
}

.app-section::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.app-section h2 {
  color: var(--white);
}

.app-section p {
  color: rgba(255, 255, 255, 0.88);
}

.app-section .section-icon {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.app-section .feature-list li {
  color: rgba(255, 255, 255, 0.9);
}

.app-section .feature-list li i {
  color: var(--light-blue);
}

/* Store badge */
.app-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.14);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  padding: 12px 20px;
  text-decoration: none;
  color: var(--white);
  transition:
    background var(--transition),
    transform var(--transition);
}

.app-badge:hover,
.app-badge:focus-visible {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  outline: none;
}

.app-badge i {
  font-size: 1.8rem;
}

.badge-label {
  display: block;
  font-size: 0.68rem;
  opacity: 0.78;
  letter-spacing: 0.5px;
}

.badge-store {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

/* App inner: text left, phone right on desktop */
.app-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.app-text {
  flex: 1;
  min-width: 0;
}

.app-phone {
  flex: 0 0 auto;
  width: 160px;
}

.app-coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  margin-bottom: 16px !important;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--light-blue) !important;
  opacity: 1;
}

.app-coming-soon i {
  font-size: 0.9rem;
}

/* Phone screenshot */
.app-screenshot {
  width: 100%;
  aspect-ratio: 1 / 2.15;
  object-fit: cover;
  object-position: top center;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  border: 3px solid rgba(255, 255, 255, 0.25);
  display: block;
}

@media (max-width: 640px) {
  .app-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .app-phone {
    width: 130px;
    align-self: center;
  }
}

/* ============================================
   CONTACT SECTIE
   ============================================ */
.contact-section {
  margin-bottom: 28px;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}

.contact-details {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--turquoise);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item a {
  color: var(--dark-grey);
  text-decoration: none;
  transition: color var(--transition);
  font-weight: 700;
}

.contact-item a:hover,
.contact-item a:focus-visible {
  color: var(--orange);
  outline: none;
}

/* Formspree success & error meldingen */
.fs-success {
  display: none;
  background: #e8f7f3;
  border: 2px solid var(--turquoise);
  border-radius: 12px;
  padding: 18px 20px;
  color: var(--turquoise);
  font-weight: 700;
  font-size: 0.95rem;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}

.fs-success[style*="block"],
.fs-success:not([style="display: none"]) {
  display: flex;
}

.fs-success i {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.fs-error-global {
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 700;
  min-height: 0;
  margin-bottom: 8px;
}

.fs-field-error {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 2px;
  display: block;
  min-height: 18px;
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--orange) !important;
}

/* Formspree submit-knop tijdens verzenden */
[data-fs-submit-btn]:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}

.form-error {
  color: var(--orange);
  font-size: 0.88rem;
  font-weight: 700;
  margin-top: 4px;
}

/* Contactformulier */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.83rem;
  font-weight: 800;
  color: var(--dark-grey);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e5e0da;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--dark-grey);
  background: var(--bg-warm);
  outline: none;
  transition:
    border-color var(--transition),
    background var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--turquoise);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-status {
  font-size: 0.88rem;
  font-weight: 700;
  min-height: 22px;
}

.form-status.success { color: var(--turquoise); }
.form-status.error   { color: var(--orange); }

/* ============================================
   KNOPPEN
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 26px;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(231, 92, 37, 0.38);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #cc4f1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(231, 92, 37, 0.5);
  outline: none;
}

.btn-primary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.btn-outline {
  background: transparent;
  color: var(--turquoise);
  border: 2px solid var(--turquoise);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--turquoise);
  color: var(--white);
  transform: translateY(-2px);
  outline: none;
}

/* ============================================
   FOOTER
   ============================================ */
.footer-wave {
  line-height: 0;
  background: var(--bg-warm);
}

.footer-wave svg {
  width: 100%;
  height: 60px;
  display: block;
}

.footer {
  background: var(--dark-grey);
  color: rgba(255, 255, 255, 0.82);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 36px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-slogan {
  font-size: 0.88rem;
  line-height: 1.6;
  opacity: 0.75;
  margin-bottom: 18px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--white);
  font-size: 0.95rem;
  transition:
    background var(--transition),
    transform var(--transition);
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: var(--orange);
  transform: translateY(-3px);
  outline: none;
}

.footer-links h4 {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--light-blue);
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links ul a {
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links ul a:hover,
.footer-links ul a:focus-visible {
  color: var(--light-blue);
  outline: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 18px 24px;
}

.footer-bottom p {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.78rem;
  opacity: 0.55;
}

/* ============================================
   JURIDISCHE MODALS
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 20, 30, 0.65);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeInOverlay 0.2s ease;
}

.modal-overlay[hidden] {
  display: none;
}

@keyframes fadeInOverlay {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: slideUpModal 0.25s ease;
}

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

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--dark-grey);
  cursor: pointer;
  opacity: 0.5;
  transition: opacity var(--transition);
  padding: 4px 8px;
}

.modal-close:hover,
.modal-close:focus-visible {
  opacity: 1;
  outline: none;
}

#modalTitle {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--turquoise);
  margin-bottom: 24px;
  padding-right: 40px;
}

.modal-body h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark-grey);
  margin: 20px 0 6px;
}

.modal-body h3:first-child {
  margin-top: 0;
}

.modal-body p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--dark-grey);
  opacity: 0.88;
  margin-bottom: 8px;
}

.modal-body a {
  color: var(--turquoise);
  font-weight: 700;
  text-decoration: none;
}

.modal-body a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .modal-box {
    padding: 28px 22px;
  }
}
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  border: none;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(231, 92, 37, 0.45);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity var(--transition),
    transform var(--transition),
    background var(--transition);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover,
.scroll-top:focus-visible {
  background: var(--turquoise);
  outline: none;
}

/* ============================================
   RESPONSIVE – TABLET (≤ 960px)
   ============================================ */
@media (max-width: 960px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============================================
   RESPONSIVE – MOBIEL (≤ 768px)
   ============================================ */
@media (max-width: 768px) {
  /* Navigatie */
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    flex-direction: column;
    padding: 16px 20px 20px;
    gap: 4px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    color: var(--dark-grey);
    text-shadow: none;
    padding: 10px 16px;
  }

  .nav-links a:hover {
    background: var(--light-blue);
    color: var(--white);
  }

  /* Hero widgets: al 1 kolom in desktop-stijl, op mobiel centreren */
  .hero-content {
    align-items: center;
    padding: 150px 16px 70px;
    gap: 28px;
    /* Voorkomt overflow door nowrap-tekst of font-swap */
    overflow: hidden;
  }

  .hero-tagline {
    text-align: center;
  }

  .hero-sub-inline {
    white-space: normal;
  }

  .hero-widgets {
    max-width: 100%;
    width: 100%;
  }

  /* Secties – 1 kolom */
  .sections-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .content-section {
    padding: 28px 22px;
  }
}

/* ============================================
   RESPONSIVE – KLEIN MOBIEL (≤ 480px)
   ============================================ */
@media (max-width: 480px) {
  .widget {
    padding: 20px 18px;
  }

  .main-content {
    padding: 40px 16px 16px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .scroll-top {
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }

  .hero-tagline h1 {
    font-size: 1.8rem;
  }
}
