@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@400;600;700&display=swap');

/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  --primary:       #1a5f6e;
  --secondary:     #2d9e8a;
  --accent:        #f97316;
  --accent-hover:  #e06010;
  --text:          #1a3a44;
  --bg:            #ffffff;
  --bg-light:      #f0f8f7;
  --overlay:       rgba(26, 95, 110, 0.40);
  --to-top-border: #7dd3c8;
  --white:         #ffffff;

  --font-heading: 'League Spartan', sans-serif;
  --font-body:    system-ui, -apple-system, sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.25rem;
  --space-xl:  3.375rem;
  --gap-cards: 1.25em;
  --gap-cols:  2em;
  --container: 1200px;

  --radius-btn:   9999px;
  --radius-card:  12px;
  --radius-input: 7px;

  --shadow-card: 6px 6px 9px rgba(0, 0, 0, 0.15);
}

/* ============================================================
   SKIP TO CONTENT
============================================================ */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  z-index: 9999;
  padding: 0.6rem 1.25rem;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  border-radius: 0 0 var(--radius-btn) var(--radius-btn);
  text-decoration: none;
  transition: top 0.15s;
}
.skip-to-content:focus {
  top: 0;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}
img { display: block; max-width: 100%; }
a { color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--primary);
  line-height: 1.2;
}
h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.section {
  padding: var(--space-xl) var(--space-sm);
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-block;
  border-radius: var(--radius-btn);
  padding: 0.75rem 2rem;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease;
}
.btn-primary,
.btn-cta {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover,
.btn-cta:hover { background: var(--accent-hover); }
.btn-cta {
  padding: 0.6rem 1.4rem;
  font-size: 1rem;
}
.btn-outline {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
  padding: 0.55rem 1.4rem;
  font-size: 0.9375rem;
  margin-top: var(--space-sm);
}
.btn-outline:hover { background: var(--secondary); color: var(--white); }

/* ============================================================
   NAVIGATION
============================================================ */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--space-lg);
  height: 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
}
.logo span { color: var(--secondary); }
.nav-links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}
.nav-links > li {
  position: relative;
}
.nav-links > li > a {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav-links > li > a:hover { color: var(--accent); }
.nav-links > li > a.active { color: var(--accent); font-weight: 600; }
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-card);
  padding: 0.5rem 0;
  padding-top: 1rem;
  min-width: 210px;
  z-index: 200;
}
.submenu li a {
  display: block;
  padding: 0.5rem 1.25rem;
  color: var(--primary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease, background 0.2s ease;
}
.submenu li a:hover { color: var(--accent); background: var(--bg-light); }
.submenu li a.active { color: var(--accent); background: var(--bg-light); font-weight: 600; }
.nav-links > li:hover .submenu { display: block; }
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--primary);
  line-height: 1;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    padding: var(--space-md);
    box-shadow: var(--shadow-card);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links > li { width: 100%; border-bottom: 1px solid var(--bg-light); }
  .nav-links > li > a { display: block; padding: 0.75rem 0; }
  .submenu { position: static; box-shadow: none; padding: 0 0 0 1rem; }
  .nav-links > li:hover .submenu { display: block; }
  .hamburger { display: block; }
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 55vh;
  background-image: url('../img/hero/hero-startpagina.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
}
.hero-content {
  position: relative;
  text-align: center;
  color: white;
  padding: var(--space-xl) var(--space-md);
  max-width: 720px;
}
.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin-bottom: var(--space-lg);
  opacity: 0.94;
  font-family: var(--font-heading);
  font-weight: 400;
}

/* ============================================================
   INTRO
============================================================ */
.intro {
  background: var(--bg);
  text-align: center;
}
.intro p {
  max-width: 680px;
  margin: var(--space-md) auto;
  font-size: 1.05rem;
}
.social-links {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  margin-top: var(--space-md);
}
.social-links a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.35rem 0.9rem;
  border: 2px solid var(--secondary);
  border-radius: var(--radius-btn);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.social-links a:hover {
  color: var(--white);
  background: var(--secondary);
}

