@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Inter:wght@300;400&display=swap');

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

body, html {
  height: 100%;
  font-family: 'Inter', sans-serif;
  color: white;
}
.intro {
  position: fixed;
  inset: 0;

  background: url('../assets/intro-bg.jpg') center/cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;          
  height: 100dvh;          
  overflow: hidden;        

  z-index: 9999;
}

.intro-content {
  text-align: center;
  color: white;
  max-width: 500px;
  width: 100%;

  max-height: 90dvh;       
  overflow-y: auto;        

  padding: 30px;

  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);

  border-radius: 20px;
}

.intro-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.intro-content p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.intro-content button {
  margin-top: 20px;
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  background: white;
  color: black;
  cursor: pointer;
}
.hero {
  position: relative;
  height: 100vh;
  background: url('../assets/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.4)
  );
}

.content {
  position: relative;
  z-index: 2;
}

.subtitle {
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 20px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 8vw, 72px);
  line-height: 1.2;
}

h1 span {
  font-size: 40px;
  display: block;
  margin: 10px 0;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 4vw, 36px);
  line-height: 1.3;
}
.date {
  margin-top: 20px;
  font-size: 18px;
  opacity: 0.9;
}

.countdown {
  margin-top: 40px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.countdown div {
  min-width: 70px;
  padding: 12px;
}


.countdown span {
  font-size: 28px;
  font-weight: bold;
  display: block;
}

.countdown small {
  font-size: 12px;
  opacity: 0.8;
}

html {
  scroll-behavior: smooth;
}

/* Scroll indicator */
.scroll-down {
  margin-top: 50px;
  font-size: 24px;
  cursor: pointer;
  animation: bounce 2s infinite;
  opacity: 0.8;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* Tweede sectie */
.access {
  height: 100vh;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
.access {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.7),
    #111
  );
}
.access {
  position: relative;
  height: 100vh;
  background: url('../assets/access-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.access::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.access::before {
  background: linear-gradient(
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.5)
  );
}
.access-box {
  position: relative;
  z-index: 2;
}

/* Box */
.access-box {
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: 15px;
  backdrop-filter: blur(10px);

  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

/* Input */
.access-box input {
  margin-top: 20px;
  padding: 12px;
  width: 200px;
  border-radius: 8px;
  border: none;
  text-align: center;
}

/* Button */
.access-box button {
  margin-top: 15px;
  padding: 12px 20px;
  border: none;
  background: white;
  color: black;
  border-radius: 8px;
  cursor: pointer;
}
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-content {
  background: #111;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  color: white;
  max-width: 300px;
  animation: fadeIn 0.3s ease;
}

.modal-content img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.modal-content h2 {
  margin-bottom: 10px;
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* ===== DAG PAGINA ===== */

.section {
  padding: 80px 20px;
  text-align: center;
}

.section.light {
  background: #f8f8f8;
  color: #111;
}

.container {
  max-width: 700px;
  margin: 0 auto;
}

.page-hero {
  position: relative;
  height: 100vh;

  background: url('../assets/welkom-dag.jpg') center/cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.glass-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-radius: 20px;
  padding: 40px 50px;

  max-width: 700px;
  margin: 0 auto;

  color: white;
}

.program {
  position: relative;
  padding: 100px 20px;
  color: white;

  background: url('../assets/locatie.jpg') center/cover no-repeat;
  min-height: 100vh; 
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;

}


.program .overlay {
  background: rgba(0, 0, 0, 0.6);
}


.program .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
}

.program-box {
  margin-top: 40px;
  padding: 30px 20px;

  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);

  border-radius: 20px;

  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
/* Timeline */
.timeline {
  position: relative;
  margin: 60px auto;
  padding: 20px 0;
  max-width: 800px;
}

/* verticale lijn */
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(255,255,255,0.4);
  transform: translateX(-50%);
}

/* 🔥 BELANGRIJK: dit miste */
.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}

/* links */
.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.left .content {
  /* flex-direction: row-reverse; */
  margin-left: 50px;
  width: 180px

}

