/* Algemene stijl */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  /* Luxe, gelaagde achtergrond met subtiele diepte */
  background:
    radial-gradient(1200px 800px at 15% -10%, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.2) 45%, rgba(255,255,255,0) 60%),
    radial-gradient(900px 700px at 110% 0%, rgba(96,165,250,0.18) 0%, rgba(96,165,250,0.02) 60%, rgba(0,0,0,0) 70%),
    conic-gradient(from 200deg at 80% 10%, #f9fbff, #eef3ff, #f7faff, #eef3ff),
    linear-gradient(180deg, #fbfcff 0%, #f4f7ff 60%, #eef2fb 100%);
  background-attachment: fixed;
  color: #000000;
  line-height: 1.6;
}

.review-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  float: right;
  margin-left: 1rem;
}

/* Navigatiebalk */
nav {
  /* Afgeronde, 3D-achtige glass look */
  background: linear-gradient(180deg, rgba(25,25,30,0.82), rgba(12,12,16,0.78));
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 10px;
  z-index: 1000;
  width: calc(100% - 24px);
  max-width: 1200px;
  margin: 12px auto;
  border-radius: 14px;
  backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 14px 28px rgba(0,0,0,0.24), /* buiten schaduw voor diepte */
    inset 0 1px 0 rgba(255,255,255,0.12), /* subtiele top highlight */
    inset 0 -1px 0 rgba(0,0,0,0.28); /* subtiele bottom shade */
}

.review-section {
  padding: 40px;
  background-color: #fff;
  text-align: center;
}

.review-item {
  background: white;
  padding: 15px;
  margin: 10px auto;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: left;
}

.reviews {
  padding: 2rem;
  background-color: #fff;
  margin-top: 2rem;
  border-radius: 10px;
}

.reviews h2, .reviews h3 {
  color: #333;
}

.review-card {
  background-color: white;
  padding: 1rem;
  margin-bottom: 1rem;
  border-left: 5px solid #222;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.review-form {
  margin-top: 1rem;
}

.review-form input, .review-form textarea {
  width: 100%;
  max-width: 500px;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.review-form button {
  background-color: #222;
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.review-form button:hover {
  background-color: #444;
}


/* Lightbox styles */
#lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Floating AI chat widget */
#ai-chat-toggle {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 10000;
  background: linear-gradient(135deg, #7b1fa2, #03a9f4);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

#ai-chat-widget {
  position: fixed;
  right: 16px;
  bottom: 70px;
  width: 300px;
  max-height: 60vh;
  display: none;
  flex-direction: column;
  background: rgba(255,255,255,0.95);
  color: #111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
  border: 1px solid #e8e8ef;
}

#ai-chat-widget.open { display: flex; }

.ai-chat-header {
  background: linear-gradient(135deg, #7b1fa2, #03a9f4);
  color: #fff;
  font-weight: 800;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ai-chat-header .ai-chat-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.ai-chat-messages {
  padding: 10px;
  gap: 8px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  background: #fafbff;
}

.ai-chat-input {
  display: flex;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid #ececf1;
  background: #fff;
}

.ai-chat-input input {
  flex: 1;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #d7d7e0;
}

.ai-chat-input button {
  background: #222;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
}

.msg {
  max-width: 80%;
  padding: 8px 10px;
  border-radius: 12px;
}

.msg.user {
  align-self: flex-end;
  background: #e9f2ff;
  border: 1px solid #cfe2ff;
}

.msg.bot {
  align-self: flex-start;
  background: #f4f1ff;
  border: 1px solid #e6defd;
}

/* Avatar bullets voor bubbles */
/* avatars verwijderd voor lichte thema */

/* Responsiveness */
@media (max-width: 480px) {
  #ai-chat-widget {
    right: 10px;
    bottom: 70px;
    width: calc(100% - 20px);
    max-width: 100%;
    border-radius: 14px;
  }
}

#lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
  box-shadow: 0 0 25px rgba(255,255,255,0.3);
  animation: fadeIn 0.3s ease-in-out;
}

#lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  z-index: 10000;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


.review-form-container {
  margin-top: 30px;
}

.review-form-container form {
  display: inline-block;
  text-align: left;
  max-width: 500px;
  width: 100%;
}

.review-form-container input,
.review-form-container textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.review-form-container button {
  padding: 10px 20px;
  border: none;
  background-color: #0073e6;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

.review-form-container button:hover {
  background-color: #005bb5;
}

/* Review sectie */
.review-section {
  padding: 40px 20px;
  text-align: center;
}

/* Lightbox stijl */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
  animation: fadeIn 0.3s ease-in-out;
}

#lightbox:target {
  display: flex;
}

#lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  z-index: 10000;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


/* Container voor reviews */
.review-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Reviewkaartjes */
.review-card {
  background-color: #f9f9f9;
  padding: 20px;
  max-width: 300px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  font-family: sans-serif;
  text-align: left;
}

/* Container met formulier */
.review-form-container {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Formulierblok */
.review-form {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  max-width: 350px;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-family: sans-serif;
}

/* Formuliervelden */
.review-form input,
.review-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: sans-serif;
  box-sizing: border-box;
}

/* Verzendknop */
.review-btn {
  background-color: #4db8ff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  width: 100%;
  transition: 0.3s ease;
}

.review-btn:hover {
  background-color: #3399ff;
}

.agenda-pagina {
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
  padding: 40px 20px;
  color: #222;
}

/* Volledige paginabackground voor agenda met foto (header blijft solide) */
.agenda-pagina {
  background: url('img/adc70151-ab71-4655-9e15-e822bae3afb9.jpg') center / cover no-repeat fixed;
}

.agenda-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 48px 20px;
  border-radius: 0;
  background: transparent;
}

