/*
---------
HEADER
---------
*/

/* Reset */
body, html {
  margin: 0;
  padding: 0;
}

/* Header styling */
#pageHeader {
  background: rgba(255, 255, 255, 0);
  width: 100%;
  padding: 20px;
  position: fixed;
  top: 0;
  z-index: 1000;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  transition: background 0.5s, padding 0.3s;
}

.header-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 10px;
}

.header-left {
  display: flex;
  justify-content: flex-start;
}
.header-center {
  text-align: center;
}
.header-right {
  display: flex;
  justify-content: flex-end;
}

.header-logo {
  height: 80px;
  border-radius: 50%;
  transition: height 0.3s;
}

.site-title {
  font-size: 26px;
  font-weight: bold;
  color: #333;
  line-height: 1.1;
}
.site-title span {
  display: block;
}

.hamburger {
  font-size: 28px;
  cursor: pointer;
  color: #333;
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* nav icons (emoji) */
.nav-emoji {
  font-size: 22px;
  margin-bottom: 5px;
  display: block;
}

/* 📱 Menu (Standaard verborgen, zichtbaar bij .open) */
nav {
  display: none;
}

nav.open {
  display: block;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  text-align: center;
  padding: 15px 0;
  z-index: 999;
  border-bottom: 1px solid #ccc;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* 📦 Lijststijl + layout */
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* 🔘 Lijstitems */
nav ul li {
  display: inline-block;
  margin: 0;
}

/* 🔝 Link */
nav ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: bold;
  transition: color 0.3s;
  width: 70px;
  cursor: pointer;
}

/* 🌈 Hover-effect */
nav ul li a:hover {
  color: var(--accent-link-hover);
}

/* 📱 Mobiel: menu en header */
@media (max-width: 768px) {
  nav.open {
    position: fixed;
    top: auto;
    bottom: 0;
    border-top: 1px solid #ccc;
    border-bottom: none;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  }

  nav ul {
    gap: 15px;
  }

  nav ul li a {
    font-size: 13px;
    width: 60px;
  }

  #pageHeader {
    backdrop-filter: none;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    padding: 10px;
  }
}

/* Scroll effect */
header.scrolled {
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  padding: 10px 20px;
}
header.scrolled .header-logo {
  height: 60px;
}

/* 🖼️ Slideshow Container */
.slideshow-container {
  position: relative;
  width: 100%;
  min-height: 250px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Slideshow Afbeeldingen */
.slideshow-container img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

/* Actieve slide zichtbaar */
.slide.active {
  opacity: 1 !important;
  z-index: 1;
  position: relative;
}

/* .slide standaard */
.slide {
  opacity: 0;
}

/* Knoppen (← →) */
.prev-slide,
.next-slide {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.4);
  color: white;
  border: none;
  font-size: 24px;
  padding: 5px 10px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}

.prev-slide {
  left: 10px;
}

.next-slide {
  right: 10px;
}

/* Mobiel header/slider */
@media (max-width: 768px) {
  .header-container {
    grid-template-columns: auto 1fr auto;
    padding: 0 10px;
  }

  .header-logo {
    height: 60px;
  }

  .site-title {
    font-size: 18px;
  }

  .slideshow-container {
    min-height: 200px;
  }

  .slideshow-container img {
    max-height: 250px;
  }

  .prev-slide,
  .next-slide {
    font-size: 20px;
    padding: 6px 10px;
  }
}

/*
---------
BODY
---------
*/

/* 🌈 KLEUREN EN INSTELLINGEN */
:root {
  --primary-color: #8E9AAF;
  --secondary-color: #a736f3;
  --accent-link-hover: #A02FEC;
  --bg-color: #EFD3D7;
  --text-color: #333;
  --header-height: 80px;
  --light-blue: #c28df3;
  --light-grey: #DEE2FF;
}

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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  padding-top: 160px;
}

@media (max-width: 768px) {
  body {
    padding-top: 220px;
  }
}

/* 🦸‍♀️ HERO / PARALLAX SECTIE */
.hero {
  background-image: url('/foto/bg-small.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
}

/* Desktop: grotere versie + eventueel fixed */
@media (min-width: 1024px) {
  .hero {
    background-image: url('/foto/bg.webp');
    background-attachment: fixed;
  }
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.4);
  z-index: 0;
}

.hero-content {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  padding: 30px;
  border-radius: 15px;
  max-width: 600px;
  z-index: 1;
  animation: fadeIn 2s ease-in-out;
}

.hero-content h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.cta-button {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: var(--light-blue);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.round-image {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
}

.round-image:hover {
  transform: scale(1.1);
}

/* 🌟 Fade-in animatie */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 📱 MOBIEL HERO */
@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
    height: auto;
    padding: 60px 20px;
  }

  .hero-content h2 {
    font-size: 1.3rem;
  }

  .cta-button {
    padding: 12px 20px;
    font-size: 14px;
  }

  .round-image {
    width: 100px;
    height: 100px;
  }
}

/* 🧾 CONTENT SECTIES */
.content {
  background: rgba(255, 255, 255, 0.9);
  margin: 40px auto;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  max-width: 800px;
  text-align: center;
  animation: fadeIn 1.5s ease-in-out;
}

