/*
Theme Name: Minimal Clean Theme
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: Een clean, minimalistisch WordPress thema zonder onnodige features
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: minimal-clean
*/

/* --- Variabelen --- */
:root {
  --flexibele-body: 1600px;

  /* Kleuren */
  --primary-orange: #fe7200;
  --primary-light-blue: #268be9;
  --primary-dark-blue: #0c1e43;
  --bg-light: #f5f5f5;
  --bg-white: #ffffff;

  /* Typografie settings (Zorg dat Korolev ingeladen wordt in je HTML/CSS) */
  --font-family: "korolev", sans-serif;
  --font-weight-body: 500;
  --font-weight-heading: 700;
  --font-weight-h4: 500;

  /* Styling */
  --btn-radius: 100px;
  --spacing-sm: 20px;
  --spacing-md: 20px;
  --spacing-lg: 100px;
  --navbar-height: 0px;

  /* Gradienten */
  --gradient-events: linear-gradient(to right, #268be9 0%, #0c1e43 100%);
}

.spacing-sm {
  gap: var(--spacing-sm) !important;
}

@media all and (max-width: 980px) {
  :root {
    --btn-radius: 100px;
    --spacing-sm: 20px;
    --spacing-md: 20px;
    --spacing-lg: 50px;
    --navbar-height: 0px;
  }
}

html {
  scroll-behavior: smooth;
}

/* --- Basis Reset --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family);
}

body {
  background-color: var(--bg-white);
  color: var(--primary-dark-blue);
  font-weight: var(--font-weight-body);
  line-height: 1.6;
  /* border-left: 10px solid white;
  border-right: 10px solid white; */
}

/* --- Typografie --- */
h1,
h2,
h3 {
  font-weight: var(--font-weight-heading);
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
}

h1 {
  font-size: 70px;
  text-wrap-style: balance;
}

h2 {
  font-size: 55px;
  text-wrap-style: balance;
}

h3 {
  font-size: 25px;
}

h4 {
  font-size: 25px;
  font-weight: var(--font-weight-h4);
  color: var(--primary-light-blue);
  /* Vaak blauw in dit design */
  margin-bottom: 0.5rem;
}

a {
  text-decoration: none;
  color: inherit;
}

.subtitle-orange {
  color: var(--primary-orange);
}

/* --- Knoppen --- */
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: var(--btn-radius);
  font-weight: bold;
  font-size: 18px !important;
  cursor: pointer;
  text-align: center;
  border: 2px solid transparent;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.btn:hover {
  box-shadow: 0 0 0 1px var(--primary-light-blue);
}

.btn-primary {
  background-color: var(--primary-orange);
  color: var(--bg-white);
}

.btn-primary:hover {
  background-color: #e56600;
}

.btn-secondary {
  background-color: var(--primary-dark-blue);
  color: var(--bg-white);
  border-color: var(--primary-light-blue);
}

.btn-secondary:hover {
  background-color: var(--primary-light-blue);
  border-color: var(--primary-light-blue);
}

#gform_submit_button_4,
#gform_submit_button_3,
#gform_submit_button_2,
.gform_button.button {
  border-radius: var(--btn-radius) !important;
  padding: 0.8rem 1.5rem !important;
  background-color: var(--primary-light-blue) !important;
  color: var(--bg-white) !important;
  border-color: var(--primary-light-blue) !important;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease !important;
  font-weight: bold !important;
  font-size: 18px !important;
}

#gform_submit_button_3:hover,
#gform_submit_button_2:hover,
.gform_button.button:hover {
  background-color: var(--primary-dark-blue) !important;
  border-color: var(--primary-dark-blue) !important;
}
#field_submit {
  display: flex;
  justify-content: flex-end;
}