.agenda-logo {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
}

.agenda-header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.55);
}

.agenda-header p {
  font-size: 1rem;
  color: #f0f0f0;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.agenda-subtitle {
  color: #ffffff;
  font-weight: 600;
}

.agenda-tagline {
  color: #e6e6e6;
}


.agenda-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.agenda-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
  padding: 20px;
  min-height: 120px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.agenda-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.agenda-card h3 {
  margin-top: 0;
  color: #007acc;
  font-size: 1.4rem;
}

.agenda-card p {
  margin: 0;
  color: #444;
  font-size: 1.1rem;
}

/* Nieuwe agenda layout */
.agenda-date {
  flex: 0 0 68px;
  height: 68px;
  border-radius: 12px;
  background: linear-gradient(135deg, #03a9f4, #7b1fa2);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.agenda-date .day {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
}

.agenda-date .month {
  font-size: 0.85rem;
  font-weight: 700;
  opacity: 0.95;
}

.agenda-content h3 {
  margin: 0 0 4px 0;
  color: #222;
}

.agenda-content p {
  margin: 0;
  color: #444;
}

.agenda-meta {
  margin-top: 6px;
  font-size: 0.95rem;
  color: #666;
}


.agenda-card:hover {
  transform: translateY(-5px);
}

.agenda-card h3 {
  margin-top: 0;
  color: #007acc;
}

.agenda-card p {
  margin: 0;
  color: #444;
}





/* Formulier onder reviews (centraal) */
.review-form-container {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}



.agenda-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #ffffff;
}

.agenda-section ul.agenda-lijst {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  font-size: 1.1em;
}

.agenda-lijst li {
  margin-bottom: 10px;
}




.gallery {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  background: linear-gradient(180deg, rgba(3,169,244,0.06), rgba(123,31,162,0.06));
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

.gallery h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #111;
}

.gallery-images {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.gallery-item {
  flex: 1 1 280px;
  max-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.footer {
  background-color: #111;
  color: #fff;
  padding: 30px 20px 10px;
  font-size: 0.95rem;
  text-align: center;
}

.footer-content.centered {
  max-width: 800px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 100px;
  height: auto;
}

.footer-info {
  margin: 0;
  font-size: 1rem;
}

.footer-social {
  display: flex;
  gap: 20px;
  font-size: 1.2rem;
}

.footer-social a {
  color: white;
  transition: transform 0.3s, color 0.3s;
}

.footer-social a:hover {
  color: #4fc3f7;
  transform: scale(1.1);
}

.footer-bottom {
  margin-top: 20px;
  font-size: 0.8rem;
  color: #ccc;
}

.footer-social {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 12px;
}

.footer-social a img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1); /* witte kleur op donkere achtergrond */
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-social a:hover img {
  transform: scale(1.1);
  filter: brightness(0) invert(0.6); /* lichte kleurverandering bij hover */
}




.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.lightbox-image {
  cursor: zoom-in;
}

.gallery-item:hover {
  transform: scale(1.03);
}


.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-left img {
  height: 60px;
}

.nav-left span {
  color: #fff;
  font-weight: 600;
  font-size: 1rem; /* was 1.3rem */
}

.nav-center {
  display: flex;
  gap: 16px; /* was 24px */
}

.nav-center a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.9rem; /* kleiner gemaakt */
  position: relative;
  transition: color 0.25s, background 0.25s, box-shadow 0.25s;
  padding: 8px 12px;
  border-radius: 10px;
}

