@charset "utf-8";

/* === BASIS === */
html, body { width: 100%; height: 100%; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, p{
	margin:0;
	padding:0;
	font-family: neulis-sans, sans-serif;
}

h1{
  font-family: neulis-sans, sans-serif;
  font-weight: 600;
  font-size: 96px;
  line-height: 100%;
    padding-bottom:25px!important;
  padding-top:35px;
}

@media (max-width: 640px) {
  h1{
    font-size: 56px !important;
  }
}

h2{  
  font-weight: 500;
  font-size: 48px;
  line-height: 100%;
  padding-bottom:25px!important;
  padding-top:35px;
  
}

/* h2{
	font-size: 36px;
  	font-weight: 500;
  	display: inline-block;
  	transform: translateY(6px);
  	opacity: 0;
  	transition: transform 0.7s ease 0.12s, opacity 0.7s ease 0.12s, color 0.8s ease;
} */

p{
	font-size:20px;
	font-weight:300;
	line-height:150%;
	color:#fff!important;
	padding-bottom:25px;
}

.par-title{
  font-weight:500;
  color:#00ffb0;
}

.bigger{
  font-size:24px!important;
}

.light{
  font-weight:100!important;
  margin-left:5px;
  margin-right:5px;
  opacity:0.5;
}

b{
  font-weight:500;
}

p a{
  border-bottom:1px solid #00ffb0;
  padding-bottom:5px;
  color:inherit;
  text-decoration:inherit;
}

p a:hover{
  color:#00ffb0;;
}

/* === INTRO HEADER === */
.header {
  position: fixed;
  inset: 0;
  background: #0000ff;
  z-index: 9999;
  transition: transform 0.8s ease;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}


body:not(.is-exiting) {
  overflow: hidden;             /* disables scroll */
  overscroll-behavior: none;    /* prevents bounce/refresh on some browsers */
  touch-action: none;           /* reduces touch scrolling on mobile */
}

.is-exiting .header { 
  transform: translateX(-100vw);
  pointer-events: none; /* <- important for Edge */
}

.is-exiting .header-button {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s ease;
}

/* === HEADER BUTTON === */
.header-button {
  background: #00ffb0;
  color: #0000ff;
  padding: 20px 40px 25px 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 120px;
  font-family: neulis-cursive, sans-serif;
  font-weight: 500;
  font-size: 24px;
  cursor: pointer;
  border: 2px solid transparent;
  transition:
    opacity 3s ease,
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    filter 0.3s ease;
}
.header-button:hover { background: #0000ff; color: #00ffb0; border-color: #00ffb0; }
.header-button:active { opacity: 0.5; transition: opacity 0.1s ease; }


/* === SITE === */
.site {
  width: 100%;
  min-height: 100dvh;
  transform: translateX(6vw);
  opacity: 0;
  filter: blur(6px);
  pointer-events: none;
  transition: transform .8s ease, opacity .8s ease, filter .8s ease;
}

.is-exiting{
  overflow: auto !important;
  overscroll-behavior: auto !important;
  touch-action: auto !important;
}

.is-exiting .site {
  transform: translateX(0);
  opacity: 1;
  filter: none;
  pointer-events: auto;
}

/* === SECTIES === */
.main-header,
.big-section {
  width: 100%;
  height: 100vh;           /* vaste viewporthoogte, niet kleiner */
  min-height: 100vh;       /* fallback voor browsers die height negeren */
  position: relative;
  transition: background-color 0.8s ease;
  overflow: hidden;        /* voorkomt scrollbars door animaties */
}


.main-header { background: #0000ff; }
.main-header .big-quote { color: #00ffb0; }
.main-header.section-active { background: #00ffb0; }
.main-header.section-active .big-quote { color: #0000ff; }

.big-section { background: #00ffb0; }
.big-section .big-quote { color: #0000ff; }
.big-section.section-active { background: #0000ff; }
.big-section.section-active .big-quote { color: #00ffb0; }

/* === QUOTES === */
.big-quote {
  font-family: neulis-sans, sans-serif;
  font-weight: 600;
  font-size: 96px;
  line-height: 100%;
  position: absolute;
  bottom: 75px;
  max-width: 750px;
  transform: translateY(12px) scale(.96);
  opacity: 0;
  letter-spacing: -0.01em;
  transition:
    color 0.8s ease,
    transform 0.8s cubic-bezier(.22,.61,.36,1),
    opacity 0.8s ease,
    letter-spacing 0.8s ease;
}
.main-header .big-quote { left: 75px; text-align: left; }
.big-section .big-quote { right: 75px; text-align: right; }
.section-active .big-quote { transform: translateY(0) scale(1); opacity: 1; }

.subquote {
  font-size: 36px;
  font-weight: 500;
  display: inline-block;
  transform: translateY(6px);
  opacity: 0;
  transition: transform 0.7s ease 0.12s, opacity 0.7s ease 0.12s, color 0.8s ease;
}
.section-active .big-quote .subquote { transform: translateY(0); opacity: 1; }

.blue-section{
	background:#0000ff;
}

.blue-section h1, h2, h3, h4, p{
	color:#00ffb0; 
}

.text-section{
	padding-bottom:250px;
}

.text-wrapper{
	position:relative;
	padding-top:150px;
	width:calc(100% - 150px);
	max-width:650px;
	left:50%;
	transform: translate(-50%, -0%);
}

.title-button{
padding: 10px 16px;
  font: 500 16px/1 neulis-sans, system-ui, sans-serif;
  border-radius: 999px;
  border: 2px solid #fff;
  color:#fff;
  left:-25px;
}


/* === MENU KNOP === */
.menu-button {
  position: fixed;
  top: 75px;
  right: 75px;
  z-index: 4000;
  padding: 10px 16px;
  font: 500 16px/1 neulis-sans, system-ui, sans-serif;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background-color 0.8s ease,
    color 0.8s ease,
    border-color 0.8s ease,
    opacity 0.25s ease;
}

/* Dynamische kleuren via root state */
.at-main .menu-button { background: #0000ff; color: #00ffb0; border-color: #00ffb0; }
.at-big  .menu-button { background: #00ffb0; color: #0000ff; border-color: #0000ff; }

/* Hover: transparant met sectiekleur */
.at-main .menu-button:hover {
  background: transparent;
  color: #0000ff;
  border-color: #0000ff;
  background: #00ffb0;
}
.at-big .menu-button:hover {
  background: transparent;
  color: #00ffb0;
  border-color: #00ffb0;
}

.menu-button:active { opacity: 0.5; }

/* === MENU OVERLAY === */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.menu-open #menu-overlay { opacity: 1; pointer-events: auto; }
.menu-panel { position: absolute;   top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);}
.menu-list { text-align:center; list-style: none; margin: 0; padding: 0; display: grid; gap: 50px; }
.menu-list a {
  text-decoration: none;
font: 400 clamp(18px, 3vw, 28px)/1.1 neulis-sans, system-ui, sans-serif;
  color: #00ffb0;
  opacity: 0;
  transform: translateY(6px);
  transition: color .25s ease, transform .4s cubic-bezier(.22,.61,.36,1), opacity .4s ease;
  border:2px solid;
  border-radius:100px;
  padding:10px 25px 15px 25px;
}
.menu-list a:hover { color: #fff; }
.menu-open .menu-list a { transform: translateY(0); opacity: 1; }
.menu-open .menu-list li:nth-child(1) a { transition-delay: .05s; }
.menu-open .menu-list li:nth-child(2) a { transition-delay: .1s; }
.menu-open .menu-list li:nth-child(3) a { transition-delay: .15s; }
.menu-open .menu-list li:nth-child(4) a { transition-delay: .2s; }
.menu-open .menu-list li:nth-child(5) a { transition-delay: .25s; }

/* Menu open: basis + hover */
.menu-open .menu-button {
  background: transparent !important;
  color: #00ffb0 !important;
  border-color: #00ffb0 !important;
  opacity: 1;
}
.menu-open .menu-button:hover {
  background: #00ffb0 !important;
  color: #0000ff !important;
  border-color: #00ffb0 !important;
}
.menu-open .menu-button:active {
  opacity: 0.8;
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }
}

/* Basispositie logo's */
.logo { width: 375px; z-index: 3500; }

/* Sectie 1: blijft zoals het was (absolute) */
.main-header .logo {
  position: absolute;
  top: 75px;
  left: 75px;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

/* Sectie 2: sticky + fade-in bij activatie */
.big-section .logo {
  position: sticky;
  top: 75px;          /* plakt aan 75px van boven */
  margin-left: 75px;  /* “left:75px” vervangen door marge in de flow */
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .4s ease, transform .4s ease;
}

.big-section.section-active .logo {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.big-section { overflow: visible; }  /* overschrijft eerdere overflow */

/* === SCROLL-DOWN KNOP (rechts onder, blauw) === */
.main-header .scroll-down {
  position: absolute;
  right: 75px;
  bottom: 75px;
  z-index: 3500;
  padding: 10px 22px;
  font: 500 16px/1 neulis-sans, system-ui, sans-serif;
  border-radius: 999px;
  border: 2px solid #0000ff;   /* blauwe outline */
  background: transparent;
  color: #0000ff;              /* blauwe tekst */
  cursor: pointer;
  transform: translateY(0);
  opacity: 0;
  pointer-events: none;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.4s cubic-bezier(.22,.61,.36,1),
    opacity 0.4s ease;
  animation: floaty 3s ease-in-out infinite;
}

/* Alleen zichtbaar in sectie 1 */
.at-main .main-header .scroll-down {
  opacity: 1;
  pointer-events: auto;
}

/* Hover: blauw gevuld, witte tekst */
.main-header .scroll-down:hover {
  background: #0000ff;
  color: #ffffff;
}

/* Kleine op-en-neer beweging */
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.main-header .scroll-down::after {
  content: "↓";
  display: inline-block;
  margin-left: 12px;   /* was 6px — meer ruimte */
  transition: transform 0.3s ease;
}

/* Laat opacity aansturen door de variabele (valt terug op 1) */
.main-header .scroll-down {
  opacity: var(--scroll-btn-opacity, 1);
}

footer {
  position: relative;
  background: #00ffb0;
  text-align: center;
  font-family: neulis-sans, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  padding: 80px 0 60px;
  clip-path: polygon(0 200px, 100% 0, 100% 100%, 0% 100%);
  margin-top: -200px; /* zelfde hoogte als schuine rand */
  height: 500px;
  overflow: hidden; /* voorkomt dat iets buiten clip-path valt */
}

.footer-credit {
color: #0000ff!important; 
  opacity: 0.85;
  max-width: calc(100% - 150px);
  margin: 0 auto;
  margin-top: 260px; /* centrering in de schuine vorm */
}

.footer-credit{
  font-size:20px!important;
}

.footer-credit span {
  font-weight: 500;
  white-space: nowrap;
   border-bottom:1px solid;
}

.footer-credit span:not(:last-child)::after {
  content: "";
}

.footerLink:hover{
  color: inherit!important;
}

html {
  scroll-behavior: smooth;
}

.title-button {
  margin-left: -3px;
}

.video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

/* Vimeo iframe: vult scherm, mag afgesneden worden */
.video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;         /* 16:9 verhouding */
  min-width: 177.78vh;     /* 16:9 verhouding, zorgt voor cover */
  min-height: 100vh;
  transform: translate(-50%, -50%);
  border: 0;          /* replaces frameborder */
  display: block;     /* removes inline baseline gap */
  pointer-events: none;
  user-select: none;
}

.mobile-video{
  display:none;
}

/* ========== BASE (>= 1280px) =================================== */
/* Plaats hier je desktop-standaardstijlen (optioneel) */
/* ... */


/* ========== <= 1280px (large tablets / small laptops) ========== */
@media (max-width: 1280px) {
}


/* ========== <= 1024px (tablets landscape) ====================== */
@media (max-width: 1024px) {
 .big-quote {
  font-size: 72px;
  bottom: 75px;
  max-width: 650px;
}

.subquote {
  font-size: 32px;
}

.header-button {
  padding: 15px 35px 20px 35px;
  border-radius: 120px;
  font-size: 16px;
}

}


/* ========== <= 768px (tablets portrait / grote phones) ========= */
@media (max-width: 768px) {

 .big-quote {
  font-size: 72px;
  bottom: 150px;
  max-width: 650px;
}
.main-header .big-quote { left: 35px; text-align: left; }
.big-section .big-quote { right: 35px; text-align: right; }

.subquote {
  font-size: 32px;
}

.menu-button {
  top: 35px;
  right: 35px;
}

.main-header .logo{ 
  width: 300px; 
  top:35px!important;
  left:35px!important;
}

.big-section .logo { 
  width: 300px; 
  top:35px!important;
  margin-left:35px;
}

@media screen and (max-width: 768px) {
  .logo {
    width: 250px !important;
  }
  
}

.main-header .scroll-down {
  right: 35px;
  bottom: 75px;
}

.header-button {
  padding: 15px 25px 20px 25px;
  border-radius: 120px;
  font-size: 18px;
  width:calc(100% - 75px);
}

.mobile-video{
  display:block;
}

.desktop-video{
  display:none;
}

}

@media only screen and (max-height: 750px){
  .big-quote {
   font-size: 12vh;
  }
}



/* ========== <= 640px (phones) ================================== */
@media (max-width: 640px) {

 .big-quote {
    font-size: 56px;
    bottom: 150px;
    max-width: 650px;
  }


  .main-header .big-quote { left: 35px; text-align: left;  padding-right:35px;}
  .big-section .big-quote { right: 35px; text-align: right; }

  .subquote {
    font-size: 32px;
  }

  .main-header .scroll-down {
    right: 35px;
    bottom: 75px;
  }

  .text-wrapper{
    position:relative;
    padding-top:150px;
    width:calc(100% - 100px);
    max-width:650px;
    left:50%;
    transform: translate(-50%, -0%);
  }

}


/* ========== <= 480px (small phones) ============================ */
@media (max-width: 480px) {
  /* Layout */
  /* .logo { } */

  /* Typografie */
  /* h1 { } p { } */

  /* Spacing */
  /* .section { } */
}


/* ========== Motion (optioneel) ================================= */
@media (prefers-reduced-motion: reduce) {
  /* Animaties minimaliseren */
  /* * { transition: none !important; animation: none !important; } */
}


/* rsvp page */

.rsvp-page .big-section .logo{

  position: relative;

}

.rsvp {
  position: relative;
/*   z-index: 2; */
}

.rsvp .big-section {
  
}

.autoHeight{
  height: auto!important;
  min-height: auto!important;
}

.basicH1 {
  margin-top: 0 !important;
  padding-top: 0 !important;
  color: #00ffb0;
}

.smallerH1{
  margin-top: 0 !important;
  padding-top: 0 !important;
  color: #00ffb0;
  font-size: 80px;
}

.tccColumns {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 25vh 75px 30vh;
  
}

.tccColumns .tccCol {
  flex: 1;
  flex-basis: 50%;
}

@media screen and (max-width: 960px) {
  
  .tccColumns {
    flex-wrap: wrap;
    padding-left: 35px;
    padding-right: 35px;
    gap: 30px;
  }
  
  .tccColumns .tccCol {
    flex-basis: 100%;
  }
}

.tccColumns .tccCol p {
  
}

.tccForm {
  display: flex;
  justify-content: center;
  padding-top: 30px;
}

@media screen and (max-width: 960px) {
  .tccForm {
    padding-top: 0px;
  }
}

.tccForm * {
  box-sizing: border-box;
}

.tccForm form {
  max-width: 400px;
  width: 90vw;
  padding: 30px;
  background-color: white;
  border: 2px solid #0000ff;
  border-radius: 12px;
  font-family: neulis-sans, sans-serif;
}

.tccForm form label {
  display: block;
  margin-bottom: 30px;
  font-weight: 500;
  color: #0000ff;
}

.tccForm form input,
.tccForm form textarea,
.tccForm form select {
  display: block;
  padding: 20px;
  border: 1px solid #0000ff;
  border-radius: 12px;
  width: 100%;
  margin-top: 10px;
}

.tccForm form button {
  background-color: #0000ff;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  margin-top: 15px;
  padding: 10px 16px;
  font: 500 16px / 1 neulis-sans, system-ui, sans-serif;
  border-radius: 999px;
  border: 2px solid transparent;
}

.tccForm form #my-form-status {
  color: #0000ff !important;
  margin-top: 15px;
  font-weight: 600;
}

.tccFull{
  height: 100vh !important;
  min-height: 600px;
}

.tccFull p{
  text-align: center;
  padding-top: 15vh;
}