body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #0b0b0c; /* diep zwart met nuance */
  color: #eaeaea;      /* zacht wit, geen hard #fff */
  letter-spacing: 0.3px;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 1px;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(15, 15, 16, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #1f1f1f;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: 3px;
  font-size: 1.8rem;
  color: #d4af37;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.logo:hover {
  color: #ffffff;
  transform: scale(1.05);
}

.contact-link {
  font-family: inherit;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-decoration: none;
  display: inline;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #d4af37;
}

.container { max-width:1200px; margin:auto; padding:20px; }
.nav { display:flex; justify-content:space-between; align-items:center; flex-wrap: wrap; gap: 10px; }

nav {
  display: flex;
  gap: 0;
}

nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #eaeaea;
  font-weight: 400;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.3s ease;
  padding: 8px 0;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 1px;
  background: #d4af37;
  transition: width 0.3s ease;
}

nav a:hover {
  color: #ffffff;
}

nav a:hover::after {
  width: 100%;
}

/* Mobile Navigation */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #d4af37;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

nav.mobile-active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(15, 15, 16, 0.95);
  border-bottom: 1px solid #222;
  gap: 0;
  width: 100%;
}

nav.mobile-active a {
  margin-left: 0;
  padding: 12px 20px;
  border-bottom: 1px solid #1f1f1f;
  width: 100%;
}

.banner {
  background: linear-gradient(to right, #111, #1a1a1a);
  text-align: center;
  padding: 20px;
  border-bottom: 1px solid #222;
}

.banner-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #ff0000;
  margin-bottom: 12px;
}

.banner p {
  color: #d4af37;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 8px 0;
  font-size: 0.95rem;
}

.banner a {
  color: #d4af37;
  text-decoration: none;
}

.banner a:hover {
  color: #ffffff;
}

@keyframes blink {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0.3;
  }
}

.hero { position:relative; height:80vh; overflow:hidden; }
.hero iframe { position:absolute; width:100%; height:100%; border:0; }
.overlay { position:absolute; width:100%; height:100%; background:rgba(0,0,0,0.1); }
.hero-content { position:relative; color:#fff; text-align:center; top:40%; }
.gallery { padding:60px 20px; }
.gallery .grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:20px; }
.gallery img { width:100%; border-radius:12px; }


input,
textarea {
  padding: 14px;
  background: #111;
  border: 1px solid #222;
  border-radius: 10px;
  color: #fff;
  font-size: 0.95rem;
  transition: border 0.3s ease, background 0.3s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border: 1px solid #d4af37;
  background: #161616;
}

button {
  padding: 14px;
  background: #d4af37;
  color: #111;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background: #e6c35c;
  transform: translateY(-2px);
}

footer {
  text-align: center;
  padding: 40px;
  border-top: 1px solid #222;
  background: #0b0b0c;
  color: #777;
  font-size: 0.85rem;
}

.media {
  padding:80px 20px;
}

.media h2 {
  text-align:center;
  margin-bottom:40px;
}

.video-wrapper {
  max-width:1000px;
  margin:0 auto;
}

.video-wrapper iframe {
  width:100%;
  aspect-ratio: 16 / 9; /* pas dit aan naar juiste verhouding */
  border-radius:12px;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #000; /* nette achtergrond voor de lege 25% */
}

/* SLIDESHOW */
.slideshow {
  position: relative;
  width: 75%;
  height: 100%;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  opacity: 0;
  transform: scale(1);
  transition: opacity 2s ease-in-out, transform 6s ease-in-out;
}

.slide.active {
  opacity: 1;
  transform: scale(1.08); /* subtiele cinematic zoom */
}

/* PREMIUM OVERLAY */
.overlay {
  position: absolute;
  width: 75%;
  height: 100%;
  z-index: 2;

  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.3) 0%,
      rgba(0,0,0,0.15) 40%,
      rgba(0,0,0,0.3) 100%
    );
}

/* HERO CONTENT */
.hero-content {
  position: absolute;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  letter-spacing: 2px;
  font-weight: 500;
}