.btn-outline-small {
  border: 1px solid var(--primary-light-blue);
  border-radius: var(--btn-radius);
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.btn-outline-small:hover {
  background-color: var(--primary-light-blue);
  color: var(--bg-white);
}

.button-group {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* --- Lay-out Helpers --- */

@media (min-width: 1500px) {
  body {
    /* max-width: var(--flexibele-body); */
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 1500px) {
  .theme-scroll-outer {
    padding-left: 5vw !important;
  }
}

.container {
  max-width: 1360px;
  margin: 0 auto;
  width: 90vw;
  box-sizing: border-box;
}

.section {
  padding: var(--spacing-lg) 0;
}

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

.bg-light {
  background-color: var(--bg-light);
}

.bg-dark-blue {
  background-color: var(--primary-dark-blue);
  color: var(--bg-white);
}

.bg-light-blue {
  background-color: var(--primary-light-blue);
}

.text-white {
  color: var(--bg-white);
}

.dubbele-sectie-bg {
  padding: 0px !important;
}

.dubbele-sectie-bg > div {
  width: 100%;
  min-width: 100%;
  max-width: none; /* Kolommen starten echt van viewport-rand */
}

/* Grids & Flexbox */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
}

/* 2/3 + 1/3 kolom layout */
.grid-2-3 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-lg);
}

/* Kolomvolgorde (altijd actief, ook op desktop) */
.order-first {
  order: -1;
}
.order-last {
  order: 1;
}

/* Voorkom dat grid-kinderen buiten hun cel groeien */
.grid-2 > *,
.grid-2-3 > *,
.grid-3 > *,
.grid-4 > * {
  min-width: 0;
}

/* Afbeeldingen nooit breder dan hun container */
img {
  max-width: 100%;
  height: auto;
}

.align-center {
  align-items: center;
}

.align-start {
  align-items: flex-start;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

/* --- Componenten --- */
/* Navigatie */
.navbar {
  padding: 1.5rem var(--spacing-sm);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  box-sizing: border-box;
}

/* Eerste sectie padding wordt via JS gezet op basis van navbar hoogte */
.navbar-inner {
  display: grid;
  align-items: stretch;
  background: var(--primary-dark-blue);
  border-radius: 100px;
  overflow: hidden;
  justify-content: space-between;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  justify-items: end;
}

.navbar-inner {
  margin-top: 10px;
  box-shadow: 5px 4px 10px 0px rgba(12, 30, 67, 0.25);
  padding: 0px;
}

.navbar-logo {
  background: var(--bg-white);
  height: 100%;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar-logo img {
  height: 52px;
  width: auto;
  display: block;
}

.navbar-nav-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 20px;
  flex: 1;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex: 1;
  justify-content: space-around;
}

.nav-links a,
.nav-links li a {
  color: #d4c9c9;
  text-decoration: none;
  font-weight: var(--font-weight-body);
  white-space: nowrap;
}

.footer-links .menu-item a {
  color: var(--primary-dark-blue);
}

.nav-links a:hover,
.nav-links li a:hover {
  opacity: 0.8;
}

.nav-links ul {
  display: contents;
}

.nav-links li {
  list-style: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  margin-right: 27px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--bg-white);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  transform-origin: center;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-dark-blue);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.mobile-nav-links a,
.mobile-nav-links li a {
  color: var(--bg-white);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: var(--font-weight-heading);
  list-style: none;
  transition: opacity 0.2s;
}

.mobile-nav-links a:hover {
  opacity: 0.7;
}

.mobile-nav-links ul {
  display: contents;
}

.mobile-nav-links li {
  list-style: none;
}

.mobile-menu-overlay {
  display: none;
}

.breadcrumb_last {
  display: none;
}

/* Hero */
.hero {
  background-image: url("/wp-content/uploads/2026/03/drone-deventer-scaled.jpg");
  /* Vervang met de juiste afbeelding */
  background-size: cover;
  background-position: center;
  color: var(--bg-white);
  padding: 8rem 0;
  position: relative;
  padding-top: 30vh;
}

.dark-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 30, 67, 0.6);
  z-index: 0;
  border-radius: 20px;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 747px;
  text-wrap-style: balance;
}

.contact-section p:not(:last-child),
.text-column p:not(:last-child),
.hero-content p:not(:last-child) {
  margin-bottom: 12px;
}

