/* ========================================
   MAZE Trainingen – Nieuwe Stijl (2025)
  ======================================= */

   :root {
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Space Grotesk', var(--font-sans);
    
    --color-primary: #ff6b35;      /* oranje accent */
    --color-primary-dark: #e55a2b;
    --color-secondary: #4361ee;    /* blauw */
    --color-bg: #ffffff;
    --color-bg-light: #f8f9fa;
    --color-text: #1a1a1a;
    --color-muted: #555;
    --color-border: #e2e8f0;
    
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.25s ease;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  }
  
  /* Reset & basis */
  *, *::before, *::after { box-sizing: border-box; }
  html { font-family: var(--font-sans); font-size: 16px; line-height: 1.6; color: var(--color-text); }
  body { margin: 0; background: var(--color-bg); }
  img { max-width: 100%; height: auto; display: block; }
  a { color: inherit; text-decoration: none; }
  ul { padding: 0; margin: 0; list-style: none; }
  h1, h2, h3 { margin: 0 0 0.5em; font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
  p { margin: 0 0 1em; }
  .muted { color: var(--color-muted); font-size: 0.95rem; }
  .small { font-size: 0.85rem; }
  .text-center { text-align: center; }
  
  /* Layout helpers */
  .container {
    width: min(100%, 1200px);
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  .grid-2 {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr;
  }
  @media (min-width: 768px) {
    .grid-2 { grid-template-columns: 1fr 1fr; }
  }
  
  /* Header */
  .site-header {
    background: white;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-primary);
  }
  .logo-img { height: 46px; }
  .logo-text { font-family: var(--font-heading); }
  
  .nav ul {
    display: flex;
    gap: 2rem;
    font-weight: 600;
  }
  .nav a {
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
  }
  .nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
  }
  .nav a:hover, .nav a.active {
    color: var(--color-primary);
  }
  .nav a:hover::after, .nav a.active::after {
    width: 100%;
  }
  
  .mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  /* Buttons */
  .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
  }
  .btn-primary {
    background: var(--color-primary);
    color: white;
    border: 2px solid var(--color-primary);
  }
  .btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-1px);
  }
  .btn-outline {
    background: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
  }
  .btn-outline:hover {
    background: var(--color-secondary);
    color: white;
  }
  .btn-lg { padding: 1rem 2rem; font-size: 1.1rem; }
  
  /* Hero */
  .hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, #f0f4ff 0%, #fff8f5 100%);
    position: relative;
    overflow: hidden;
  }
  .hero-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
    align-items: center;
  }
  @media (min-width: 992px) {
    .hero-grid { grid-template-columns: 1fr 1fr; }
  }
  .hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #1a1a1a, var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.5;
  }
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .hero-visual {
    position: relative;
    text-align: center;
  }
  .maze-pattern {
    width: 220px;
    height: 220px;
    margin: 0 auto 1.5rem;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M10 10h30v30H10zM50 10h30v30H50zM90 10h30v30H90zM130 10h30v30h-30zM170 10h20v20h-20zM10 50h30v30H10zM50 50h30v30H50zM90 50h30v30H90zM130 50h30v30h-30zM170 50h20v20h-20zM10 90h30v30H10zM50 90h30v30H50zM90 90h30v30H90zM130 90h30v30h-30zM170 90h20v20h-20zM10 130h30v30H10zM50 130h30v30H50zM90 130h30v30H90zM130 130h30v30h-30zM170 130h20v20h-20zM10 170h30v20H10zM50 170h30v20H50zM90 170h30v20H90zM130 170h30v20h-30zM170 170h20v20h-20z" fill="none" stroke="%23ff6b35" stroke-width="3" opacity="0.15"/></svg>') center/contain no-repeat;
    animation: pulse 6s infinite ease-in-out;
  }
  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
  }
  .hero-visual .tagline {
    font-weight: 600;
    color: var(--color-primary);
    margin: 0.25rem 0;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: static;
  }
  .subtext {
    font-size: 1rem;
    max-width: 380px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  /* Sections */
  .section {
    padding: 4rem 0;
  }
  .bg-light {
    background: var(--color-bg-light);
  }
  
  /* Intro */
  .keypoints ul {
    display: grid;
    gap: 1rem;
  }
  .keypoints li {
    background: white;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--color-primary);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
  }
  
  /* Signalen */
  .signals li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--color-border);
  }
  .signals li:last-child { border: none; }
  
  /* Varianten */
  .variants-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin: 2rem 0;
  }
  .variant-card {
    background: white;
    padding: 1.75rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--color-border);
  }
  .variant-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
  .variant-card h3 {
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
  }
  
  /* Domeinen */
  .domains-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;   
    margin: 2rem 0;
  }
  
  @media (min-width: 640px) {
  .domains-grid {
    grid-template-columns: repeat(2, 1fr);   /* vanaf tablet: 2 kolommen */
  }
  }
  .domain-item {
    display: flex;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 5px solid var(--color-primary);
  }
  .domain-item:hover {
    box-shadow: var(--shadow);
    transform: translateX(4px);
  }
  .domain-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--color-primary);
    color: white;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 1.1rem;
  }
  .domain-item h3 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    color: var(--color-text);
  }
  .domain-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-muted);
  }
  
  /* CTA */
  .cta {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    text-align: center;
  }
  .cta h2 { color: white; }
  .cta .muted { color: rgba(255,255,255,0.9); }
  .cta .btn-primary {
    background: white;
    color: var(--color-primary);
    border-color: white;
  }
  .cta .btn-primary:hover {
    background: #fff;
    color: var(--color-primary-dark);
    transform: translateY(-2px);
  }
  
  /* Footer */
  .site-footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 2rem 0;
    font-size: 0.9rem;
  }
  .footer-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .site-footer a {
    color: #fff;
    text-decoration: underline;
  }
  .site-footer a:hover { color: var(--color-primary); }
  
  /* Mobile menu (JS-vrij met checkbox trick) */
  @media (max-width: 768px) {
    .nav { display: none; }
    .mobile-menu-toggle { display: block; }
    
    /* Checkbox hack */
    input[type="checkbox"] { display: none; }
    #mobile-menu:checked ~ .nav {
      display: flex;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: white;
      flex-direction: column;
      padding: 1rem 1.5rem;
      box-shadow: var(--shadow);
      border-top: 1px solid var(--color-border);
    }
    #mobile-menu:checked ~ .nav ul { flex-direction: column; gap: 1rem; }
  }
  
  /* Responsive hero text */
  @media (max-width: 640px) {
    .hero h1 { font-size: 2.2rem; }
    .lead { font-size: 1.1rem; }
    .hero-actions { flex-direction: column; }
    .btn { width: 100%; }
  }

  /* === theorie SPECIFIEKE STIJLEN === */