/* ============================================================
   USP GRID
============================================================ */
.usps { background: var(--bg-light); text-align: center; }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-cols);
  margin-top: var(--space-lg);
}
.usp-item { padding: var(--space-md); }
.usp-icon {
  font-size: 2.75rem;
  margin-bottom: var(--space-sm);
  line-height: 1;
}
.usp-item h3 { margin-bottom: var(--space-xs); }
.usp-item p { font-size: 0.9375rem; color: var(--text); }
@media (max-width: 768px) { .usp-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CARDS
============================================================ */
.card,
.specialty-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.card:hover,
.specialty-card:hover {
  transform: translateY(-3px);
  box-shadow: 8px 10px 18px rgba(0,0,0,0.18);
}
.card img { width: 100%; object-fit: cover; display: block; }
.card-img-link { display: block; overflow: hidden; flex-shrink: 0; }
.card-img-link img { transition: transform 0.3s ease; }
.card-img-link:hover img { transform: scale(1.04); }
.card-body { padding: var(--space-md); display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: var(--space-xs); }
.card-body p { font-size: 0.9375rem; color: var(--text); flex: 1; }
.card-body .btn-outline { align-self: flex-start; }

.link-more {
  display: inline-block;
  margin-top: var(--space-sm);
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}
.link-more:hover { color: var(--accent); }

/* Dive Types – 3 kaarten */
.dive-types { background: var(--bg); }
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-cards);
  margin-top: var(--space-lg);
}
.cards-3 .card img { height: 240px; }
@media (max-width: 900px) { .cards-3 { grid-template-columns: 1fr; } }
@media (min-width: 601px) and (max-width: 900px) { .cards-3 { grid-template-columns: repeat(2, 1fr); } }

/* Choose Your Dive – 4 portrait-kaarten */
.dive-options { background: var(--bg-light); }
.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-cards);
  margin-top: var(--space-lg);
}
.cards-4 .card img { height: 300px; }
@media (max-width: 900px) { .cards-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cards-4 { grid-template-columns: 1fr; } }

/* ============================================================
   TARIEVEN
============================================================ */
.tarieven { background: var(--bg); }
.tarieven-tekst p { margin-bottom: var(--space-md); }
.tarief-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
  padding-left: 0;
}
.tarief-list li { color: var(--text); font-size: 1rem; }
.tarief-list li::before {
  content: "✓ ";
  color: var(--secondary);
  font-weight: 700;
}

/* ============================================================
   FORMULIER
============================================================ */
.form-section { background: var(--bg-light); }
.form-section > .container > p {
  max-width: 600px;
  margin-bottom: var(--space-lg);
}
.contact-form {
  max-width: 760px;
  margin: var(--space-lg) auto 0;
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-cols);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: var(--space-md);
}
.form-group label {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9375rem;
  font-family: var(--font-heading);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid rgba(26,95,110,0.4);
  border-radius: var(--radius-input);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text);
  outline: none;
  background: var(--white);
  transition: border-color 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
}
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}
.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 400;
  font-family: var(--font-body);
  cursor: pointer;
  color: var(--text);
}
.form-error {
  color: #c0392b;
  font-size: 0.875rem;
  min-height: 1.2rem;
}
.form-general-error {
  color: #c0392b;
  background: rgba(192,57,43,0.08);
  border-radius: var(--radius-input);
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  margin-bottom: var(--space-sm);
}
.btn-primary:disabled,
.btn-primary[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}
.form-success-card {
  max-width: 760px;
  margin: var(--space-lg) auto 0;
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  text-align: center;
}
.form-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(45,158,138,0.15);
  color: var(--secondary);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}
.form-success-card h3 {
  color: var(--primary);
  margin-bottom: var(--space-sm);
}
.form-success-card p {
  color: var(--text);
  margin-bottom: var(--space-sm);
}
.form-success-card a { color: var(--secondary); }
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: var(--space-md); }
}