.hero-content p {
  margin-top: 1rem;
  font-size: 1.2rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .slideshow,
  .overlay {
    width: 100%;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  /* Mobile Navigation */
  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
  }

  header .container {
    padding: 15px 20px;
  }

  /* Hero adjustments for mobile */
  .hero {
    height: 60vh;
    min-height: 400px;
  }

  .hero-content {
    padding: 0 16px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }

  .hero-content p {
    font-size: 0.95rem;
    margin-top: 0.8rem;
  }

  /* Gallery grid for mobile */
  .gallery .grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
  }

  /* Contact section mobile */
  .contact {
    padding: 20px 16px 60px 16px;
    min-height: auto;
  }

  .contact h2 {
    font-size: 1.5rem;
  }

  .contact p {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .price {
    font-size: 1.1rem;
  }

  .form-title {
    font-size: 1.3rem;
    margin-top: 32px;
  }

  .contact form {
    max-width: 100%;
  }

  /* Input/button sizing for mobile */
  input,
  textarea {
    padding: 12px;
    font-size: 16px; /* prevents zoom on iOS */
  }

  button {
    padding: 12px;
    font-size: 1rem;
  }

  /* Media section */
  .media {
    padding: 40px 20px;
  }

  .media h2 {
    font-size: 1.5rem;
  }

  /* Video wrapper responsive */
  .video-wrapper {
    max-width: 100%;
  }

  /* Footer */
  footer {
    padding: 30px 20px;
    font-size: 0.8rem;
  }

  .banner-title {
    font-size: 2rem;
    letter-spacing: 2px;
  }
}

@media (max-width: 480px) {
  h1, h2, h3 {
    letter-spacing: 0.5px;
  }

  nav.mobile-active a {
    padding: 16px 16px;
    font-size: 1rem;
  }

  .logo {
    font-size: 1.4rem;
    letter-spacing: 2px;
  }

  .menu-toggle {
    font-size: 1.3rem;
  }

  .container {
    padding: 16px;
  }

  .banner {
    padding: 12px 8px;
    font-size: 0.85rem;
  }

  .banner-title {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }

  .banner p {
    font-size: 0.8rem;
  }

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

  .hero-content h1 {
    font-size: 1.4rem;
  }

  .hero-content p {
    font-size: 0.85rem;
  }

  .gallery .grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 8px;
  }

  .contact h2 {
    font-size: 1.3rem;
  }

  .price {
    font-size: 1rem;
  }

  .form-title {
    font-size: 1.1rem;
    margin-top: 24px;
  }

  input,
  textarea {
    padding: 10px;
    font-size: 16px;
  }

  button {
    padding: 10px;
  }

  .media {
    padding: 30px 16px;
  }

  .media h2 {
    font-size: 1.3rem;
  }

  .lightbox img {
    max-width: 90%;
    max-height: 75%;
  }

  .lightbox button {
    padding: 0 10px;
    font-size: 1.5em;
  }

  .lightbox .close {
    right: 10px;
    top: 15px;
  }
}

/* ============================= */
/* CONTACT SECTION – CLEAN RHYTHM */
/* ============================= */

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 85vh;
  text-align: center;
  padding: 32px 20px 96px 20px;
  background: radial-gradient(circle at top, #141414, #0b0b0c 60%);
}

/* Vertical rhythm */
.contact > * + * {
  margin-top: 24px; /* 3 x 8px */
}

/* Titel boven specificaties */
.contact h2 {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 2px;
}

/* Specificaties tekst */
.contact p {
  max-width: 600px;
  line-height: 1.8;
  color: #bfbfbf;
}

/* Prijs iets meer lucht */
.price {
  font-size: 1.3rem;
  font-weight: 500;
  color: #eaeaea;
  margin-top: 32px;
}

/* Form title – strak tegen formulier */
.form-title {
  margin-top: 48px;
  margin-bottom: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: #d4af37;
}

/* Form layout */
.contact form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 420px;
}
