
/* =========================
   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;
  display: flex;
  justify-content: center;
}

.logo-wrapper {
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-wrapper img {
  max-width: 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.dark {
  background: #000;
  color: #fff;
}

.section.light {
  background: #fff;
  color: #000;
}

.section h2 {
  text-align: center;
}

/* =========================
   Hero
========================= */
.hero {
  padding-top: 40px;
  padding-bottom: 80px;
  text-align: center;
}

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

/* Cinematic video */
.cinematic-video {
  position: relative;
  width: 100%;
  aspect-ratio: 2.9 / 1;
  overflow: hidden;
  border-radius: 12px;
}

.cinematic-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   Video wrapper + interaction
========================= */
.video-wrapper {
  position: relative;
  margin-top: 40px;
}

.video-wrapper video {
  width: 100%;
  border-radius: 12px;
}

.interactive-video {
  cursor: pointer;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 56px;
  color: #fff;
  pointer-events: none;
  opacity: 0.8;
}

/* =========================
   CTA Blocks
========================= */
.cta-container {
  position: relative;
  min-height: 160px;
}

.cta-box {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  background: var(--orange);
  padding: 30px 60px;
  border-radius: 12px;
}

.cta-box a {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

/* =========================
   Intro text
========================= */
.intro-text {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
}

/* =========================
   Video Showcase (trouwfilms)
========================= */
.video-showcase {
  text-align: center;
}

.video-item {
  max-width: 900px;
  margin: 0 auto 70px;
}

.video-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.video-title span {
  display: block;
  font-size: 14px;
  opacity: 0.6;
  margin-top: 6px;
}

/* Normale video (geen crop) */
.normal-video {
  aspect-ratio: 16 / 9;
  background: #000;
}

.normal-video video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

hr {
  border: none;
  height: 1px;
  background: rgba(0,0,0,0.15);
  max-width: 300px;
  margin: 80px auto;
}

/* =========================
   Reviews
========================= */
.reviews-section {
  text-align: center;
}

.reviews-slider {
  max-width: 800px;
  margin: 60px auto 30px;
  position: relative;
}

.review {
  display: none;
  text-align: center;
}

.review.active {
  display: block;
}

.review-stars {
  color: var(--orange);
  font-size: 18px;
  margin-bottom: 18px;
}

.review-text {
  font-size: 22px;
  line-height: 1.7;
}

.review-author {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.7;
}

/* =========================
   Review controls (bolletjes)
========================= */

.review-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.review-controls button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.25); /* standaard grijs */
  cursor: pointer;
  padding: 0;
}

/* Actieve bol */
.review-controls button.active {
  background: var(--orange);
}

/* Hover effect */
.review-controls button:hover {
  background: var(--orange);
  opacity: 0.7;
}

/* =========================
   Contact (mail only)
========================= */
.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;
}

/* =========================
   Footer – Arjan Prins Films
========================= */

.site-footer {
  margin-top: auto;
  background: #000;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 10% 60px;
  color: #fff;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

/* Naam */
.site-footer h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

/* Ondertitel */
.site-footer p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

/* Contactlinks */
.site-footer a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--orange);
}

/* Scheidingslijn */
.site-footer hr {
  width: 60px;
  height: 1px;
  border: none;
  background: rgba(255,255,255,0.2);
  margin: 10px 0;
}

/* CTA-link */
.footer-cta {
  font-size: 15px;
  font-weight: 600;
  color: var(--orange);
}

/* Zusterbedrijf */
.footer-sister {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.footer-sister a {
  color: var(--orange);
}

/* Copyright */
.footer-small {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 20px;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-inner {
    padding: 60px 6% 50px;
  }
}

/* =========================
   Pricing – Trouwpakketten
========================= */

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

.pricing-intro {
  max-width: 720px;
  margin: 20px auto 70px;
  font-size: 18px;
  opacity: 0.8;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.price-card {
  background: #fff;
  border-radius: 16px;
  padding: 50px 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-card.featured {
  transform: scale(1.05);
  border: 2px solid var(--orange);
}

.price-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 10px;
}

.price-title {
  font-size: 22px;
  margin-bottom: 30px;
}

.price-usps {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}

.price-usps li {
  margin-bottom: 14px;
  font-size: 16px;
}

.price-button {
  display: inline-block;
  margin-top: auto;
  background: var(--orange);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
}

.price-button:hover {
  opacity: 0.9;
}

/* Op maat kaart */
.price-custom-text {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 40px;
}

.pricing-note {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  opacity: 0.7;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}


.section.dark.pricing-section .price-card {
  background: #fff;        /* lichte kaart */
  color: #000;             /* zwarte tekst */
}

/* =========================
   Sister company (JJP Media)
========================= */

.sister-company {
  padding: 80px 10%;
  background: #f7f7f7; /* net anders dan wit */
}

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

.sister-company p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(0,0,0,0.65);
}

.sister-company a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
}

.sister-company a:hover {
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
  .sister-company {
    padding: 60px 6%;
  }
}