/* ============================================================
   FAQ
============================================================ */
.faq { background: var(--bg); }
.accordion {
  max-width: 800px;
  margin: var(--space-lg) auto 0;
}
.accordion-item {
  border-bottom: 1px solid rgba(26,95,110,0.18);
}
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: var(--space-md) 0;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
  gap: var(--space-sm);
}
.accordion-trigger:hover { color: var(--accent); }
.acc-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  line-height: 1;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion-content p {
  padding: 0 0 var(--space-md);
  color: var(--text);
  line-height: 1.7;
}
.accordion-item.open .acc-icon { transform: rotate(45deg); }

/* ============================================================
   NEWSLETTER
============================================================ */
.newsletter {
  background: var(--primary);
  color: white;
  text-align: center;
}
.newsletter h2 { color: white; }
.newsletter p { opacity: 0.9; max-width: 540px; margin: var(--space-sm) auto 0; }
.newsletter-form {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}
.newsletter-form input {
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-btn);
  border: none;
  font-size: 1rem;
  min-width: 280px;
  outline: none;
  font-family: var(--font-body);
}
.newsletter-form input:focus { outline: 2px solid var(--accent); }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--white);
  border-top: 1px solid rgba(26,95,110,0.12);
  padding: var(--space-xl) var(--space-sm) 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-cols);
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}
.footer-col > p:not(.footer-handelsnaam) {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: var(--space-sm);
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-col li {
  color: var(--text);
  font-size: 0.9375rem;
}
.footer-col a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--accent); }
.footer-handelsnaam {
  font-size: 0.68rem;
  line-height: 1.4;
  color: rgba(26,95,110,0.5);
  border: 1px solid rgba(26,95,110,0.2);
  border-radius: 6px;
  padding: 0.5rem 0.65rem;
  margin-bottom: var(--space-sm);
}
.footer-social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--secondary);
  border: 2px solid var(--secondary);
  border-radius: 50%;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.footer-social a svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}
.footer-social a:hover {
  color: white;
  background: var(--secondary);
  border-color: var(--secondary);
}
.footer-bottom {
  text-align: center;
  padding: var(--space-lg) 0 var(--space-md);
  margin-top: var(--space-xl);
  border-top: 1px solid rgba(26,95,110,0.1);
  font-size: 0.875rem;
  color: var(--text);
}
.footer-bottom a,
.footer-bottom .cookie-reset {
  color: var(--secondary);
  text-decoration: none;
}
.footer-bottom a:hover,
.footer-bottom .cookie-reset:hover { color: var(--accent); }
.footer-bottom .cookie-reset {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   TERUG NAAR BOVEN
============================================================ */
#toTop {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  background: var(--primary);
  color: white;
  border: 2px solid transparent;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 1.25rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99;
  transition: border-color 0.2s ease, background 0.2s ease;
  line-height: 1;
}
#toTop:hover { border-color: var(--to-top-border); background: var(--text); }

/* ============================================================
   SECTION HEADING HELPER
============================================================ */
.section-header { text-align: center; margin-bottom: 0; }
.section-header p { max-width: 600px; margin: var(--space-sm) auto 0; }

/* ============================================================
   BREADCRUMB
============================================================ */
.breadcrumb { font-size: 0.875rem; color: var(--text); opacity: 0.7; margin-bottom: var(--space-md); }
.breadcrumb a { color: var(--secondary); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span::before { content: " › "; }

/* ============================================================
   PAGINA HERO (geen foto, gekleurde achtergrond)
============================================================ */
.page-hero { background: var(--primary); color: white; padding: var(--space-xl) var(--space-sm); text-align: center; }
.page-hero h1 { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: white; }
.page-hero p { font-size: 1.125rem; opacity: 0.9; margin-top: var(--space-sm); max-width: 640px; margin-left: auto; margin-right: auto; }

/* ============================================================
   CONTENT PAGINA
============================================================ */
.content-page { padding: var(--space-xl) var(--space-sm); background: var(--bg); }
.content-page .container > p { max-width: 760px; line-height: 1.8; }
.content-page p + p { margin-top: var(--space-sm); }

/* ============================================================
   PAGINA INTRO MET ZIJBALK
============================================================ */
.page-intro-grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: var(--gap-cols);
  align-items: start;
  margin-bottom: var(--space-lg);
}
.page-intro-grid > div > p { max-width: none; line-height: 1.8; margin-bottom: var(--space-sm); }
.page-intro-grid > div > h2 { margin-bottom: var(--space-sm); }

