/* ============================================================
   Motion of the Ocean — gedeelde stijl
   Lichtkunstinstallatie: gloeilampen boven de oceaan
   ============================================================ */

:root {
  --ocean-blue:     #427AB5;  /* Helder oceaanblauw — links, accenten */
  --deep-blue:      #406AAF;  /* Diep water — hover-states */
  --filament-gold:  #F7DD7D;  /* Warm gloeilamp-goud — titels, CTA's */
  --warm-cream:     #FFE8BE;  /* Zacht roomwit — bodytekst */

  --night-dark:     #0D1B2A;  /* Nachtelijke achtergrond */
  --water-dark:     #1A2F4A;  /* Donker water — secties, cards */
  --glow-soft:      rgba(247, 221, 125, 0.15);

  --nav-height: 72px;
}

/* ---------- Reset & basis ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  color: var(--warm-cream);
  background: var(--night-dark);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--filament-gold);
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.1;
}

a {
  color: var(--ocean-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--filament-gold);
}

img {
  max-width: 100%;
  display: block;
}

/* ============================================================
   Navigatie — horizontaal, bovenin, op elke pagina
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  z-index: 100;
  background: rgba(13, 27, 42, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(247, 221, 125, 0.08);
  transition: background 0.4s ease;
}

.nav__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  color: var(--filament-gold);
  white-space: nowrap;
}

.nav__brand:hover {
  color: var(--filament-gold);
}

.nav__links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
}

.nav__link {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-cream);
  opacity: 0.75;
  position: relative;
  padding: 0.25rem 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--filament-gold);
  transition: width 0.35s ease;
}

.nav__link:hover,
.nav__link[aria-current="page"] {
  color: var(--filament-gold);
  opacity: 1;
}

.nav__link:hover::after,
.nav__link[aria-current="page"]::after {
  width: 100%;
}

/* Mobiel menu-toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--filament-gold);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

/* ============================================================
   Landingspagina — video-hero
   ============================================================ */
.landing {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.landing__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Donkere sluier over de video voor leesbaarheid */
.landing__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at center, rgba(13, 27, 42, 0.25) 0%, rgba(13, 27, 42, 0.7) 100%),
    linear-gradient(180deg, rgba(13, 27, 42, 0.45) 0%, rgba(13, 27, 42, 0.25) 45%, rgba(13, 27, 42, 0.65) 100%);
}

.landing__content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.landing__title {
  font-size: clamp(1.8rem, 8.5vw, 7rem);
  white-space: nowrap;
  text-align: center;
  color: var(--filament-gold);
  text-shadow: 0 0 30px rgba(247, 221, 125, 0.35), 0 2px 20px rgba(0, 0, 0, 0.5);
  animation: glow-text 5s ease-in-out infinite;
}

.landing__subtitle {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  font-weight: 300;
  text-align: center;
  color: var(--warm-cream);
  letter-spacing: 0.05em;
  opacity: 0.9;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
}

/* Zachte scroll-indicator */
.landing__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--filament-gold));
  opacity: 0.6;
  animation: scroll-hint 2.5s ease-in-out infinite;
}

@keyframes glow-text {
  0%, 100% { text-shadow: 0 0 30px rgba(247, 221, 125, 0.3), 0 2px 20px rgba(0, 0, 0, 0.5); }
  50%      { text-shadow: 0 0 45px rgba(247, 221, 125, 0.55), 0 2px 20px rgba(0, 0, 0, 0.5); }
}

@keyframes scroll-hint {
  0%, 100% { opacity: 0.2; transform: translateX(-50%) scaleY(0.7); }
  50%      { opacity: 0.7; transform: translateX(-50%) scaleY(1); }
}

/* ============================================================
   Inhoudspagina's — gedeelde opbouw
   ============================================================ */
.page {
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 5rem;
  min-height: 100vh;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.page__label {
  font-family: 'Lato', sans-serif;
  color: var(--ocean-blue);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.page__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 2.5rem;
}

.page__lead {
  font-size: 1.25rem;
  max-width: 620px;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.prose p {
  max-width: 620px;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.prose p:first-of-type::first-letter {
  font-family: 'Cormorant Garamond', serif;
  color: var(--filament-gold);
  font-size: 3.2rem;
  line-height: 1;
  float: left;
  margin: 0.1em 0.15em 0 0;
}

/* Citaat / pullquote */
.quote {
  max-width: 620px;
  margin: 3rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid rgba(247, 221, 125, 0.5);
}

.quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--filament-gold);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.quote cite {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-style: normal;
  letter-spacing: 0.05em;
  color: var(--ocean-blue);
  opacity: 0.85;
}

/* Signatuur met portret */
.signature {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 1.5rem 0 2rem;
}

.signature__photo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(247, 221, 125, 0.4);
  box-shadow: 0 0 18px rgba(247, 221, 125, 0.2);
  flex-shrink: 0;
}

.signature__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--filament-gold);
  letter-spacing: 0.06em;
}

