
/* =========================
   Root & Base
========================= */
:root {
  --orange: #ff7a00;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

/* =========================
   Header
========================= */
.site-header {
  padding: 30px 10%;
  background: #000;
  position: relative;
}

@media (max-width: 768px) {
  .site-header {
    display: flex;
    justify-content: center;
  }
}

.logo-wrapper {
  width: 250px;
  height: 250px;
  background: #000;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* CTA in header */
.cta-box1 {
  position: absolute;
  top: 30px;
  right: 30px;
  background: var(--orange);
  padding: 14px 28px;
  border-radius: 10px;
  z-index: 10;
}

.cta-box1 a {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

/* =========================
   Sections
========================= */
.section {
  padding: 120px 10%;
}

@media (max-width: 768px) {
  .section {
    padding: 80px 6%;
  }
}

.section h2 {
  text-align: center;
}

.section.dark {
  background: #000;
  color: #fff;
}

.section.light {
  background: #fff;
  color: #000;
}

/* Hero */

/* Cinematic video crop */
.cinematic-video {
  position: relative;
  width: 100%;
  aspect-ratio: 2.9 / 1; /* bioscoopverhouding */
  overflow: hidden;
  border-radius: 12px;
}

.cinematic-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* snijdt bij */
  object-position: center;    /* focus midden */
}

.hero .cinematic-video {
  margin: 0 auto;
}

.hero {
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 64px);
  text-align: center;
}

.video-wrapper {
  position: relative;
  margin-top: 40px;
}

.video-wrapper video {
  width: 100%;
  border-radius: 12px;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 64px;
  color: white;
  pointer-events: none;
}

.hero-secondary-link {
  margin-top: 20px;
  text-align: center;
}

.hero-secondary-link a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.hero-secondary-link a:hover {
  color: var(--orange);
}

/* =========================
   CTA Blocks
========================= */

.cta-container {
  position: relative;
  min-height: 160px; /* ruimte rondom CTA */
}

.cta-box {
  position: absolute;
  left: 50%;
  bottom: 40px;              /* zelf instelbaar */
  transform: translateX(-50%);
  background: var(--orange);
  padding: 30px 60px;
  border-radius: 12px;
  max-width: 420px;
  text-align: center;
}

.cta-box a {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

/* =========================
   Clients (Logo | GIF)
========================= */
.client-title {
  text-align: center;
  margin-bottom: 20px;
}

.client-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  height: 175px;
}

.client-logo,
.client-gif {
  height: 175px;
  display: flex;
  align-items: center;
}

.client-logo img,
.client-gif img {
  max-height: 175px;
  max-width: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.client-separator {
  width: 2px;
  height: 175px;
  background: rgba(0,0,0,0.25);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .client-item {
    flex-direction: column;
    height: auto;
  }

  .client-separator {
    display: none;
  }
}

.client-video {
  width: 280px;              /* vaste kaartbreedte */
  height: 175px;             /* zelfde hoogte als logo */
  overflow: hidden;
  border-radius: 12px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* CRUCIAAL: echte crop */
  object-position: center;   /* focus midden */
}


/* =========================
   Services (Image + Text)
========================= */
.services-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  margin-top: 60px;
}

.services-image {
  width: 350px;
  height: 350px;
  flex-shrink: 0;
}

.services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.services-text {
  max-width: 420px;
}

.services-text ul {
  list-style: none;
  padding-left: 0;
}

.services-text li {
  margin-bottom: 14px;
  font-size: 18px;
  position: relative;
  padding-left: 24px;
}

.services-text li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--orange);
}

@media (max-width: 768px) {
  .services-layout {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .services-image {
    width: 100%;
    max-width: 320px;
    height: 320px;
  }

  .services-text {
    max-width: 100%;
  }
}

/* =========================
   FAQ
========================= */
.faq details {
  border-top: 1px solid #bcbcbc;
  padding: 18px 0;
}

.faq details:last-of-type {
  border-bottom: 1px solid #bcbcbc;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
  padding-right: 10px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 300;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  margin: 14px 0 0 0;
  max-width: 720px;
  color: #444;
}

/* =========================
   Reviews
========================= */
.reviews-section {
  text-align: center;
}

.reviews-slider {
  max-width: 800px;
  margin: 60px auto 30px;
}

.review {
  display: none;
}

.review.active {
  display: block;
}

.review-stars {
  color: var(--orange);
  font-size: 18px;
  margin-bottom: 18px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 22px;
  line-height: 1.6;
}

.review-author {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.7;
}

.review-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.review-controls button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #555;
  cursor: pointer;
}

.review-controls button.active {
  background: var(--orange);
}

/* =========================
   Contact
========================= */

/* =========================
   Contactpagina – Layout
========================= */

.contact-page {
  background: #fff;
}

/* Intro boven formulier */
.contact-intro {
  max-width: 600px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 16px;
  color: rgba(0,0,0,0.75);
  line-height: 1.7;
}

/* =========================
   Contactformulier
========================= */

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.contact-form button {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.honeypot {
  display: none !important;
}

/*====================
De onderstaande code is tijdelijk totdat het contactform actief is
===================== */

.contact-email-cta {
  margin-top: 30px;
  text-align: center;
}

.contact-email-cta a {
  font-size: 18px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
}

.contact-email-cta a:hover {
  text-decoration: underline;
}


/* Contact intro – standaard (lichte secties) */
.contact-intro {
  max-width: 700px;
  margin: 30px auto 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.75);
}