.ssi-sidebar {
  background: var(--accent);
  border-radius: var(--radius-card);
  padding: var(--space-lg);
  color: var(--white);
  position: sticky;
  top: calc(80px + var(--space-sm));
}
.ssi-sidebar h3 { color: var(--white); font-size: 1.2rem; margin-bottom: var(--space-sm); }
.ssi-sidebar p { font-size: 0.9rem; line-height: 1.65; opacity: 0.96; margin-bottom: var(--space-md); }
.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--accent);
  border-radius: var(--radius-btn);
  padding: 0.55rem 1.4rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-white:hover { background: var(--accent-hover); color: var(--white); }

@media (max-width: 860px) {
  .page-intro-grid { grid-template-columns: 1fr; }
  .ssi-sidebar { position: static; }
}

/* ============================================================
   INFO-BLOKJES (cards zonder afbeelding)
============================================================ */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--gap-cards); margin-top: var(--space-lg); }
.info-grid--2col { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 600px) { .info-grid--2col { grid-template-columns: 1fr; } }
.info-card { background: var(--white); border-radius: var(--radius-card); box-shadow: var(--shadow-card); padding: var(--space-lg); }
.info-card h3 { color: var(--primary); margin-bottom: var(--space-sm); }
.info-card p { font-size: 0.9375rem; color: var(--text); line-height: 1.7; }
.info-card--brandstore { border-top: 3px solid var(--secondary); }
.brandstore-logo { height: 36px; width: auto; display: block; margin-bottom: var(--space-sm); object-fit: contain; }

/* ============================================================
   LIGHTBOX
============================================================ */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
#lightbox.active { display: flex; }
#lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  cursor: default;
}
#lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
}
#lightbox-close:hover { opacity: 1; }
a.lightbox { cursor: zoom-in; display: block; }
a.lightbox img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-card); box-shadow: var(--shadow-card); }

/* ============================================================
   SSI DIVE CENTER BLOK (divestore sidebar)
============================================================ */
.ssi-divecenter-blok {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-card);
  padding: var(--space-md);
}
.ssi-divecenter-blok h3 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}
.ssi-divecenter-blok p {
  font-size: 0.875rem;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0;
}