/* Placeholders voor Afbeeldingen */
.image-placeholder {
  background-color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

.schematic-venn {
  height: 350px;
  border-radius: 50%;
}

.tall-img {
  border-radius: 10px;
  max-width: 100%;
}

.card-img {
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  max-width: 100%;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 439 / 465;
}

.wide-img {
  height: 250px;
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  max-width: 100%;
}

.wide-img img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

/* Achtergrond van tekst-afbeelding wordt via ACF class bepaald (.bg-light, .bg-dark-blue of geen) */

.logo-sectie {
  background-color: var(--bg-white);
}

/* Niet-witte secties: border-radius + margin */
.hero,
.dubbele-sectie-bg,
.single-nieuws,
.text-afb-section,
.bg-dark-blue,
.section.bg-light,
.footer.bg-light {
  border-radius: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  max-width: calc(100% - 40px);
}

.bg-transp {
  margin-top: -20px;
  margin-bottom: -20px;
}

.image-column img {
  border-radius: 20px;
}

/* Partners – Marquee */
.marquee-container {
  max-width: 100% !important;
  width: 100%;
}

.marquee-wrapper {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
}

.marquee-row {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 0m 0;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.marquee-left {
  animation: scroll-left 120s linear infinite;
}

.marquee-right {
  animation: scroll-right 120s linear infinite;
}

/*
.marquee-wrapper:hover .marquee-track { animation-play-state: paused; } */

.partner-logo {
  padding: 0 1.5rem;
  flex-shrink: 0;
}

.partner-logo img {
  display: block;
  height: 150px;
  width: calc(150px * 16 / 9);
  object-fit: contain;
}

/* Thema's */
.logos-inleiding-kolom,
.thema-inleiding-kolom {
  max-width: 771px;
  margin: auto;
}

.theme-scroll-outer {
  overflow-x: auto;
  overflow-y: visible;
  margin-top: 3rem;
  /* Links uitlijnen met container-inhoud, rechts vrij */
  padding-left: max(
    var(--spacing-sm),
    calc((100vw - 1400px) / 2 + var(--spacing-sm))
  );
  scrollbar-width: none;
  /* Firefox */
  cursor: grab;
  user-select: none;
  will-change: scroll-position;
}

.theme-scroll-outer:active {
  cursor: grabbing;
}

.theme-scroll-outer img {
  pointer-events: none;
  -webkit-user-drag: none;
}

.theme-scroll-outer::-webkit-scrollbar {
  display: none;
}

/* Chrome/Safari */

.theme-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  text-align: left;
  padding-bottom: 1rem;
}

.theme-card {
  width: 424px;
  flex-shrink: 0;
}

.theme-card h3 {
  color: var(--primary-light-blue);
}

/* Contact sectie */
.contact-section .container {
  grid-template-columns: 1fr 2fr;
}

/* Contact info lijst */
.contact-list {
  list-style: none;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-list li img.contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  /* filter: brightness(0) invert(1); */
}

/* Scheidingslijn na intro tekst */

.contact-section .column ul.contact-list {
  border-top: 1px solid var(--primary-light-blue);
}

/* GF form intern grid: links naam/tel/email, rechts textarea */
.contact-form #gform_fields_3.gform_fields {
  gap: 1rem;
}
.contact-form #gform_fields_1.gform_fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.contact-form #gform_fields_1 #field_1_1,
.contact-form #gform_fields_1 #field_1_3,
.contact-form #gform_fields_1 #field_1_4 {
  grid-column: 1;
}

.bg-dark-blue .gfield_checkbox .gform-field-label {
  color: white !important;
}

.contact-form #gform_fields_1 #field_1_5 {
  grid-column: 2;
  grid-row: 1 / 4;
}

.contact-form #gform_fields_1 #field_1_5 textarea {
  height: 211px;
  min-height: 180px;
  resize: none;
}

/* GF labels */
.contact-form #gform_fields_4 .gfield_label,
.contact-form #gform_fields_3 .gfield_label,
.newsletter-box .gfield_label,
.contact-form #gform_fields_1 .gfield_label {
  color: var(--primary-light-blue);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  display: block;
}