.nav-center a:hover {
  color: #e3f2ff;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.12);
}

/* Onderlijning animatie voor links in de balk */
.nav-center a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: currentColor;
  opacity: 0.8;
  transition: width 0.25s ease;
}

.nav-center a:hover::after {
  width: 100%;
}

.nav-right .btn {
  background: linear-gradient(135deg, #4fc3f7, #7b1fa2);
  color: #fff;
  padding: 8px 16px; /* was 10px 20px */
  border: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 0.9rem; /* was groter */
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, box-shadow 0.3s, transform 0.05s;
  box-shadow: 0 10px 20px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.18);
}

.nav-right .btn:hover {
  background: linear-gradient(135deg, #03a9f4, #6a1b9a);
  box-shadow: 0 12px 24px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.22);
}

/* Intro sectie */
.intro-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 90px 20px;
  max-width: 1200px;
  margin: 20px auto 32px auto;
  background: linear-gradient(135deg, rgba(123,31,162,0.08), rgba(3,169,244,0.08));
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.10);
}

.intro-text {
  max-width: 500px;
}

.intro-text h2 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.intro-text p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.intro-text .btn {
  background: #7b1fa2;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, box-shadow 0.3s, transform 0.05s;
  box-shadow: 0 8px 18px rgba(123,31,162,0.25);
}

.intro-text .btn:hover {
  background: #6a1b9a;
  box-shadow: 0 10px 22px rgba(123,31,162,0.35);
}

/* Hero CTAs en badges */
.hero-cta {
  display: flex;
  gap: 12px;
  margin: 18px 0 10px 0;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #7b1fa2, #03a9f4);
}

.btn-secondary {
  background: #222;
}

.btn-secondary:hover {
  background: #444;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.hero-badges span {
  background: #f2f2f7;
  color: #333;
  border: 1px solid #ececf1;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.intro-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
}

/* Over sectie */
.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap-reverse;
  gap: 40px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.10);
}

.about-text {
  max-width: 600px;
}

.about-text h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #111;
  color: white;
}

/* Lijst */
ul li {
  margin-bottom: 10px;
}

/* iFrames */
iframe {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Contactformulier */
.container {
  max-width: 600px;
  margin: 60px auto;
  padding: 30px;
  background-color: #fafafa;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.container h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.container p {
  font-size: 1rem;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input,
textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus,
textarea:focus {
  border-color: #00b7ff;
  box-shadow: 0 0 5px rgba(0, 183, 255, 0.4);
  outline: none;
}

.row-3 {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.row-3 input {
  flex: 1 1 100px;
  min-width: 80px;
}

/* Verstuurknop */
button[type="submit"] {
  background-color: #00b7ff;
  color: #fff;
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

button[type="submit"]:hover {
  background-color: #0099cc;
}

/* Mobiele weergave navigatiebalk */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 20px;
  }

  .nav-center {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 10px;
  }

  .nav-right {
    align-self: stretch;
    margin-top: 10px;
    display: flex;
    justify-content: flex-end;
    width: 100%;
  }

  .nav-left {
    width: 100%;
    justify-content: space-between;
  }
}


/* Kalender layout */
.calendars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.calendar {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.06);
  overflow: hidden;
}

.calendar-header {
  background: linear-gradient(135deg, #03a9f4, #7b1fa2);
  color: #fff;
  padding: 12px 16px;
  font-weight: 700;
  text-align: center;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  padding: 12px;
}

.calendar-weekday {
  font-size: 0.85rem;
  color: #666;
  text-align: center;
  font-weight: 700;
}

.calendar-day {
  min-height: 64px;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 8px;
  position: relative;
  background: #fafafa;
}

.calendar-day.empty {
  background: transparent;
  border: none;
}

.calendar-day .date {
  position: absolute;
  top: 6px;
  right: 8px;
  font-weight: 700;
  color: #999;
}

.calendar-day.event {
  background: #fff;
  border-color: #e0d7f5;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.calendar-event {
  margin-top: 18px;
  font-size: 0.9rem;
}

.calendar-event strong {
  color: #222;
}

.calendar-event.alt {
  margin-top: 22px;
  color: #7b1fa2;
  font-weight: 700;
}