/* ============================================================
   BLUE OCEANS BLOK
============================================================ */
.blue-oceans-blok {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--gap-cols);
  align-items: center;
  background: var(--secondary);
  color: var(--white);
  border-radius: var(--radius-card);
  padding: var(--space-lg);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-xl);
}
.blue-oceans-blok h2 { color: var(--white); margin-bottom: var(--space-sm); }
.blue-oceans-blok p { opacity: 0.92; line-height: 1.7; font-size: 0.9375rem; }
.blue-oceans-blok p + p { margin-top: var(--space-sm); }
.blue-oceans-blok .block-label,
.blue-oceans-blok .zeeland-package-label { margin-bottom: var(--space-xs); color: #ffd08a; }
.blue-oceans-poster { border-radius: var(--radius-card); overflow: hidden; }
.blue-oceans-poster img { border-radius: var(--radius-card); box-shadow: 0 4px 20px rgba(0,0,0,0.25); }
@media (max-width: 700px) {
  .blue-oceans-blok { grid-template-columns: 1fr; }
  .blue-oceans-poster { order: -1; max-width: 220px; }
}

/* ============================================================
   ZEELAND PACKAGE BLOK
============================================================ */
.zeeland-package-block {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-card);
  padding: var(--space-lg);
  margin-top: var(--space-xl);
}
.block-label,
.zeeland-package-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: var(--space-xs);
}
.zeeland-package-block h2 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}
.zeeland-package-block > p {
  max-width: 680px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: var(--space-md);
}
.zeeland-package-specialties {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}
.zeeland-package-specialty {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.zeeland-package-specialty strong {
  color: var(--accent);
  font-size: 1rem;
}
.zeeland-package-specialty span {
  font-size: 0.875rem;
  opacity: 0.85;
  line-height: 1.5;
}
.zeeland-package-footer {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.zeeland-package-prijs {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
}
.zeeland-package-prijs em {
  font-size: 0.875rem;
  font-weight: 400;
  opacity: 0.75;
  font-style: normal;
}

/* ============================================================
   CALLOUT BLOKKEN (tip, waarschuwing, etc.)
============================================================ */
.callout-block {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  border: 2px solid;
  border-radius: var(--radius-card);
  padding: var(--space-md);
  margin-top: var(--space-md);
}
.callout-block--tip     { background: #eef7f4; border-color: var(--secondary); }
.callout-block--warning { background: #fff8ec; border-color: var(--accent); }
.callout-block-icon { font-size: 1.75rem; flex-shrink: 0; line-height: 1; }
.callout-block-body h3 { margin-bottom: var(--space-xs); }
.callout-block--tip     .callout-block-body h3 { color: var(--secondary); }
.callout-block--warning .callout-block-body h3 { color: var(--accent); }
.callout-block-body p { font-size: 0.9375rem; line-height: 1.7; margin: 0; }
.callout-block-body .content-list { margin: 0; }

/* ============================================================
   CTA-BLOK
============================================================ */
.cta-block { background: var(--bg-light); border-radius: var(--radius-card); padding: var(--space-lg); text-align: center; margin-top: var(--space-xl); }
.cta-block h3 { color: var(--primary); margin-bottom: var(--space-sm); }

/* ============================================================
   SECTIE-SCHEIDER
============================================================ */
.section-divider { border: none; border-top: 1px solid rgba(26,95,110,0.12); margin: var(--space-xl) 0; }

/* ============================================================
   WHATSAPP-WIDGET
============================================================ */
.wapp-chat-btn {
  position: fixed; bottom: 1.5em; right: 1.5em;
  background-color: #25d366; color: #ffffff;
  display: flex; align-items: center; gap: 0.5em;
  padding: 0.6em 1.2em; border-radius: 8px;
  min-height: 44px; box-shadow: 0 0.3em 0.6em rgba(0,0,0,0.2);
  z-index: 1000; text-decoration: none; font-weight: 600;
  font-family: var(--font-body); font-size: 0.9375rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wapp-chat-btn:hover { transform: translateY(-2px); box-shadow: 0 0.5em 1em rgba(0,0,0,0.25); }
.wapp-icon { width: 24px; height: 24px; flex-shrink: 0; }

/* ============================================================
   LIJST STIJLEN VOOR CONTENT PAGINA'S
============================================================ */
.content-list {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.content-list li {
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text);
}
.content-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

/* ============================================================
   CONTACT/ADRES BLOK
============================================================ */
.contact-block {
  background: var(--bg-light);
  border-radius: var(--radius-card);
  padding: var(--space-lg);
  margin-top: var(--space-lg);
}
.contact-block h3 { color: var(--primary); margin-bottom: var(--space-sm); }
.contact-block p { font-size: 0.9375rem; margin-bottom: 0.35rem; }
.contact-block a { color: var(--secondary); text-decoration: none; }
.contact-block a:hover { color: var(--accent); }

/* ============================================================
   ACCOMMODATIE-KAARTEN MET AFBEELDING
============================================================ */
.info-card-img { padding: 0; }
.info-card-img img { width: 100%; height: 200px; object-fit: cover; display: block;
  border-radius: var(--radius-card) var(--radius-card) 0 0; }
.info-card-img .card-body { padding: var(--space-md); }
.info-card-placeholder { opacity: 0.7; }
.card-tag { font-size: 0.8125rem; font-weight: 600; color: var(--secondary);
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: var(--space-xs); }

/* ============================================================
   FULL-WIDTH TUSSENSECTIE (geen tekst, puur beeld)
============================================================ */
.fullwidth-image {
  width: 100%;
  height: 420px;
  background-image: url('../img/fullwidth/tussensectie.jpg');
  background-size: cover;
  background-position: center;
  display: block;
}
.fullwidth-image--grevelingen,
.fullwidth-image--oosterschelde,
.fullwidth-image--veerse-meer,
.fullwidth-image--divestore,
.fullwidth-image--bd-grevelingen,
.fullwidth-image--bd-oosterschelde {
  height: 300px;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-lg);
}
.fullwidth-image + h2 { margin-top: 0; }
.fullwidth-image--grevelingen        { background-image: url('../img/zeeland/grevelingen.jpg'); }
.fullwidth-image--oosterschelde      { background-image: url('../img/zeeland/oosterschelde.jpg'); }
.fullwidth-image--veerse-meer        { background-image: url('../img/zeeland/veerse-meer.jpg'); }
.fullwidth-image--divestore          { background-image: url('../img/zeeland/divestore-de-grevelingen.jpg'); }
.fullwidth-image--bd-grevelingen     { background-image: url('../img/zeeland/grevelingen-duikplaats-dreischor-gemaal.jpg'); }
.fullwidth-image--bd-oosterschelde   { background-image: url('../img/zeeland/oosterschelde-duikplaats-zeelandbrug.jpg'); }

/* ============================================================
   TARIEVEN MET AFBEELDING RECHTS
============================================================ */
.tarieven-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-cols);
  align-items: stretch;
}
.tarieven-inner img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  display: block;
}
.tarieven-inner img.img-natural {
  height: auto;
  min-height: unset;
  object-fit: unset;
  border-radius: 0;
  box-shadow: none;
}
@media (max-width: 900px) {
  .fullwidth-image { height: 260px; }
  .tarieven-inner { grid-template-columns: 1fr; }
  .tarieven-inner img { min-height: 240px; height: auto; }
}

/* ============================================================
   PRIJSLIJST
============================================================ */
.prijslijst-sectie { margin-bottom: var(--space-lg); }
.prijslijst-sectie > p { max-width: 760px; margin-bottom: var(--space-md); }

.prijslijst-tabel {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--space-md);
  font-size: 0.9375rem;
}
.prijslijst-tabel th {
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: left;
  padding: 0.65rem 1rem;
}
.prijslijst-tabel th:last-child { text-align: right; }
.prijslijst-tabel td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(26,95,110,0.1);
  color: var(--text);
  vertical-align: middle;
}
.prijslijst-tabel tr:nth-child(even) td { background: var(--bg-light); }
.prijslijst-tabel tr:last-child td { border-bottom: none; }
.prijslijst-tabel td.prijs {
  text-align: right;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}