.gfield_required,
.newsletter-box .gfield_required,
.contact-form #gform_fields_1 .gfield_required {
  display: none !important;
}

/* GF inputs */
.newsletter-box input[type="text"],
.newsletter-box input[type="tel"],
.newsletter-box input[type="email"],
.newsletter-box textarea,
.contact-form #gform_fields_3 input[type="text"],
.contact-form #gform_fields_3 input[type="tel"],
.contact-form #gform_fields_3 input[type="email"],
.contact-form #gform_fields_3 textarea,
.contact-form #gform_fields_1 input[type="text"],
.contact-form #gform_fields_1 input[type="tel"],
.contact-form #gform_fields_1 input[type="email"],
.contact-form #gform_fields_1 textarea {
  background: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 0.9rem 1rem !important;
  width: 100% !important;
  font-size: 1rem !important;
  color: var(--primary-dark-blue) !important;
  outline: none !important;
}

.newsletter-boxinput:focus,
.newsletter-box textarea:focus,
.contact-form #gform_fields_1 input:focus,
.contact-form #gform_fields_1 textarea:focus {
  box-shadow: 0 0 0 2px var(--primary-light-blue);
}
.gform_body .gform_fields {
  row-gap: 20px !important;
  column-gap: 20px !important;
}

#gform_fields_2 {
  display: flex;
}

#field_2_1 {
  width: 81%;
}

/* GF footer + submit knop */
.contact-form .gform_footer {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  margin-top: 0.5rem;
}

.contact-form .gform_button:hover {
  background: var(--primary-dark-blue);
}

/* Events */
.nieuws-box {
  padding: 3rem;
  padding-left: max(calc((100vw - 1400px) / 2), calc(5vw - 20px));
  border-radius: 20px;
  height: 100%;
}

.events-box {
  padding: 3rem;
  padding-right: max(calc((100vw - 1400px) / 2), calc(5vw - 20px));
  border-radius: 20px;
  background: var(--gradient-events);
  height: 100%;
}

.events-box h4 {
  color: var(--bg-white);
}

.event-divider {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 1.5rem 0;
}

.single-events .item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1.5px solid var(--primary-light-blue);
  gap: 0px;
  opacity: 0;
  transform: translateY(8px);
  animation: fadeIn 0.4s ease forwards;
}
.single-events .item .omschrijving {
  display: flex;
  text-align: right;
}

.single-events .item:last-child {
  border-bottom: 0px !important;
}

.event-item p:not(.date) {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
}

.date {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.event-meta h4 {
  margin-bottom: 0px;
}

/* Posts overzicht */
.posts-grid {
  margin-top: 2rem;
}

.post-card {
  display: flex;
  flex-direction: column;
}

.post-card__img {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.post-card__img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  aspect-ratio: 669 / 347;
}

.post-card__img:hover img {
  transform: scale(1.03);
}

.post-card__body h4 a {
  color: var(--primary-light-blue);
  text-decoration: none;
}

.post-card__body h4 a:hover {
  opacity: 0.8;
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--primary-light-blue);
  z-index: 10000;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* Scroll-to-top knop */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-dark-blue);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  z-index: 999;
}

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

.scroll-to-top:hover {
  background: var(--primary-light-blue);
}

/* Custom cursor */
@media (pointer: fine) {
  * {
    cursor: none !important;
  }

  .cursor-dot,
  .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    will-change: transform;
  }

  .cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-light-blue);
    margin: -4px 0 0 -4px;
  }

  .cursor-ring {
    width: 32px;
    height: 32px;
    border: 2px solid var(--primary-light-blue);
    margin: -16px 0 0 -16px;
    opacity: 0.5;
    transition:
      width 0.2s ease,
      height 0.2s ease,
      margin 0.2s ease,
      opacity 0.2s ease,
      border-color 0.2s ease;
  }

  .cursor-ring.cursor-hover {
    width: 48px;
    height: 48px;
    margin: -24px 0 0 -24px;
    opacity: 0.9;
    border-color: var(--primary-dark-blue);
  }
}

