/* ============================
   BASISINSTELLINGEN
============================ */
:root {
  --brand: #2563eb;       /* Hoofdblauw */
  --accent: #3b82f6;      /* Lichter blauw */
  --bg-dark: #0f172a;     /* Donkerblauw achtergrond */
  --text-dark: #0f172a;
  --text-light: #f8fafc;
  --muted: #94a3b8;
  --radius: 16px;
  --max-width: 1100px;
}

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

html, body {
  font-family: "Saira", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: linear-gradient(180deg, #182c44 0%, #2e3d68 60%, #8b73a5 100%);
  color: var(--text-light);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden; /* ✅ voorkomt horizontaal scrollen */
  width: 100%;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================
   HEADER
============================ */
.site-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo-link {
  display: flex;
  align-items: center;
}

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

/* Menu */
.main-nav a {
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s ease;
  margin-left: 6px;
}

.main-nav a:not(.btn-nav):hover {
  background: rgba(37,99,235,0.1);
  color: var(--text-dark);
}

.main-nav a.active:not(.btn-nav) {
  color: var(--brand);  
  font-weight: 700;
}

/* Contact-knop */
.btn-nav {
  background: linear-gradient(90deg, var(--brand), var(--accent));
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  margin-left: 10px;
  box-shadow: 0 4px 10px rgba(37,99,235,0.25);
  transition: all 0.25s ease;
}

.btn-nav:hover {
  background: linear-gradient(90deg, var(--accent), var(--brand));
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(37,99,235,0.35);
}

@media (max-width: 800px) {
  .main-nav .btn-nav {
    margin-top: 16px; /* extra ruimte boven de knop */
    margin-bottom: 8px; /* optioneel: iets lucht eronder */
    padding: 10px 22px; /* iets groter op mobiel voor tikgemak */
  }
}


/* --- NAVIGATIE --- */
header nav ul {
  list-style: none;         /* verwijdert de bolletjes */
  margin: 0;
  padding: 0;
  display: flex;            /* zet de links naast elkaar */
  gap: 25px;                /* ruimte tussen links */
  align-items: center;
}

header nav li {
  margin: 0;
  padding: 0;
}

header nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
}

header nav a:hover {
  color: #8a91ff; /* hoverkleur */
}

/* Actieve link (van $current) */
header nav a.active {
  color: #4f46e5;
  font-weight: 600;
}

/* Contact-knopstijl behouden */
header nav a.btn,
header nav a.contact {
  background: #1e2b50;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
}

header nav a.btn:hover,
header nav a.contact:hover {
  background: #4f46e5;
}


/* ============================
   LAYOUT
============================ */
.site-main {
  padding: 60px 0 80px;
}

section {
  margin-bottom: 20px;
  text-align: center;
}

h1, h2, h3 {
  font-weight: 700;
  color: var(--text-light);
}

p {
  color: var(--muted);
  margin-top: 8px;
}

/* ============================
   HERO / INTRO
============================ */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
}

.hero h1 {
  font-size: clamp(28px, 4%, 44px);
  margin-bottom: 12px;
}

.hero p {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 20px;
}

/* ============================
   KAARTEN / PROJECTEN
============================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  justify-items: center;
  margin-top: 40px;
}

.card {
  background: linear-gradient(180deg, #1b2945, #1e214a);
  border-radius: 20px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  max-width: 360px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

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

.card-content {
  padding: 18px 20px;
  text-align: center;
}

.card h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  color: var(--text-light);
}

.card p {
  margin: 0;
  color: #bfc7d4;
  font-size: 0.95rem;
}

/* ============================
   KNOPPEN — stijl van Virtuele Tour
============================ */
.btn,
.btn-outline,
.btn-small,
.btn-nav {
  display: inline-block;
  cursor: pointer;
  border: none;
  border-radius: 50px; /* ronde knoppen */
  font-family: "Saira", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: #182c44; /* donkere basiskleur */
  padding: 12px 26px;
  transition: all 0.3s ease;
}

/* Hover-effect */
.btn:hover,
.btn-small:hover,
.btn-nav:hover {
  background: #8b73a5; /* zachte paarse tint */
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}

