:root {
  --blue-main: #0a81c4;
  --blue-dark: #003f66;
  --blue-soft: #138ca8;
  --orange-main: #ee7421;
  --orange-soft: #f4a259;
  --bg-light: #f8f9fa;
  --text-main: #111111;
  --text-muted: #555555;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
}

a {
  color: var(--blue-main);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Layout helpers */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 3.5rem 0;
}

h1,
h2,
h3 {
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

/* =========================================================
   HEADER / NAV (schone versie, GEEN hamburger, mobiel naast elkaar)
   ========================================================= */
header {
  background-color: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.logo-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  position: relative;
  font-weight: 500;
  color: var(--text-main);
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-main), var(--orange-main));
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Hamburger uit (altijd) */
.nav-toggle {
  display: none !important;
}

/* Mobiel: menu blijft zichtbaar naast elkaar */
@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .nav-links {
    justify-content: center;
    gap: 0.5rem;
    padding: 0.25rem 0 0.5rem;
  }

  .nav-links a {
    padding: 0.35rem 0.55rem;
    font-size: 0.9rem;
    border-radius: 6px;
  }

  .logo-text {
    display: none;
  }
}

/* =========================================================
   HERO (home)
   ========================================================= */
.hero {
  padding: 4rem 0 3rem;
  background: radial-gradient(circle at top left, #e3f4ff 0, #f8f9fa 60%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.1rem, 4vw, 2.7rem);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.hero-text-highlight {
  border-left: 4px solid var(--blue-main);
  padding-left: 1rem;
  margin-top: 0.5rem;
  font-size: 0.98rem;
  color: var(--text-main);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease, color 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-main), var(--blue-soft));
  color: var(--white);
  box-shadow: 0 10px 20px rgba(10, 129, 196, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(10, 129, 196, 0.3);
}

.btn-secondary {
  background: var(--white);
  color: var(--blue-dark);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.btn-secondary:hover {
  background-color: #eef5fb;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  background: #000;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

.hero-tag {
  position: absolute;
  left: 1rem;
  top: 1rem;
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.45rem 0.8rem;
  border-radius: 0.75rem;
  font-size: 0.8rem;
  color: var(--blue-dark);
}

/* Kleine hero voor subpagina's */
.page-hero {
  padding: 2.8rem 0 2.5rem;
  background: linear-gradient(
    135deg,
    rgba(10, 129, 196, 0.08),
    rgba(244, 162, 89, 0.05)
  );
  margin-bottom: 0.5rem;
}

.page-hero h1 {
  margin-bottom: 0.4rem;
}

.page-hero p {
  max-width: 720px;
}

/* Content structuren */
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: start;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.8rem;
  border-radius: 999px;
  background-color: rgba(10, 129, 196, 0.08);
  color: var(--blue-dark);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.list {
  list-style: none;
  margin-top: 0.25rem;
}

.list li {
  margin-bottom: 0.45rem;
  padding-left: 1.1rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0.2rem;
  color: var(--orange-main);
}

.highlight-box {
  background: var(--white);
  border-radius: 0.9rem;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--orange-main);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  font-size: 0.95rem;
}

/* Portfolio kaarten */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background-color: var(--white);
  border-radius: 0.9rem;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 1rem 1.1rem 1.1rem;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 0.5rem;
}

.card-text {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Werkwijze stappen */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.step {
  background: var(--white);
  border-radius: 0.9rem;
  padding: 1rem 1.2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border-top: 3px solid var(--blue-main);
}

.step h3 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.step p {
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

form {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
  color: var(--blue-dark);
}

input,
textarea,
select {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
  font-family: inherit;
  background: var(--white);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--blue-main);
  box-shadow: 0 0 0 2px rgba(10, 129, 196, 0.18);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-info-box {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-info-box p {
  margin-bottom: 0.5rem;
}

.contact-highlight {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 0.8rem;
  background: rgba(238, 116, 33, 0.06);
  border: 1px solid rgba(238, 116, 33, 0.3);
  font-size: 0.9rem;
}

/* Privacypagina */
.legal {
  background: var(--white);
  padding: 1.5rem 1.6rem;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.legal h2 {
  margin-top: 1.2rem;
}

/* Footer */
footer {
  background: var(--blue-dark);
  color: var(--white);
  padding: 1.8rem 0;
  margin-top: 2rem;
}

footer p {
  margin-bottom: 0.4rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  text-align: center;
}

footer a {
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive layout */
@media (max-width: 900px) {
  .hero-inner,
  .two-column,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }
}

/* =========================================================
   GALERIJ
   ========================================================= */
.gallery-section {
  padding: 3rem 0;
}

.muted {
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-btn {
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
}

.gallery-item {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.18s ease, filter 0.18s ease;
}

/* Zoom icon */
.gallery-btn::after {
  content: "🔍";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(6px);
  opacity: 0;
  transition: 0.18s ease;
}

.gallery-btn:hover .gallery-item {
  transform: scale(1.03);
  filter: contrast(1.03);
}

.gallery-btn:hover::after {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-item {
    height: 210px;
  }
}
@media (max-width: 680px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item {
    height: 180px;
  }
}

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  padding: 2rem;
}

.lightbox.show {
  display: grid;
}

.lightbox-img {
  max-width: min(1100px, 92vw);
  max-height: 82vh;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  font-size: 28px;
  line-height: 44px;
  cursor: pointer;
}

/* Lightbox navigatie */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 14px;
  font-size: 34px;
  line-height: 52px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.85);
}

.lightbox-nav.prev {
  left: 18px;
}
.lightbox-nav.next {
  right: 18px;
}

.lightbox-counter {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 14px;
}

@media (max-width: 680px) {
  .lightbox-nav {
    width: 46px;
    height: 46px;
    font-size: 30px;
    line-height: 46px;
  }
}

/* =========================================================
   VIDEO
   ========================================================= */
.video-section {
  padding: 3rem 0;
}

.video-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.video-wrap video {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
}
/* ===== GALERIJ: GELIJKE FORMATS + MOBIEL KLEINER ===== */

/* Desktop / tablet (blijft mooi groot) */
.gallery-item {
  aspect-ratio: 4 / 3;      /* altijd hetzelfde formaat */
  height: auto;
  width: 100%;
  object-fit: cover;
}

/* Tablet */
@media (max-width: 980px) {
  .gallery-item {
    aspect-ratio: 4 / 3;
  }
}

/* Mobiel */
@media (max-width: 40px) {
  .gallery-grid {
    gap: 10px;              /* iets minder ruimte */
  }

  .gallery-item {
    aspect-ratio: 1 / 1;    /* vierkant op mobiel = strak */
    height: auto;
  }
}
/* ===== GALERIJ FIX: ALTIJD GELIJKE VERHOUDING ===== */

/* Reset alle vaste hoogtes */
.gallery-item {
  height: auto !important;
  width: 100% !important;
  object-fit: cover;
  display: block;
}

/* Desktop / tablet */
.gallery-btn {
  aspect-ratio: 4 / 3;     /* vaste verhouding */
}

/* Zorg dat img zich aan de knop aanpast */
.gallery-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobiel: strak en rustig */
@media (max-width: 680px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-btn {
    aspect-ratio: 1 / 1;   /* vierkant op mobiel */
  }
}