.prijslijst-tabel td.duiken {
  color: var(--secondary);
  font-size: 0.875rem;
  white-space: nowrap;
}
.prijslijst-tabel td.pakket-inhoud {
  font-size: 0.875rem;
  color: var(--text);
}
.prijs-pp {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text);
  opacity: 0.7;
}

.prijslijst-noot {
  background: var(--bg-light);
  border-left: 3px solid var(--secondary);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  padding: var(--space-md) var(--space-lg);
  margin-top: var(--space-lg);
}
.prijslijst-noot p { font-size: 0.9375rem; margin-bottom: 0.5rem; }
.prijslijst-noot p:last-child { margin-bottom: 0; }

@media (max-width: 680px) {
  .prijslijst-tabel thead th.col-duiken,
  .prijslijst-tabel td.duiken { display: none; }
  .prijslijst-tabel td.pakket-inhoud { font-size: 0.8125rem; }
}

/* ============================================================
   PARTNER BLOK (Diving Nomads e.a.)
============================================================ */
.partner-blok {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-lg);
  align-items: center;
  background: var(--bg-light);
  border-radius: var(--radius-card);
  border: 1.5px solid rgba(26,95,110,0.15);
  padding: var(--space-lg);
  margin-top: var(--space-lg);
}
.partner-blok-logo {
  width: 140px;
  flex-shrink: 0;
}
.partner-blok-logo img {
  width: 100%;
  height: auto;
  display: block;
}
.partner-blok-tekst h3 {
  color: var(--primary);
  margin-bottom: var(--space-xs);
}
.partner-blok-tekst p {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}
.partner-blok-tekst p:last-child { margin-bottom: 0; }
@media (max-width: 600px) {
  .partner-blok { grid-template-columns: 1fr; }
  .partner-blok-logo { width: 110px; }
}