/* Klik-effect */
.btn:active,
.btn-small:active,
.btn-nav:active {
  transform: scale(0.98);
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* Kleine variant (bij kaarten) */
.btn-small {
  padding: 8px 20px;
  font-size: 0.9rem;
}

/* Outline variant (voor witte rand op donkere achtergrond) */
.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

/* Contact-knop in header (zelfde stijl, iets compacter) */
.btn-nav {
  padding: 8px 20px;
  font-size: 0.95rem;
  border-radius: 50px;
  background: #182c44;
}

.btn-nav:hover {
  background: #8b73a5;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}



/* ============================
   CONTACTFORMULIER
============================ */
.contact-form {
  display: grid;
  gap: 12px;
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--text-light);
}

input, textarea {
  background: #0b1220;
  color: var(--text-light);
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  outline: none;
}

input:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(59,130,246,0.25);
}

/* ============================
   FOOTER
============================ */
.site-footer {
  width: 100%;
  margin-left: calc(50% - 50%); /* zorgt dat hij écht full-width is */
  background: #0e1324; /* donkere tint die goed aansluit op je CTA */
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #94a3b8;
  text-align: center;
  padding: 60px 20px;
  font-size: 14px;
}


/* ============================
   RESPONSIVE
============================ */
@media (max-width: 800px) {
  .header-inner {
    flex-direction: column;
    height: auto;
    padding: 12px 0;
    gap: 10px;
  }

  .main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .main-nav a {
    padding: 8px 10px;
  }

  .hero {
    min-height: 50vh;
    padding: 20px;
  }
}

/* ============================
   HERO VOLLEDIGE BREEDTE
============================ */
.hero {
  position: relative;
  width: 100vw; /* volledige viewportbreedte */
  left: 50%;
  right: 50%;
  margin-left: -50vw; /* trekt hem netjes uit de container */
  margin-right: -50vw;
  min-height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding-top: 0;
  margin-top: 0;
}


.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, rgba(15,23,42,0), var(--bg-dark));
  z-index: 3;
}


.site-main,
main {
  margin-top: 0;
  padding-top: 0;
}


.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.55) saturate(1.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(15,23,42,0.8));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

/* ============================
   DIENSTEN — luchtige variant
============================ */
.diensten {
  padding: 120px 20px;
  background: transparent; /* geen vlak meer */
  text-align: center;
  position: relative;
}

.diensten::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(139, 115, 165, 0.08) 0%,
    rgba(15, 23, 42, 0) 70%
  );
  z-index: 0;
}

.diensten h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 60px;
  background: linear-gradient(90deg, #8b73a5, #c4b5fd);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 1;
}

.diensten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.dienst-card {
  background: rgba(24, 44, 68, 0.7);
  backdrop-filter: blur(8px);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  max-width: 320px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
}

.dienst-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.4);
  border-color: rgba(139,115,165,0.5);
}

.dienst-icon {
  font-size: 2.8rem;
  margin-bottom: 18px;
  display: block;
}

.dienst-card h3 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.dienst-card p {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .dienst-card {
    text-align: center;
  }
}

/* ============================
   MOBIEL MENU (HAMBURGER)
============================ */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-dark);
  cursor: pointer;
}

@media (max-width: 800px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    right: 0;
    background: #fff;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
    display: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    color: var(--text-dark);
    font-size: 1.1rem;
    padding: 10px 0;
  }

  .main-nav .btn-nav {
    margin-top: 8px;
  }
}