/* TOC Grid */
.toc-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin: 2rem 0;
}
.toc-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 4px solid var(--color-primary);
}
.toc-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.toc-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-primary);
  color: white;
  font-weight: 700;
  border-radius: 50%;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.toc-item h3 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
}
.toc-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* Domein secties */
.domain-section {
  scroll-margin-top: 100px;
}
.domain-tag {
  font-size: 0.8rem;
  background: var(--color-primary);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-left: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.circuits {
  list-style: none;
  padding: 0;
}
.circuits li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.circuits li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

/* Oranje cirkel zonder nummer – puur als visueel accent */
.domain-circle {
  display: block;
  width: 36px;
  height: 36px;
  background: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 1rem;
}

/* Zorg dat de items netjes naast elkaar blijven staan */
.domain-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.domain-item > div {
  flex: 1;
}

/* Responsief: op kleine schermen onder elkaar met de cirkel erboven */
@media (max-width: 640px) {
  .domain-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .domain-circle {
    margin: 0 0 0.75rem 0;
  }
}

/* === CONTACT ZONDER FORMULIER === */

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  text-align: center;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.contact-list li {
  margin-bottom: 1.5rem;
}

.contact-list strong {
  display: block;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.checklist li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.2rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

@media (max-width: 640px) {
  .cta-actions {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
}

/* === VOOR-SCHOLEN.HTML SPECIFIEKE STIJLEN === */

.steps-grid,
.costs-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin: 2rem 0;
}

.step-card,
.cost-card {
  background: white;
  padding: 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}
.step-card:hover,
.cost-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.step-number {
  display: block;
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 50%;
  margin: 0 auto 1rem;
  line-height: 40px;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: white;
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
  overflow: hidden;
}
.schedule-table th,
.schedule-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.schedule-table th {
  background: var(--color-primary);
  color: white;
  font-weight: 600;
}
.schedule-table tr:hover {
  background: #fff8f5;
}
@media (max-width: 640px) {
  .schedule-table,
  .schedule-table thead,
  .schedule-table tbody,
  .schedule-table th,
  .schedule-table td,
  .schedule-table tr {
    display: block;
  }
  .schedule-table th {
    display: none;
  }
  .schedule-table tr {
    margin-bottom: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
  }
  .schedule-table td {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1rem;
  }
  .schedule-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--color-primary);
  }
}

