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

:root {
  --gold: #c9a84c;
  --gold-light: #f0d080;
  --white: #f5f0e8;
}

html, body {
  height: 100%;
  background: #000;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
}

/* Subtle noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.8rem;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  z-index: 100;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 1.8rem;
}

.nav-links a {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  color: var(--gold-light);
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-socials a {
  display: flex;
  color: var(--white);
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}

.nav-socials a:hover {
  opacity: 1;
  color: var(--gold-light);
}

.nav-socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (max-width: 480px) {
  .navbar { padding: 1rem 1.2rem; }
  .nav-links { gap: 1.1rem; }
  .nav-links a { font-size: 0.62rem; letter-spacing: 0.18em; }
  .nav-socials { gap: 0.7rem; }
  .nav-socials svg { width: 16px; height: 16px; }
}

/* Shared page layout (used by Foto's, Video's, Over ons) */
.page {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 7rem 2rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: fadeUp 1s ease both;
}

.page-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.page h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 10vw, 6rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
  color: var(--white);
}

.page h1 span {
  color: var(--gold);
}

.page .divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 1.8rem auto;
}

.page p.intro {
  max-width: 560px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(245,240,232,0.75);
}

/* Galleries */
.gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  filter: grayscale(20%) contrast(1.05);
}

/* Clickable photo / video items */
.gallery-item {
  cursor: pointer;
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  color: inherit;
  text-align: inherit;
}

.gallery-item img {
  transition: filter 0.2s ease;
}

.gallery-item:hover img {
  filter: grayscale(0%) contrast(1.05);
}

.gallery-item figcaption {
  margin-top: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
}

.gallery .placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  border: 1px dashed rgba(245,240,232,0.2);
  border-radius: 4px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
}

/* Video embeds */
.video-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-frame.placeholder {
  position: relative;
  border: 1px dashed rgba(245,240,232,0.2);
}

.video-frame.placeholder span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
}

/* Clickable video thumbnail (opens lightbox with playback) */
.video-thumb {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}

.video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
}

.gallery-item:hover .video-thumb img {
  filter: grayscale(0%) contrast(1.05);
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(245,240,232,0.4);
  color: var(--white);
  font-size: 1.2rem;
  pointer-events: none;
  transition: background 0.2s, border-color 0.2s;
}

.gallery-item:hover .play-icon {
  background: rgba(0,0,0,0.7);
  border-color: var(--gold);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(0,0,0,0.92);
  padding: 2rem;
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  display: block;
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 4px;
}

.lightbox-content .video-frame {
  width: min(90vw, 960px);
  padding-top: calc(min(90vw, 960px) * 0.5625);
}

.lightbox-caption {
  margin-top: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(245,240,232,0.6);
}

.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: 0;
  color: var(--white);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 1001;
}

.lightbox-close:hover {
  color: var(--gold-light);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(245,240,232,0.3);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 1001;
  transition: background 0.2s, border-color 0.2s;
}

.lightbox-nav:hover {
  background: rgba(0,0,0,0.65);
  border-color: var(--gold);
}

.lightbox-nav[hidden] {
  display: none;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

@media (max-width: 600px) {
  .lightbox-nav { width: 38px; height: 38px; font-size: 1.1rem; }
  .lightbox-prev { left: 0.4rem; }
  .lightbox-next { right: 0.4rem; }
}

footer {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.12);
  text-align: center;
  animation: fadeUp 1s 0.8s ease both;
  opacity: 0;
  animation-fill-mode: forwards;
}

.contact {
  position: relative;
  z-index: 1;
  margin-top: 3rem;
  text-align: center;
  animation: fadeUp 1s 0.7s ease both;
  opacity: 0;
}

.contact p {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  margin-bottom: 0.5rem;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.6rem 2rem;
}

.contact a {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--gold-light);
  text-decoration: none;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(201,168,76,0.35);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.contact a:hover {
  color: #fff;
  border-color: var(--gold);
}