/* Klikbare foto */
.zoomable {
  cursor: zoom-in;
  transition: box-shadow 0.3s ease;
}

.zoomable:hover {
  box-shadow: 0 0 26px rgba(247, 221, 125, 0.45);
}

/* Lichtbox-overlay */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 4px;
  box-shadow: 0 0 50px rgba(247, 221, 125, 0.25);
  cursor: zoom-out;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--filament-gold);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.lightbox__close:hover {
  opacity: 1;
}

/* Sectiekop binnen een pagina */
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 1.5rem;
}

/* Golf-divider */
.wave-divider {
  width: 100%;
  line-height: 0;
  margin: 3rem 0;
}
.wave-divider svg {
  width: 100%;
  height: 50px;
}
.wave-divider path {
  fill: rgba(66, 122, 181, 0.18);
}

/* ============================================================
   Media-pagina — placeholder grid
   ============================================================ */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.media-placeholder {
  aspect-ratio: 4 / 3;
  border: 1px dashed rgba(66, 122, 181, 0.35);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ocean-blue);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  background: var(--water-dark);
  transition: border-color 0.3s ease, opacity 0.3s ease;
}

.media-placeholder:hover {
  border-color: rgba(247, 221, 125, 0.4);
  opacity: 0.9;
}

/* Gecentreerde video-embed (bv. Instagram reel) */
.reel {
  max-width: 400px;
  margin: 3rem auto 0;
}

.reel__frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(247, 221, 125, 0.25);
  box-shadow: 0 0 45px rgba(247, 221, 125, 0.12), 0 20px 50px rgba(0, 0, 0, 0.45);
}

.reel__frame iframe {
  width: 100%;
  height: 640px;
  border: 0;
  display: block;
}

.reel__caption {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.media-note {
  margin-top: 2.5rem;
  font-size: 0.95rem;
  opacity: 0.6;
  font-style: italic;
}

/* ============================================================
   Bezoek-info kaarten
   ============================================================ */
.visit__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.visit__card {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(66, 122, 181, 0.3);
  border-radius: 3px;
  background: var(--water-dark);
  transition: border-color 0.3s ease;
}

.visit__card:hover {
  border-color: rgba(247, 221, 125, 0.4);
}

.visit__icon {
  display: block;
  color: var(--filament-gold);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.visit__card h3 {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ocean-blue);
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.visit__card p {
  font-size: 0.95rem;
  opacity: 0.85;
}

.visit__card p + p {
  margin-top: 1rem;
}

/* Opvallende, klikbare event-titel binnen de kaart */
.visit__event {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  letter-spacing: 0.04em;
  color: var(--filament-gold);
  margin-bottom: 1.25rem;
  transition: text-shadow 0.3s ease;
}

.visit__event:hover {
  color: var(--filament-gold);
  text-shadow: 0 0 18px rgba(247, 221, 125, 0.5);
}

.visit__card p strong {
  color: var(--warm-cream);
  font-weight: 400;
  opacity: 1;
}

/* ============================================================
   Knoppen
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--filament-gold);
  color: var(--filament-gold);
  padding: 0.8rem 2.2rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-family: 'Lato', sans-serif;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  animation: glow-pulse 3.5s ease-in-out infinite;
}

.btn-primary:hover {
  background: var(--filament-gold);
  color: var(--night-dark);
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(247, 221, 125, 0.25), 0 0 30px rgba(247, 221, 125, 0.08); }
  50%      { box-shadow: 0 0 20px rgba(247, 221, 125, 0.5), 0 0 60px rgba(247, 221, 125, 0.18); }
}

/* ============================================================
   Contactformulier
   ============================================================ */
.contact-form {
  max-width: 520px;
  margin-top: 2rem;
}

.contact-form label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ocean-blue);
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--water-dark);
  border: 1px solid rgba(66, 122, 181, 0.3);
  border-radius: 3px;
  padding: 0.85rem 1rem;
  color: var(--warm-cream);
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(247, 221, 125, 0.5);
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-form .btn-primary {
  margin-top: 2rem;
}

/* ============================================================
   Footer / credits
   ============================================================ */
.footer {
  border-top: 1px solid rgba(247, 221, 125, 0.08);
  padding: 2.5rem 2rem;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.6;
}

.footer a {
  color: var(--warm-cream);
}

/* ============================================================
   Scroll-reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 768px) {
  .nav {
    padding: 0 1.25rem;
  }

  .nav__toggle {
    display: block;
  }

  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    flex-direction: column;
    gap: 0;
    background: rgba(13, 27, 42, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(247, 221, 125, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .nav__links.open {
    max-height: 400px;
  }

  .nav__link {
    padding: 1rem 1.5rem;
    width: 100%;
    border-top: 1px solid rgba(66, 122, 181, 0.12);
  }

  .visit__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Toegankelijkheid — reduceer beweging
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
