﻿/* =====================
   BASE / GLOBAL
===================== */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e6f0fa;
    color: #222222;
}

/* =====================
   HEADER / NAV
===================== */

.site-header {
    width: 1024px;
    height: 85px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: #222222;
    font-weight: 500;
}

.main-nav a:hover {
    color: #000000;
}

/* =====================
   HERO (SHARED)
===================== */

.hero {
    width: 1024px;
    min-height: 420px;
    padding: 40px 20px;
    margin: 20px auto;
    border: 2px solid #ccc;
    border-radius: 10px;
    box-sizing: border-box;

    background-image: url('/assets/images/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-logo {
    max-width: 600px;
    height: auto;
    width: 100%;
    display: block;
    margin: 0 auto 10px auto;
}
.hero {
    min-height: 380px;
}
.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    color: #000000;
}
.hero .info-block {
    color: #222222;
}

.hero-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 10px auto 4px auto;
    line-height: 1.4;
    max-width: 750px;
}

.hero-sub {
  max-width: 650px;
  margin: 20px auto 0 auto;
  text-align: center;
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.95;
}

.hero-image {
  max-width: 600px;
  margin: 40px auto;
}

.hero-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
}

.hero-image-small img {
  max-width: 650px;
}

.text-block {
  margin-bottom: 18px;
}

.text-block p {
  margin: 0;
}

.timeline {
  max-width: 650px;
  margin: 60px auto;
  text-align: center;
}
.timeline-title {
  font-size: 1.8rem;
  margin-bottom: 40px;
}

.timeline-item {
  margin-bottom: 25px;
  padding-bottom: 0;
  border-bottom: none;
}

.step {
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 5px;
}

.timeline-item h3 {
  margin: 5px 0 10px 0;
  font-size: 1.2rem;
}

.timeline-item p {
  margin: 0;
  line-height: 1.6;
  opacity: 0.9;
}

.format-table {
  width: 100%;
  max-width: 600px;
  margin: 30px auto;
  border-collapse: collapse;
}

.format-table td {
  padding: 12px 10px;
  border-bottom: 1px solid #ddd;
}

.format-table td:first-child {
  text-align: left;
  font-weight: 500;
}

.format-table td.price {
  text-align: right;
  font-weight: bold;
}

.repair-section {
  max-width: 800px;
  margin: 60px auto;
  text-align: center;
}

.repair-item {
  margin: 25px 0;
  text-align: left;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

.repair-item h3 {
  margin-bottom: 5px;
}

.repair-item p {
  margin: 0;
  line-height: 1.6;
}

.repair-note {
  margin-top: 30px;
  font-size: 1rem;
}

.image-row {
  max-width: 900px;
  margin: 40px auto;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.image-item {
  flex: 0 0 300px;
}

.image-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.video-embed {
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  aspect-ratio: 16 / 9;
  align-self: stretch;
}

.video-embed-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  display: block;
}

.packages {
  max-width: 1024px;
  margin: 60px auto;
  display: flex;
  gap: 20px;
  box-sizing: border-box;
}
.package {
  position: relative;
  overflow: hidden;
}

/* overlay effect */
.package::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(173, 216, 230, 0.35);
  }

/* inhoud boven overlay */
.package-content {
  position: relative;
  z-index: 1;
  padding: 20px;
}

/* optioneel: achtergrond per pakket */
.package.left {
  background-image: url('/assets/images/pakket1.jpg');
  background-size: cover;
  background-position: center;
}

.package.right {
  background-image: url('/assets/images/pakket2.jpg');
  background-size: cover;
  background-position: center;
}
/* =====================
   INFO / CONTENT
===================== */

.info-card {
    display: block;
    text-decoration: none;
    color: #222222;
    margin: 15px 0;
}

.info-block h3 {
    margin-bottom: 5px;
}

.info-block p {
    margin-top: 0;
}

/* =====================
   VOORDELEN / TRUST
===================== */

.voordelen {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    width: 1024px;
}

.voordelen li {
    margin: 5px 0;
}

.trust-section {
    width: 1024px;
    margin: 20px auto;
    padding: 20px;
    border: 2px solid #ccc;
    border-radius: 10px;
    box-sizing: border-box;
    text-align: center;
}


.freelance-cameraman {
    width: 1024px;
    margin: 30px auto;
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    border: 2px solid #ccc;
    background-image: url('/assets/images/hero.png');
    background-size: cover;
    background-position: center;
    color: #000;
    box-sizing: border-box;
}
/* =====================
   HOME ONLY - BLOKKEN
===================== */

.blokjes-kader {
    width: 1024px;
    margin: 20px auto;
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    border: 2px solid #ccc;
    border-radius: 10px;
    box-sizing: border-box;
    background-image: url('/assets/images/blokje.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.blokje {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    width: 220px;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    background-color: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
    color: #222222;
}

.blokje img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 5px;
}

.blokje:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.blokje span {
    display: block;
    margin-top: 5px;
    font-weight: 500;
}

/* =====================
   HOME ONLY - VIDEO
===================== */

.video-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.video-card {
    position: relative;
    width: 300px;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: transform 0.2s;
}

.video-card img {
    width: 100%;
    display: block;
}

.video-card:hover {
    transform: scale(1.05);
}

.play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: white;
    opacity: 0.8;
    pointer-events: none;
}

/* =====================
   VIDEO POPUP
===================== */

.video-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

.video-popup-content {
    position: relative;
    width: 80%;
    max-width: 800px;
}

.video-popup-content iframe {
    width: 100%;
    height: 450px;
}

#closePopup {
    position: absolute;
    top: -30px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
}