/* Footer */

footer {
  margin-top: -20px;
}

.footer-label {
  color: var(--primary-light-blue);
  font-weight: 700;
}

.footer-top {
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--primary-light-blue);
  grid-template-columns: 1fr 1fr 2fr;
}

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.newsletter-box {
  background: #f5f5f5;
  padding: 2rem;
  border-radius: 20px;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.logo-copyright {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.linkedin-copy {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

/*single post*/

.single-thumbnail img {
  border-radius: 20px;
  aspect-ratio: 554 / 420;
  object-fit: cover;
}

/* =====================
   RESPONSIVE
   ===================== */

/*
   @media all and (min-width: 1600px) {
    .nieuws-box {
       padding-left: 136px;
                }
    .events-box {
        padding-right: 136px;
    }

                } */

@media (max-width: 1200px) {
  .nav-links {
    gap: 1rem;
  }
  .nav-links li {
    font-size: 13px;
  }

  .nav-cta.btn {
    font-size: 16px !important;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .theme-card {
    width: 340px;
  }
}

/* Hamburger menu */
@media (max-width: 980px) {
  .navbar-inner {
    margin-top: 0px;
  }
  .navbar-nav-wrap {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navbar-inner {
    border-radius: 100px;
  }
}

/* Mobiel */
@media (max-width: 768px) {
  .container {
    max-width: 80%;
  }
  /* Typografie */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  h3,
  h4 {
    font-size: 18px;
  }

  /* Secties */
  .section {
    padding: var(--spacing-lg) 0;
  }

  .bg-transp {
    margin-top: inherit;
    margin-bottom: initial;
  }

  .text-afb-section,
  .bg-dark-blue,
  .section.bg-light,
  .footer.bg-light {
    margin: auto;
    border-radius: 20px;
  }

  /* Grids → gestapeld */
  .grid-2,
  .grid-2-3,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .single-thumbnail {
    order: -1;
  }

  /* Hero */
  .hero {
    padding: 3rem 0;
    padding-top: 25vh;
  }

  .button-group {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Contact sectie */

  .contact-section .container {
    grid-template-columns: 1fr;
  }

  /* Gravity Forms → 1 kolom */
  .contact-form .gform_fields {
    grid-template-columns: 1fr;
  }

  .contact-form #field_1_1,
  .contact-form #field_1_3,
  .contact-form #field_1_4,
  .contact-form #field_1_5 {
    grid-column: 1;
    grid-row: auto;
  }

  .contact-form #field_1_5 textarea {
    min-height: 140px;
  }

  .contact-form #gform_fields_1.gform_fields {
    display: flex;
    flex-direction: column;
  }

  .contact-form #field_1_1,
  .contact-form #field_1_3,
  .contact-form #field_1_4,
  .contact-form #field_1_5 {
    width: 100%;
  }
  /* Tekst-afbeelding: tekst altijd boven afbeelding op mobiel */
  .text-afb-section .text-column {
    order: -1;
  }
  .text-afb-section .image-column {
    order: 1;
  }

  /* Events / nieuws box */
  .events-box,
  .nieuws-box {
    padding: 10%;
  }

  /* Footer */
  .footer-top.grid-3 {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-bottom > p {
    order: 1;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    width: 100%;
  }

  /* Flex between wrappen */
  .flex-between {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  /* Thema kaarten smaller */
  .theme-card {
    width: 80vw;
  }

  /* Schematic venn iets kleiner */
  .schematic-venn {
    height: 240px;
  }

  .tall-img {
    height: 260px;
  }

  .footer-links,
  .nav-links {
    display: flex;
    flex-direction: column;
  }
}

/* Klein mobiel */
@media (max-width: 480px) {
  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 22px;
  }

  .navbar-logo img {
    height: 38px;
  }

  .hero {
    padding-top: 15vh;
  }

  .theme-card {
    width: 88vw;
  }

  .btn {
    font-size: 16px !important;
    padding: 0.7rem 1.2rem;
  }
}