/* Contact intro in donkere hero */
.section.dark .contact-intro {
  color: rgba(255, 255, 255, 0.85);
}

/* =========================
   dit blok mag dus weg als het form actief is
========================= */


/* =========================
   Contact video (hero-style)
========================= */

.contact-video-section {
  margin-top: 100px;
  text-align: center;
}

/* Eén video-blok */
.contact-video-item {
  max-width: 900px;
  margin: 0 auto;
}

/* Titel boven video */
.contact-video-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-video-title span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: rgba(0,0,0,0.6);
  margin-top: 6px;
}

/* Wrappen dezelfde video-style als hero */
.contact-video-wrapper {
  margin-top: 40px;
}

/* Re-use hero video styles */
.contact-video-wrapper video {
  width: 100%;
  border-radius: 12px;
}

/* Always-on play overlay (subtieler dan hero) */
.contact-video-wrapper .play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 48px;
  color: #fff;
  background: rgba(0,0,0,0.25);
  pointer-events: none;
}

/* =========================
   Mobile optimalisatie
========================= */

@media (max-width: 768px) {
  .contact-video-section {
    margin-top: 70px;
  }

  .contact-video-title {
    font-size: 16px;
  }

  .contact-video-wrapper {
    margin-top: 30px;
  }
}


/* =========================
   Footer – Visual Shell
========================= */

.site-footer a[href^="tel"] {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.site-footer a[href^="tel"]:hover {
  color: var(--orange);
}

.site-footer {
  margin-top: auto;
  width: 100%;
  background: #000;
}


.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 10% 50px;
  color: #fff;

  display: flex;
  flex-direction: column;
  align-items: center; 
  text-align: center;    
  gap: 26px;
}


/* Bedrijfsnaam */
.site-footer h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

/* Omschrijving */
.site-footer p {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* Contact links */
.site-footer a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--orange);
}

/* Subtiele scheidingslijn */

.site-footer hr {
  width: 80px;
  margin: 20px auto;
  background: rgba(255,255,255,0.15);
}

}

/* CTA-link */
.footer-cta {
  color: var(--orange);
  font-weight: 600;
  margin-top: 10px;
}


/* Copyright */
.footer-small {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 30px;
}

/* Mobile spacing */
@media (max-width: 768px) {
  .footer-inner {
    padding: 50px 6%;
  }
}
``

/* =========================
   Objections Section
========================= */

.objections-section {
  text-align: center;
}

.objections-section h2 {
  margin-bottom: 60px;
}

/* 3 kolommen */
.objections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 80px;
}

.objection h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

.objection img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 0 auto 20px;
  opacity: 0.9;
  display: block;
  margin: 0 auto 20px

}

.objection p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

/* Divider met tekst */


.objections-divider {
  max-width: 900px;
  margin: 60px auto;
  text-align: center; /* zet op center als je wilt centreren */
}

.objections-divider span {
  display: block;
  font-weight: 600;
  font-size: 16px;
  padding: 18px 0;
  position: relative;
}

/* Lijn boven */
.objections-divider span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.25);
}

/* Lijn onder */
.objections-divider span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.25);
}


/* Tekst onder divider */
.objections-text {
  max-width: 900px;
  margin: 0 auto 30px;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
}

/* Mobile */
@media (max-width: 768px) {
  .objections-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* =========================
   Video Showcase Section
========================= */

.video-showcase {
  text-align: center;
}

/* Eén video-blok */
.video-item {
  max-width: 800px;
  margin: 0 auto 70px;
}

.interactive-video {
  cursor: pointer;
}

.interactive-video .play-overlay {
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.interactive-video:hover .play-overlay {
  opacity: 1;
}


/* Titel boven video */
.video-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.video-title span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: rgba(0,0,0,0.6);
  margin-top: 6px;
}

/* Video zelf */
.video-showcase .video-wrapper {
  position: relative;
  margin-top: 30px;
}

.video-showcase video {
  width: 100%;
  border-radius: 12px;
}

/* Always-on play overlay */
.video-showcase .play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 56px;
  color: #fff;
  background: rgba(0,0,0,0.25);
  pointer-events: none;
}

/* Tussenlijn */
.video-showcase hr {
  border: none;
  height: 1px;
  background: rgba(0,0,0,0.15);
  max-width: 300px;
  margin: 80px auto;
}

/* Mobile */
@media (max-width: 768px) {
  .video-item {
    margin-bottom: 50px;
  }

  .video-title {
    font-size: 18px;
  }
}


/* =========================
   Werk / Portfolio
========================= */

.work-intro {
  text-align: center;
}

.work-intro p {
  max-width: 620px;
  margin: 20px auto 0;
  opacity: 0.7;
}

.work-category {
  text-align: center;
}

.work-category-intro {
  max-width: 600px;
  margin: 0 auto 60px;
  opacity: 0.75;
}

/* Grid per categorie */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Item */
.work-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.work-caption {
  margin-top: 15px;
  font-size: 14px;
  opacity: 0.7;
}

/* CTA */
.work-cta {
  text-align: center;
}

.work-cta p {
  margin-bottom: 20px;
  font-size: 16px;
}


.normal-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;   /* TERUG NAAR NORMAAL */
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}

.normal-video video {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* GEEN CROP */
}
