/* ======================================================
   Scriptnaam: css/style.css
   Huidige versie: 2.0
   Nieuwe versie: 2.1
   Datum aanpassing: 02-04-2026
   Aangepast in deze versie:
   - Hero-hoofdtitel verkleind voor betere verhouding tussen tekst en beeld.
   - Hero-typografie verfijnd zodat de eerste indruk rustiger en netter oogt.
   - Mobiele h1-grootte iets verder aangescherpt voor betere leesbaarheid.
   
   Versiehistorie:
   - 1.0 t/m 1.8 - Basisstyling en rebranding fases.
   - 1.9 - Eerste Light Mode aanzet.
   - 2.0 - Definitieve Light-Design update met split-screen hero en verfijnde koppen.
   - 2.1 - Hero-titel kleiner gemaakt voor betere balans in de lay-out.
   
   Belangrijke includes / gekoppelde scripts:
   - index.php
   - menu.php
   - footer.php
====================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600;700;800&display=swap');

:root{
  --custom-accent-color: #ffc107;
  --custom-accent-darker: #e0a800;
  --custom-accent-rgb: 255, 193, 7;

  --text-color-primary: #1a1a1a;
  --text-color-secondary: #444444;
  --text-color-light: #6c757d;

  --bg-color-white: #ffffff;
  --bg-color-light: #f8f9fa;
  --bg-color-soft: #ffffff;
  --border-color-light: #e9ecef;

  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;

  --shadow-soft: 0 4px 15px rgba(0,0,0,.03);
  --shadow-medium: 0 10px 30px rgba(0,0,0,.06);
}

html,body{
  overflow-x:hidden;
  scroll-behavior: smooth;
}

body{
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--text-color-secondary);
  background: var(--bg-color-white);
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6{
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--text-color-primary);
  letter-spacing: -0.02em;
}

/* Verfijnde koppen voor minder schreeuwerig effect */
h2 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-cinematic h1 {
  font-size: 2.55rem;
  line-height: 1.08;
  margin-bottom: 1.25rem;
  max-width: 9.5ch;
}

a{
  color: var(--text-color-primary);
  transition: all 0.2s ease;
}

.btn-warning {
  background-color: var(--custom-accent-color);
  border: none;
  color: #000;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.8rem 2.2rem;
  box-shadow: 0 4px 10px rgba(var(--custom-accent-rgb), 0.2);
}

.btn-outline-dark {
  border: 2px solid var(--text-color-primary);
  font-weight: 700;
  border-radius: 999px;
  padding: 0.8rem 2.2rem;
}

/* ======================================================
   Hero Section (Split Layout)
====================================================== */
.hero-cinematic {
  position: relative;
  background: var(--bg-color-white);
  padding: 80px 0;
  min-height: 520px;
}

.hero-cinematic-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,1) 30%, rgba(255,255,255,0.7) 100%);
  z-index: 1;
}

.hero-cinematic-content {
  position: relative;
  z-index: 2;
}

.hero-cinematic-inner {
  text-align: left;
}

.hero-eyebrow {
  border: 1px solid var(--custom-accent-color);
  padding: 4px 12px;
  font-size: 0.7rem;
  letter-spacing: 2px;
  border-radius: 4px;
}

/* Placeholder afbeelding styling */
.hero-cinematic img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}

/* ======================================================
   Components
====================================================== */
.usp-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-color-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--custom-accent-darker);
}

.seo-link-card {
  transition: transform 0.3s ease;
  background: #fff;
  border: 1px solid var(--border-color-light);
}

.seo-link-card:hover {
  transform: translateY(-5px);
  border-color: var(--custom-accent-color);
}

/* ======================================================
   Footer
====================================================== */
.site-footer {
  background: var(--bg-color-light);
  padding: 60px 0 20px;
  border-top: 1px solid var(--border-color-light);
}

/* ======================================================
   Responsive
====================================================== */
@media (max-width: 991.98px) {
  .hero-cinematic { padding: 40px 0; text-align: center; }
  .hero-cinematic-inner { text-align: center; }
  .hero-cinematic h1 { font-size: 2rem; max-width: none; }
  .hero-cinematic-overlay { background: rgba(255,255,255,0.9); }
  .hero-actions { display: flex; flex-direction: column; gap: 10px; align-items: center; }
  .btn-warning, .btn-outline-dark { width: 100%; max-width: 300px; }
}