/* ============================
   CALL TO ACTION - VLOEIEND IN FOOTER
============================ */
.cta-full {
  position: relative;
  width: 100vw; /* volledige schermbreedte */
  margin-left: calc(50% - 50vw); /* trekt de sectie uit de container */
  background: linear-gradient(180deg, #1a2236 0%, #202b44 40%, #0f172a 100%);
  color: #fff;
  text-align: center;
  padding: 100px 20px 60px;
  border-radius: 0;
  box-shadow: inset 0 10px 40px rgba(0,0,0,0.4);
}

@keyframes mistMove {
  0% { transform: translateX(0) translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateX(-5%) translateY(-2%) scale(1.1); opacity: 0.4; }
  100% { transform: translateX(0) translateY(0) scale(1); opacity: 0.6; }
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.cta-full h2 {
  font-size: clamp(28px, 4%, 40px);
  margin-bottom: 18px;
  font-weight: 700;
  background: linear-gradient(90deg, #a58ccf, #c4b5fd);
  background-clip: text;              /* ✅ standaardversie toegevoegd */
  -webkit-background-clip: text;      /* ✅ voor Chrome/Safari */
  -webkit-text-fill-color: transparent;
}

.cta-full p {
  color: #d1d5db;
  font-size: 1.1rem;
  margin-bottom: 36px;
}

.cta-full .btn {
  background: #182c44;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.25s ease;
}

.cta-full .btn:hover {
  background: #8b73a5;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* ============================
   SAMENWERKINGEN / PARTNERS
============================ */
.partners-section {
  width: 100%;
  margin-left: calc(50% - 50%);
  background: #141b2e; /* diepblauw, sluit aan op CTA */
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  box-shadow: inset 0 8px 20px rgba(0, 0, 0, 0.05);
}

.partners-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.partners-subtitle {
  color: #6c7393;
  font-size: 1rem;
  margin-bottom: 12px;
  font-weight: 500;
}

.partners-section h2 {
  font-size: 2rem;
  margin-bottom: 70px;
  color: #1a2236;
  font-weight: 700;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  margin-top: 50px;
}

.partner-logos img {
  height: 60px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.partner-logos img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* PROJECTENPAGINA */
.projects-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;
  background: none;
}

.project-card {
  background: #111a2b;
  border-radius: 20px;
  overflow: hidden;
  width: 320px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover; /* normale foto's vullen mooi de card */
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

/* 📸 Specifieke stijl voor placeholder */
.project-card img[src*="placeholder.webp"] {
  object-fit: contain; /* laat de hele placeholder zien zonder inzoomen */
  padding: 20px; /* geeft wat ruimte rondom het logo */
}


.project-info {
  padding: 20px;
  color: #fff;
}

.project-info h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #d1c2ff;
}

.project-info p {
  font-size: 0.95rem;
  color: #b7b7b7;
  margin-bottom: 15px;
}

.btn-small {
  display: inline-block;
  padding: 10px 18px;
  background: #0f203c;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
}

.btn-small:hover {
  background: #8a91ff;
}

@media (max-width: 768px) {
  .projects-list {
    flex-direction: column;
    align-items: center;
  }

  .project-card {
    width: 90%;
  }
}

.dashboard-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 20px;
}

.btn, .btn-primary {
  background: #1e293b;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.2s;
  min-width: 180px; /* ✅ maakt ze even breed */
  text-align: center;
}

.btn-primary {
  background: #334155;
}

.btn:hover, .btn-primary:hover {
  background: #475569;
  transform: translateY(-1px);
}

.contact-section {
  max-width: 600px;
  margin: 60px auto;
  padding: 30px;
  background: #0f172a;
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form button {
  background: #334155;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #475569;
}

@media (max-width: 600px) {
  .contact-section {
    margin: 30px 5%;
    padding: 20px;
  }
}

.project-description {
  color: #bfc7d4;
  transition: max-height 0.3s ease;
}

/* Alleen lange teksten krijgen truncatie en fade */
.project-description.truncated {
  max-height: 80px;
  overflow: hidden;
  position: relative;
}

.project-description.expanded {
  max-height: 1000px;
}

/* Fade alleen toepassen bij truncated teksten */
.project-description.truncated::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(to bottom, transparent, #0f172a);
  pointer-events: none;
  transition: opacity 0.3s;
}

.project-description.expanded::after {
  opacity: 0;
}

.read-more {
  background: none;
  border: none;
  color: #a78bfa;
  font-weight: 600;
  cursor: pointer;
  margin-top: 6px;
  display: inline-block;
  transition: color 0.3s;
}

.read-more:hover {
  color: #c4b5fd;
}

/* ============================
   OVER ONS PAGINA
============================ */
.about-hero {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  background: 
    linear-gradient(rgba(15,23,42,0.75), rgba(15,23,42,0.85)),
    url('/uploads/over-ons-bg.jpg') center top / cover no-repeat;
  overflow: hidden;
}

@media (max-width: 600px) {
  .about-hero {
    background-position: center 20%;
  }
}


.about-hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  margin-bottom: 12px;
}

.about-hero p {
  font-size: 1.2rem;
  color: #e2e8f0;
  max-width: 600px;
}


.about-text {
  max-width: 800px;
  margin: 60px auto;
  text-align: center;
  color: #e5e7eb;
  line-height: 1.8;
  font-size: 1.1rem;
}

.about-text strong {
  color: #93c5fd;
}

.about-team {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin: 80px auto;
  max-width: 1000px;
}

.team-member {
  background: #1b2945;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  width: 280px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

.team-member img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.team-member h3 {
  margin-bottom: 8px;
  color: #fff;
}

.team-member p {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.5;
}

.about-cta {
  text-align: center;
  background: linear-gradient(to bottom, #1b2945, #0f172a);
  padding: 100px 20px;
  color: #fff;
}

.about-cta h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.about-cta p {
  max-width: 600px;
  margin: 0 auto 20px;
  color: #cbd5e1;
  font-size: 1.1rem;
}

@media (max-width: 700px) {
  .team-member {
    width: 100%;
    max-width: 360px;
  }

  .about-text {
    padding: 0 20px;
  }

  .about-cta {
    padding: 80px 20px;
  }
}

.projecten-preview {
  padding: 40px 20px;
  text-align: center;
}

.projecten-preview h2 {
  color: #d1b4ff;
  margin-bottom: 40px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}

.project-card.small {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 320px;
}

.project-card.small img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.project-card.small .project-info {
  padding: 16px;
  color: #fff;
}

.project-card.small h3 {
  font-size: 1.1rem;
  color: #c9b6ff;
  margin-bottom: 6px;
}

.project-card.small p {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin-bottom: 12px;
}

.project-card.small:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

.btn-outline {
  display: inline-block;
  border: 2px solid #c9b6ff;
  color: #c9b6ff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #c9b6ff;
  color: #1a2236;
}

.btn-more {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  background: #8b73a5;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.btn-more:hover {
  background: #a78bfa;
}

/* ============================
   DIENSTEN PAGINA
============================ */
.diensten-hero {
  position: relative;
  width: 100vw; /* volledige schermbreedte */
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  text-align: center;
  padding: 120px 20px 60px;
  background: linear-gradient(180deg, #1a2236 0%, #202b44 40%, #0f172a 100%);
  color: #fff;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.diensten-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 16px;
}

.diensten-hero p {
  max-width: 700px;
  margin: 0 auto;
  color: #cbd5e1;
  font-size: 1.1rem;
}

.diensten-overview {
  padding: 100px 20px;
  text-align: center;
}

.diensten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.dienst-item {
  background: rgba(24, 44, 68, 0.8);
  border-radius: 20px;
  padding: 40px 30px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.dienst-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.4);
}

.dienst-icon {
  font-size: 2.8rem;
  margin-bottom: 18px;
}

.dienst-item h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  color: #d1b4ff;
}

.dienst-item p {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.dienst-item a {
  color: #c4b5fd;
  text-decoration: none;
}

.dienst-item a:hover {
  color: #fff;
}

.diensten-cta {
  text-align: center;
  background: linear-gradient(to bottom, #1b2945, #0f172a);
  padding: 100px 20px;
  color: #fff;
}

.diensten-cta h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.diensten-cta p {
  max-width: 600px;
  margin: 0 auto 20px;
  color: #cbd5e1;
  font-size: 1.1rem;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #203255;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

/* Kleuren per type knop */
.contact-btn.email:hover {
  background: #8b73a5;
}

.contact-btn.phone:hover {
  background: #3b82f6;
}

.contact-btn.whatsapp {
  background: #25d366;
}

.contact-btn.whatsapp:hover {
  background: #1ebc5c;
}

.project-detail img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.project-hero {
  position: relative;
  text-align: center;
  color: white;
}

.project-hero .overlay {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 23, 42, 0.6);
  padding: 20px 40px;
  border-radius: 12px;
}

.project-content {
  margin: 60px auto;
  max-width: 800px;
  text-align: left;
}

.project-content .btn {
  margin-top: 20px;
}

.project-content .back {
  margin-top: 40px;
}

.project-content .back a {
  color: #a78bfa;
  text-decoration: none;
}

.project-content .back a:hover {
  color: #c4b5fd;
}