/* === MAZE VISUELE IDENTITEIT === */

/* 1. Hero background pattern */
.hero-bg-pattern {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(67, 97, 238, 0.05) 0%, transparent 50%),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M10 10h30v30H10zM50 10h30v30H50zM90 10h30v30H90zM130 10h30v30h-30zM170 10h20v20h-20zM10 50h30v30H10zM50 50h30v30H50zM90 50h30v30H90zM130 50h30v30h-30zM170 50h20v20h-20zM10 90h30v30H10zM50 90h30v30H50zM90 90h30v30H90zM130 90h30v30h-30zM170 90h20v20h-20zM10 130h30v30H10zM50 130h30v30H50zM90 130h30v30H90zM130 130h30v30h-30zM170 130h20v20h-20zM10 170h30v20H10zM50 170h30v20H50zM90 170h30v20H90zM130 170h30v20h-30zM170 170h20v20h-20z" fill="none" stroke="%23ff6b35" stroke-width="1.5" opacity="0.08"/></svg>') 
    center/800px repeat;
  pointer-events: none;
  z-index: 0;
}
.hero-grid { position: relative; z-index: 1; }

/* === JOUW DOOLHOF LOGO – SUBTIEL === */

/* 1. Hero watermerk */
.maze-logo-watermark {
  display: block;          /* geen flex-container meer */
  width: 300px;            /* kies jouw formaat */
  max-width: 100%;
  height: auto;
  margin: 0 auto 0.75rem;  /* centreert het logo boven de tagline */
  opacity: 0.9;
  pointer-events: none;
}

/* Kleine apparaten: nog kleiner */
@media (max-width: 480px) {
  .maze-logo-watermark img,
  .maze-logo-watermark svg {
    width: 44px;
  }
}

/* Grotere schermen: iets groter */
@media (min-width: 992px) {
  .maze-logo-watermark img,
  .maze-logo-watermark svg {
    width: 72px;
  }
}
.hero-visual { position: relative; }

/* 2. Sectie-icoon */
.section-icon {
  width: 36px; height: 36px;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}
.section-icon svg {
  width: 100%; height: 100%;
  stroke: currentColor;
  fill: none;
}

/* Ruimte rond sectiekoppen (verhoogt afstand tussen bijv. 2 → 3 en 4 → 5) */
.section h2 {
  margin: 2rem 0 1rem; /* meer ruimte boven en onder elke h2 */
}

/* Zorg dat paragrafen/ul's onder h2 ook genoeg afstand hebben */
.section p,
.section ul {
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 640px) {
  .section h2 {
    margin: 1.25rem 0 0.75rem;
  }
}

/* 3. Footer logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ccc;
  font-weight: 600;
}
.footer-maze {
  width: 40px; height: 40px;
  stroke: #666;
  opacity: 0.5;
}
.variant-watermark {
  position: absolute;
  top: 50%; left: 50%;
  width: 180px; height: 180px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.1;
  z-index: 0;
}

/* === VARIANT TEGELS – DOOLHOF OVER HELE TEGEL === */