/* ============================================================
   SPECIALTY KAARTEN (met SSI c-card afbeelding)
============================================================ */
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--gap-cards);
  margin-top: var(--space-lg);
}
.specialty-ccard {
  background: var(--bg-light);
  overflow: hidden;
  flex-shrink: 0;
}
.specialty-ccard img {
  width: 100%;
  height: auto;
  aspect-ratio: 800 / 508;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}
.specialty-card:hover .specialty-ccard img { transform: scale(1.03); }
.specialty-body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.specialty-body h3 { margin-bottom: var(--space-xs); }
.specialty-body p { font-size: 0.9375rem; color: var(--text); line-height: 1.7; flex: 1; }

/* Uitgelichte specialties — oranje accent */
.specialty-card--featured {
  border-top: 4px solid var(--accent);
}
.specialty-card--featured .specialty-body h3 {
  color: var(--accent);
}

/* Blue Oceans — blauwgroene achtergrond */
.specialty-card--blue-oceans {
  background: var(--secondary);
}
.specialty-card--blue-oceans .specialty-body h3 {
  color: var(--white);
}
.specialty-card--blue-oceans .specialty-body p {
  color: rgba(255, 255, 255, 0.93);
}
.specialty-card--blue-oceans .specialty-body strong {
  color: var(--white);
}

/* ============================================================
   DOCUMENTEN KAARTEN
============================================================ */
.doc-card { display: flex; flex-direction: column; }
.doc-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: var(--space-sm);
}
.doc-card h3 { margin-bottom: var(--space-xs); }
.doc-card p { flex: 1; font-size: 0.9375rem; color: var(--text); }
.doc-card .btn-outline { align-self: flex-start; margin-top: var(--space-md); }

/* ============================================================
   COOKIE CONSENT BANNER
============================================================ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--primary);
  color: #fff;
  padding: var(--space-sm) var(--space-md);
  display: none;
  align-items: center;
  gap: var(--space-md);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
}
#cookie-banner.visible { display: flex; }
#cookie-banner p {
  margin: 0;
  font-size: 0.875rem;
  flex: 1;
  color: rgba(255,255,255,0.9);
}
#cookie-banner p a { color: #fff; text-decoration: underline; }
.cookie-banner-actions {
  display: flex;
  gap: var(--space-xs);
  flex-shrink: 0;
  align-items: center;
}
#cookie-accept {
  font-size: 0.875rem;
  padding: 0.4rem 1rem;
}
#cookie-decline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-btn);
  padding: 0.4rem 1rem;
  font-size: 0.875rem;
  cursor: pointer;
  font-family: var(--font-body);
  white-space: nowrap;
}
#cookie-decline:hover { border-color: #fff; color: #fff; }
@media (max-width: 600px) {
  #cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-banner-actions { width: 100%; justify-content: flex-start; }
}

/* ============================================================
   INSTRUCTOR SECTION
============================================================ */
.instructor-section {
  background: var(--bg-light);
}
.instructor-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--gap-cols);
  align-items: start;
}
.instructor-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: var(--shadow-card);
}
.instructor-bio h2 {
  margin-bottom: 0.25rem;
}
.instructor-title {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}
.instructor-bio p + p {
  margin-top: var(--space-sm);
}
@media (max-width: 600px) {
  .instructor-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .instructor-photo {
    margin: 0 auto;
  }
}