/* rechts */
.timeline-item.right {
  left: 50%;
  text-align: left;
}

/* dots */
.timeline-item::before {
  content: "";
  position: absolute;
  top: 30px;
  width: 12px;
  height: 12px;
  background: #e6b85c;
  border-radius: 50%;
  z-index: 2;
}

/* dot positie */
.timeline-item.left::before {
  right: -6px;
}

.timeline-item.right::before {
  left: -6px;
}

/* content kaart */
.timeline-item .content {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 20px 25px;

  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);

  border-radius: 15px;
  color: white;

  min-width: unset;
  max-width: 180px;
}


/* tekst */
.time {
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

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

.timeline-item {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

/* zichtbaar */
.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}
/* links komt van links */
.timeline-item.left {
  transform: translateX(-40px);
}

/* rechts komt van rechts */
.timeline-item.right {
  transform: translateX(40px);
}

/* zichtbaar reset */
.timeline-item.visible {
  transform: translateX(0);
}

.icon img {
  width: 24px;
  height: 24px;

  filter: brightness(0) invert(1); /* wit maken */
  opacity: 0.9;
}

.icon {
  min-width: 30px;
  display: flex;
  justify-content: center;
}

.text p {
  margin: 0;
}

/* ==== PRAKTISCHE INFO ==== */

.practical {
  position: relative;
  padding: 120px 20px;

  background: url('../assets/hoogenweerth.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
}

.practical .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.practical .container {
  position: relative;
  z-index: 2;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 50px;
  
}

.info-card {
  padding: 20px 18px;
  border-radius: 18px;

  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);

  text-align: center;

  min-height: auto;
}

.info-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.15);
}

.info-card .icon {
  font-size: 26px;
  margin-bottom: 10px;
}

.info-card h3 {
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.info-card p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

.info-card:nth-child(4) {
  grid-column: 1 / 4;
}

.info-card:nth-child(5) {
  grid-column: 1 / 4;
}

.info-card a {
  color: inherit;
  border-bottom: 1px solid rgba(255,255,255,0.6);
  text-decoration: none;
}

/* ===== CONTACT SECTION ===== */

.contact {
  padding: 100px 20px;
  background: #C8DBF0; 
  text-align: center;
  min-height: 100vh;
}

/* Titel + hartje */
.contact-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 10px;
  color: #163352
}