.variants-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin: 2rem 0;
}

.variant-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--color-border);
  height: 260px;
}

.variant-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

/* Achtergrond: doolhof over hele tegel */
.variant-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;     /* ← GEEN cover, maar contain */
  object-position: center; /* ← perfect gecentreerd */
  opacity: 0.18;           /* ← iets zichtbaarder, maar subtiel */
  z-index: 0;
  pointer-events: none;
  padding: 1.0rem;         /* ← ruimte voor randen */
  box-sizing: border-box;
}

.variant-content {
  position: relative;
  z-index: 1;
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
    
}

.variant-content h3 {
  margin: 0 0 0.75rem;
  font-size: 1.4rem;
  color: var(--color-primary);
}

.variant-content p {
  margin: 0;
  font-size: 0.95rem;
  color: #444;
}


/* ==== Mobile header: vaste menuknop rechtsboven + solide dropdown ==== */
@media (max-width: 768px){
  .header-inner{ position: relative; align-items: center; }

  /* Menuknop altijd rechtsboven, los van titel/subtitel-hoogte */
  .mobile-menu-toggle{
    position: absolute;
    top: 10px; right: 12px;
    z-index: 1001;
    padding: 6px 10px;
    border: 1px solid var(--border);
    background: var(--panel);
    border-radius: 8px; /* iets vierkanter met zachte hoeken */
    font-family: inherit;        /* zelfde font als header/nav */
    font-weight: 600;            /* optioneel, match met .nav a */
    font-size: 0.95rem;          /* optioneel, iets kleiner als links */
    letter-spacing: 0.02em;      /* optioneel voor consistentie */
    text-transform: uppercase;   /* optioneel, alleen als je MENU in hoofdletters wilt */


  }

  /* Logo-blok mag doorlopen, menu blijft rechtsboven */
  .logo-text-wrap{ min-width: 0; }

  /* Uitgeklapt menu: solide (licht transparant) paneel boven content */
  #mobile-menu:checked ~ .nav{
    position: absolute;
    top: 100%; left: 0; right: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: color-mix(in srgb, var(--panel) 90%, rgba(0,0,0,0) 10%); /* zacht, niet doorzichtig */
    backdrop-filter: blur(6px);
    border-top: 1px solid var(--border);
    box-shadow: 0 10px 24px rgba(0,0,0,.10);
    z-index: 1002;
  }

  /* Linkjes goed leesbaar en klikbaar */
  .nav ul{ display: flex; flex-direction: column; margin: 0; padding: 6px 8px; }
  .nav li{ border-bottom: 1px solid var(--border); }
  .nav li:last-child{ border-bottom: 0; }
  .nav a{
    display: block;
    padding: 12px 10px;
    text-align: left;
    background: transparent;
  }
}

/* Zorg dat content eronder nooit de clicks vangt */
.site-header, .nav{ pointer-events: auto; }
.hero, .hero *{ pointer-events: auto; z-index: 0; }


/* Verberg de mobiele checkbox visueel maar behoud focus/functionaliteit */
#mobile-menu {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
}
/* Optioneel: als je helemaal niet zichtbaar wilt dat 'checked' verandert (zeggen geen outline) */
#mobile-menu:focus { outline: none; }

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  gap: 2rem 3rem;
  align-items: center;        /* zorgt dat alles verticaal netjes uitgelijnd is */
}

.footer-logo img {
  width: 80px;                /* pas dit aan als je hem groter/kleiner wilt */
  height: auto;
  display: block;
  margin: 0;                  /* geen ongewenste ruimte eronder */
}

/* Op mobiel onder elkaar (blijft netjes) */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
  .footer-logo {
    order: -1;                /* logo bovenaan op mobiel */
  }
  .footer-logo img {
    width: 90px;
    margin: 0 auto;
  }
}


/* Einde style-new.css */