.content h2 {
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.content p {
  font-size: 16px;
  color: #444;
}

/* 🧴 DIENSTEN (GRID / SLIDER) */
.services-section {
  padding: 40px 20px;
  background-color: #f8f1fa;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-in-out;
}

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

.service-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
  height: auto;
}

.service-card h3 {
  color: var(--secondary-color);
  font-size: 20px;
}

.fun-button {
  margin-top: 10px;
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
}

.fun-button:hover {
  background-color: var(--light-blue);
}

/* Gallery */
.gallery-section {
  background: #fff;
  padding: 40px 20px;
  overflow: hidden;
  text-align: center;
}

.gallery-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

.loop-gallery-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.loop-gallery-track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: scrollGalleryLoop 100s linear infinite;
}

.loop-gallery-wrapper:hover .loop-gallery-track {
  animation-play-state: paused;
}

.gallery-item {
  flex: 0 0 250px;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  background-color: #f8f8f8;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
}

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

@keyframes scrollGalleryLoop {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 🔝 SCROLL-TO-TOP KNOP */
.scroll-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  width: 45px;
  height: 45px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
  z-index: 1000;
}

.scroll-to-top-btn:hover {
  background-color: var(--light-blue);
}

/* 📱 MOBIEL: diensten en slideshows */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 15px;
  }

  .slideshow-container {
    height: auto;
  }

  .slideshow-container img {
    height: auto;
    max-height: 250px;
    object-fit: cover;
    border-radius: 10px;
  }

  .prev-slide,
  .next-slide {
    font-size: 20px;
    padding: 6px 10px;
  }

  .fun-button {
    font-size: 14px;
    padding: 10px 16px;
  }
}

/*
---------
FOOTER
---------
*/

.site-footer {
  background-color: #f5f0f9;
  color: #333;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  border-top: 2px solid #e1d4ea;
  margin-top: 40px;
  box-shadow: inset 0 10px 10px -10px rgba(0,0,0,0.1);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 20px;
  justify-content: space-between;
}

.footer-section {
  flex: 1;
  min-width: 220px;
}

.footer-section h3 {
  color: #a736f3;
  margin-bottom: 10px;
  font-size: 18px;
}

.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.link-list li {
  margin-bottom: 8px;
  font-size: 15px;
}

.link-list a,
.icon-text-row a {
  color: #333;
  transition: color 0.3s;
  text-decoration: none;
}

.link-list a:hover,
.icon-text-row a:hover,
.footer-bottom a:hover {
  color: var(--accent-link-hover);
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #777;
  border-top: 1px solid #ccc;
  padding-top: 15px;
}

.footer-bottom a {
  color: #a736f3;
  text-decoration: none;
}
.footer-bottom a:hover {
  text-decoration: underline;
}

.icon-text-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15px;
}

.footer-icon {
  width: 24px;
  min-width: 24px;
  text-align: center;
  font-size: 18px;
  color: #a736f3;
}

/* <address> niet cursief */
.no-italic {
  font-style: normal;
}

/* Responsief footer */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .icon-text-row {
    justify-content: center;
  }
}

/*
---------
COOKIE
---------
*/

.cookie-banner.fancy {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 9999;
  font-family: 'Segoe UI', sans-serif;
  animation: fadeInUp 0.6s ease-in-out;
}

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

.cookie-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
  font-size: 14px;
}

.cookie-title {
  font-size: 16px;
  font-weight: bold;
  color: #5c2d91;
  margin-bottom: 8px;
}

.cookie-card p {
  font-size: 13px;
  color: #444;
  margin: 0 0 14px;
}

.cookie-switches {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  background: #f7f3fb;
  padding: 6px 10px;
  border-radius: 8px;
}

/* Schakelknop */
.switch {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 18px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #ccc;
  border-radius: 34px;
  transition: .3s;
}

.slider::before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  border-radius: 50%;
  transition: .3s;
}

input:checked + .slider {
  background-color: #a736f3;
}

input:checked + .slider::before {
  transform: translateX(16px);
}

/* Cookie knoppen */
.cookie-buttons {
  display: flex;
  gap: 6px;
}

.accept-btn,
.decline-btn {
  flex: 1;
  padding: 8px 10px;
  font-size: 13px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.accept-btn {
  background: linear-gradient(135deg, #a736f3, #c28df3);
  color: white;
}

.accept-btn:hover {
  background: linear-gradient(135deg, #9121dc, #b48be8);
}

.decline-btn {
  background-color: #f0f0f0;
  color: #444;
}

.decline-btn:hover {
  background-color: #e0e0e0;
}

/* 📱 Cookie mobiel */
@media (max-width: 480px) {
  .cookie-banner.fancy {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .cookie-card {
    max-width: 100%;
    padding: 14px;
  }

  .cookie-buttons {
    flex-direction: column;
  }
}

/* Cookie modal */
.cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.cookie-modal.hidden {
  display: none;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 12px;
  max-width: 360px;
  width: 90%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.4s ease;
}

.modal-content h3 {
  margin-bottom: 12px;
  font-size: 18px;
  color: #5c2d91;
  text-align: center;
}



/*

Prestaties: 96

Toegankelijkheid: 93

Praktische tips: 100

SEO: 100

*/