.contact-header p {
  opacity: 0.7;
  margin-bottom: 40px;
  color: #163352
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.divider::before,
.divider::after {
  content: "";
  width: 50px;
  height: 1px;
  background: white;
  margin: 0 10px;
}

.divider span {
  font-size: 14px;
}

/* ===== CARD ===== */

.contact-card {
  max-width: 500px;
  margin: 0 auto;

  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(12px);

  border-radius: 20px;
  padding: 25px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* bovenkant */
.contact-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-top img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.contact-top h3 {
  margin: 0;
  font-size: 18px;
  color: #163352;
  text-align: left
}

.contact-top span {
  font-size: 14px;
  opacity: 0.6;
  color: #163352;
}

/* tekst */
.contact-body p {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.5;
  color: #163352;
}

/* knoppen */
.contact-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.btn {
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

/* WhatsApp (zacht groen/goud tint) */
.btn.whatsapp {
  background: #c6a85b; /* goudachtig */
  color: white;
}

/* Mail knop (outline stijl) */
.btn.mail {
  border: 1px solid #c6a85b;
  color: #c6a85b;
  background: transparent;
}

.btn:hover {
  opacity: 0.85;
}

/* ===== HOTEL SECTIE ===== */

.hotel {
  position: relative;
  min-height: 100vh;
 
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 40px 20px;
  color: white;
  overflow: hidden;
}

.hotel-images {
  position: absolute;
  inset: 0;
  display: flex;
  z-index: 0;
}

.hotel-images .img {
  flex: 1;
  background-size: cover;
  background-position: center;
}

/* linker foto */
.hotel-images .left {
  background-image: url('../assets/hotel1.jpg');
}

/* rechter foto */
.hotel-images .right {
  background-image: url('../assets/hotel2.jpg');
}

/* overlay voor leesbaarheid */
.hotel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

/* content erboven */
.hotel .container {
  position: relative;
  z-index: 2;
}

/* glass box */
.hotel-box {
  max-width: 600px;
  margin: 0 auto;

  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);

  padding: 40px;
  border-radius: 20px;
}

/* titel */
.hotel-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 20px;
  text-align: center;
}

/* tekst */
.hotel-box p {
  line-height: 1.6;
  font-size: 15px;
  text-align: center;
}

.hotel .container {
  position: relative;
  z-index: 2;
}

/* ===== AVOND ===== */
.page-hero--avond {
  background: url('../assets/locatie.jpg') center/cover no-repeat;
}

body.no-scroll {
  overflow: hidden;
  height: 100vh;
}


@media (max-width: 768px) {

  /* ===== TYPOGRAFIE ===== */

  .subtitle {
    font-size: 12px;
  }

  .date {
    font-size: 16px;
  }

  h1 span {
    font-size: 28px;
  }

  .countdown span {
    font-size: 22px;
  }

  .scroll-down {
    font-size: 20px;
  }

  /* ===== SECTIES ===== */

  .section {
    padding: 60px 15px;
  }

  .program {
    padding: 80px 15px;
  }

  /* ===== ACCESS (homepagina) ===== */

  .access {
    background-position: 10% center;
    align-items: flex-end;
    padding-bottom: 200px;
  }

  .access-box {
    padding: 25px 20px;
  }

  /* ===== HERO (dagpagina) ===== */

  .page-hero {
    height: 100vh;
    padding: 20px;
    background-position: 40% center;
  }

  .page-hero h2 {
    font-size: 26px;
  }

  .page-hero p {
    font-size: 14px;
    line-height: 1.5;
  }

  /* ===== PROGRAMMA TITEL ===== */

  .program h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
  }

  /* ===== TIJDLIJN ===== */
  
  .timeline::before {
    display: none;
  }


  .timeline-item::before {
    display: none;
  }


  .timeline-item,
  .timeline-item.left,
  .timeline-item.right {
    width: 100%;
    left: 0;
    text-align: center;
    padding: 15px 0;
  }

 
  .timeline-item .content {
    margin: 0 auto;
    justify-content: center;
    text-align: center;
    max-width: 180px;
  }


  /* ===== TEKST ===== */

  .text {
    display: flex;
    flex-direction: column;
  }

  .time {
    font-weight: 600;
    margin-bottom: 2px;
  }

  .text p {
    margin: 0;
  }

/* ===== WELKOM DAG ===== */
  .glass-box {
    padding: 25px 20px;
    max-width: 200px;
  }

  .glass-box h2 {
    font-size: 26px;
  }

  .glass-box p {
    font-size: 13px;
    line-height: 1.5;
  }

/* ===== PRAKTISCHE INFO ===== */

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

  .info-card {
  padding: 16px 14px;
  border-radius: 16px;

  max-width: 200px;
  margin: 0 auto;

  backdrop-filter: blur(6px);
}
  
  .info-card:nth-child(4),
  .info-card:nth-child(5) {
    grid-column: auto;
  }
  
  .info-card h3 {
   font-size: 18px;
  }

  .info-card p {
   font-size: 13px;
   line-height: 1.5;
  }

  .info-card img {
   width: 20px;
   height: 20px;
   margin-bottom: 8px;
  }

  .practical {
    padding: 80px 15px;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .program,
  .practical {
    background-size: cover;
    background-position: center;
    background-attachment: scroll; 
  }
  
/* ===== HOTEL ===== */
  .hotel-images {
    flex-direction: column;
  }

  .hotel-images .left {
    display: none; 
  }

  .hotel {
    min-height: 80vh;
  }

  .hotel-box {
    padding: 25px 20px;
  }
}