:root{
  --bg: #fffafc;
  --lavender: #a892c9;
  --lavender-600: #7e62a8;
  --lavender-soft: #f6f1fb;
  --gold: #c59a44;
  --text: #22202a;
  --muted: #6b6b78;
  --glass: rgba(255,255,255,0.66);
  --card-shadow: 0 14px 40px rgba(80,56,92,0.06);
  --radius: 14px;
  --max-width: 1100px;
  --accent: linear-gradient(90deg,#b89ad0,#a07ad0);
  --focus: 4px rgba(168,146,201,0.18);
  --transition: 220ms cubic-bezier(.2,.9,.2,1);
  --lavender-700: #5f4a87;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  padding: 0;
  font-family: 'Raleway', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  color:var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(1400px 700px at 8% 12%, rgba(168,146,201,0.18), transparent 6%), /* paarse radial sterker */
    radial-gradient(1000px 500px at 92% 86%, rgba(197,154,68,0.08), transparent 6%), /* gouden radial sterker */
    #f0e8f5; 
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.65;
  -webkit-tap-highlight-color: transparent;
}

/* layout */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px;
  align-items: center;
}

/* PRELOADER */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f7f5ef; 
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  z-index: 999999;
  opacity: 1;
  transition: opacity 0.8s ease;
}

/* Langzamere pulse animatie */
.preloader img {
  width: 180px;
  height: auto;
  margin-bottom: 20px;
  animation: pulse 4s infinite ease-in-out; /* was 2s → nu 4s */
}

/* Langzamere fade-in */
.preloader-content {
  animation: fadeIn 2.2s ease forwards; /* was 1.2s → nu 2.2s */
}

/* Fade-out langzamer en zachter */
.preloader.fade-out {
  opacity: 0;
  transition: opacity 2.2s ease; /* was 1s → nu 2.2s */
}

/* Pulse animatie zelf ook rustiger */
@keyframes pulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  50%  { transform: scale(1.06); opacity: 1; }
  100% { transform: scale(1);   opacity: 0.8; }
}

.preloader h2 {
  font-size: 28px;
  letter-spacing: 2px;
  font-weight: 400;
  color: var(--lavender-600);
}

/* Fade-in animatie */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
} 

/* Basisstijlen voor de header */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, purple, rgba(128, 0, 128, 0)); /* paars naar transparant */
  color: white;
  padding: 10px 20px;
}

.logo {
  color: white;
  text-decoration: none;
  font-size: 1.5em;
}

.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.nav-menu ul li a {
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  display: block;
}
.nav-menu ul li a:hover {
  color: var(--gold);
}

/* Stijlen voor het hamburgermenu (standaard verborgen op desktop) */
.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: white;
  transition: 0.4s;
}

/* Klasse toegevoegd door JavaScript wanneer actief */
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-menu.active {
  display: block !important;
}

/* ✨ WELKOM SECTION – Luxe kaartjes, zachte glans */

.welcome-icon {
  font-size: 32px;
  color: var(--gold);
  text-shadow: 0 0 14px rgba(197,154,68,0.35);
  display: block;
  margin-bottom: 8px;
}

.welcome-section {
  padding: 80px 20px;
  text-align: center;
}

.welcome-header img {
  width: auto;
  margin-bottom: 12px;
}

.welcome-title {
  font-size: 34px;
  font-weight: 700;
  color: var(--lavender-600);
  margin-bottom: 12px;
}

.welcome-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

/* Grid */
.welcome-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.welcome-card {
  background: var(--glass);
  backdrop-filter: blur(14px);
  padding: 28px;
  border-radius: 22px;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}

.welcome-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(80,56,92,0.12);
}

.welcome-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  opacity: 0;
  transition: .35s;
  pointer-events: none;
}

.welcome-card:hover::after {
  opacity: 1;
}

.wc-icon {
  font-size: 38px;
  margin-bottom: 12px;
}

.welcome-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--lavender-600);
  margin-bottom: 10px;
}

.welcome-card p {
  font-size: 16px;
  color: var(--muted);
}

/* ✨ OVER MIJ – Professioneel, zacht & luxe */

.about-section {
  padding: 100px 20px;
  max-width: var(--max-width);
  margin: auto;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  color: var(--lavender-600);
  text-align: center;
  margin-bottom: 20px;
}

.about-text {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 820px;
  margin: 0 auto 22px;
}

.about-content {
  text-align: center;
}

/* Highlights */
.about-highlights {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.highlight {
  display: flex;
  gap: 14px;
  background: var(--glass);
  padding: 20px;
  border-radius: 18px;
  backdrop-filter: blur(14px);
  box-shadow: var(--card-shadow);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}

.highlight:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(80,56,92,0.12);
}

.highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  opacity: 0;
  transition: .35s;
  pointer-events: none;
}

.highlight:hover::after {
  opacity: 1;
}

.hl-icon {
  font-size: 28px;
}

.hl-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--lavender-600);
  margin-bottom: 6px;
}

.hl-desc {
  font-size: 15px;
  color: var(--muted);
}

/* ✨ MIJN WERKWIJZE – Strak, luxe kaarten met nummer-badge */

.method-section {
  padding: 100px 20px;
  text-align: center;
  max-width: var(--max-width);
  margin: auto;
  display: block;
}

.section-sub {
  color: var(--muted);
  margin-bottom: 60px;
  font-size: 18px;
}

.method-steps {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.method-card {
  background: var(--glass);
  padding: 32px;
  border-radius: 22px;
  backdrop-filter: blur(14px);
  box-shadow: var(--card-shadow);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
  margin: 0 auto;
}

.method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 46px rgba(80,56,92,0.13);
}

/* Glans */
.method-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
  opacity: 0;
  transition: .35s;
  pointer-events: none;
}

.method-card:hover::after {
  opacity: 1;
}

/* Nummer cirkel */
.step-number {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--lavender-600);
  color: white;
  font-size: 20px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  box-shadow: 0 8px 18px rgba(126,98,168,0.25);
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--lavender-600);
  margin-bottom: 10px;
}

.step-text {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}


.icon-glow {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 10px;
  text-shadow: 0 0 12px rgba(197,154,68,0.35);
}

/* ✨ CONTACT INFO SECTION (Kaart + Glans) */

.contact-section {
  margin-top: 80px;
  padding: 60px 0;
  align-items: center;
  text-align: center;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--lavender-600);
  margin-bottom: 10px;
}

.contact-sub {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 17px;
}

/* Contact Card */
.contact-info-only {
  background: var(--glass);
  backdrop-filter: blur(16px);
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}

.contact-info-only:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(80,56,92,0.12);
}

/* Glans effect */
.contact-info-only::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
  opacity: 0;
  transition: .4s;
  pointer-events: none;
}

.contact-info-only:hover::after {
  opacity: 1;
}

/* Info regels */
.contact-info-only .info-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  text-align: center;
  justify-content: center;
}

.contact-info-only .info-icon {
  margin: 0;
}

.contact-info-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--lavender-600);
}

.info-icon {
  font-size: 22px;
  background: var(--lavender-soft);
  padding: 10px;
  border-radius: 12px;
  min-width: 44px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(80,56,92,0.07);
}

.info-label {
  font-weight: 700;
  color: var(--lavender-700);
}

.info-value {
  color: var(--muted);
  margin-top: 2px;
}

.info-value a {
  color: var(--lavender-600);
  font-weight: 600;
  text-decoration: none;
  transition: .3s;
}

.info-value a:hover {
  color: var(--gold);
}

/* ✨ CONTACT FORM SECTION */

.contact-form-section {
  margin-top: 80px;
  padding-bottom: 60px;
  align-items: center;
  text-align: center;
  width: 80%;
}

.contact-form-card {
  padding: 40px;
  border-radius: 24px;
  background: var(--glass);
  backdrop-filter: blur(16px);
  box-shadow: var(--card-shadow);
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}

.contact-form-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(80,56,92,0.12);
}

/* Glans */
.contact-form-card::after {
 content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.45), transparent);
  opacity: 0;
  transition: .4s;
  pointer-events: none; /* ← DIT FIXT HET */
}

.contact-form-card:hover::after {
  opacity: 1;
}

/* Velden */
.contact-form-card label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--lavender-600);
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 18px;
  border-radius: 12px;
  border: 2px solid rgba(168,146,201,0.2);
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(6px);
  font-size: 15px;
  color: var(--text);
  transition: border .25s ease, box-shadow .25s ease;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  border-color: var(--lavender-600);
  box-shadow: 0 0 0 4px rgba(168,146,201,0.18);
  outline: none;
}

/* Button */
.contact-form-card button {
  padding: 14px 26px;
  background: var(--accent);
  border: none;
  color: white;
  font-weight: 700;
  font-size: 16px;
  border-radius: 14px;
  cursor: pointer;
  width: 100%;
  transition: .25s;
  box-shadow: 0 8px 20px rgba(168,146,201,0.18);
}

.contact-form-card button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(168,146,201,0.28);
}

/* Mobile */
@media (max-width: 600px) {
  .contact-form-card {
    padding: 28px;
  }
  .contact-title {
    font-size: 26px;
  }
  .section-title { font-size: 28px; }
  .welcome-title { font-size: 28px; }
  .about-text { font-size: 16px; }

}

/* ✨ LUXE LOCATIE SECTIE – Medium.Hope stijl */

.location-section {
  margin-top: 80px;
  padding: 40px 20px 100px;
  background: linear-gradient(
      to bottom,
      rgba(168,146,201,0.12),
      rgba(255,255,255,0)
    );
  border-radius: 20px;
  align-items: center;
  text-align: center;
}

.location-wrapper {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
}

.location-info,
.location-map {
  background: var(--glass);
  backdrop-filter: blur(14px);
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}

.location-info:hover,
.location-map:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(80,56,92,0.12);
}

.loc-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--lavender-600);
  letter-spacing: 0.5px;
}
/* 📌 Nieuwe layout: icoon links — tekst gecentreerd */
.location-info .info-line {
  display: flex;
  align-items: center;
  justify-content: center; /* zet het geheel in het midden */
  gap: 14px;
  margin-bottom: 18px;
  width: 100%;
}

.location-info .info-icon {
  flex-shrink: 0;
  font-size: 22px;
  background: var(--lavender-soft);
  padding: 10px 12px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(80,56,92,0.07);
}

/* Tekst mooi gecentreerd */
.location-info .info-text-wrapper {
  text-align: center;
  flex: 1;  /* neemt beschikbare ruimte in zodat centrering klopt */
}

.location-info .info-label {
  font-weight: 700;
  font-size: 16px;
  color: var(--lavender-700);
  margin-bottom: 2px;
  text-align: center;
}

.location-info .info-value {
  color: var(--muted);
  margin-top: 4px;
  text-align: center;
}


.map-placeholder iframe {
  border-radius: 16px !important;
  box-shadow: 0 20px 40px rgba(80,56,92,0.13);
}

/* ✨ Prachtige subtiele glans animatie */
.location-info::after,
.location-map::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.4) 40%,
    transparent 80%
  );
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}

.location-info:hover::after,
.location-map:hover::after {
  opacity: 1;
}

footer {
  margin: 0; /* Verwijder marges */
  border-top: none; /* Geen rand bovenaan de footer */
  background: linear-gradient(to bottom, rgba(128, 0, 128, 0), purple); /* paars naar transparant */
  padding: 60px 20px 40px;
  position: relative;
  overflow: hidden;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-title {
  font-size: 22px;
  margin-bottom: 12px;
  color: #fff;
}

.footer-subtitle {
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.footer-text {
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  font-size: 15px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  text-decoration: none;
  position: relative;
  transition: color 0.25s ease, transform 0.25s ease;
  z-index: 5;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(4px);
}
footer::before,
footer::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle,
    rgba(255,255,255,0.35) 0%,
    rgba(255,255,255,0) 70%);
  filter: blur(22px);
  opacity: 0.35;
  animation: floatStars 9s infinite ease-in-out alternate;
  pointer-events: none;
}

/* Linksboven glow */
footer::before {
  top: -40px;
  left: -20px;
}

/* Rechtsonder glow */
footer::after {
  bottom: -40px;
  right: -20px;
}

@keyframes floatStars {
  0% { transform: translateY(0px) translateX(0px); opacity: 0.25; }
  100% { transform: translateY(-22px) translateX(18px); opacity: 0.45; }
}

/* ✨ Footer Glass Cards */
.footer-container > div {
  background: rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 22px;
  backdrop-filter: blur(10px);
  transition: .35s;
  position: relative;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.14);
}

.footer-container > div:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.14);
}

/* Glans op hover */
.footer-container > div::after {
  content: "";
  pointer-events: none; /* FIX voor klikbare links */
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    transparent,
    rgba(255,255,255,0.35),
    transparent);
  opacity: 0;
  transition: .4s;
}
.footer-container > div:hover::after {
  opacity: 1;
}

/* ✨ Footer Links Glow */
.footer-links a {
  position: relative;
}

.footer-links a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold);
  transition: width .35s ease;
  border-radius: 6px;
}

.footer-links a:hover::before {
  width: 100%;
}
/* Bottom footer */
.footer-bottom {
  margin-top: 50px;
  text-align: center;
  font-size: 14px;
  color: white;
}
    .whatsapp-btn{position:fixed;right:20px;bottom:20px;background:linear-gradient(180deg, #7e62a8, #6b4ba8);width:64px;height:64px;border-radius:50%;display:grid;place-items:center;color:#fff;cursor:pointer;box-shadow:0 14px 40px rgba(107, 75, 168, 0.16);z-index:90;transition:transform .18s;border: none; /* Verwijder eventuele rand */
  outline: none; /* Verwijder outline bij focus */}
    .whatsapp-btn:hover{transform:translateY(-6px)}
    .whatsapp-svg{width:30px;height:30px;display:block;filter:drop-shadow(0 2px 6px rgba(0,0,0,0.12))}

/* Extra small phones */
@media (max-width: 480px) {

  .welcome-title,
  .section-title {
    font-size: 22px;
  }

  .welcome-sub,
  .about-text {
    font-size: 15px;
  }

  .method-card,
  .welcome-card,
  .highlight {
    padding: 20px;
  }

  .logo {
    font-size: 1.2rem;
  }

  .hamburger .bar {
    width: 22px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block; /* Toon de hamburgerknop */
  }
  .nav-menu {
    display: none; /* Verberg het menu standaard */
    position: absolute;
    right: 0;
    top: 50px; /* Onder de header */
    background: linear-gradient(to bottom, rgba(128, 0, 128, 0), purple, rgba(128, 0, 128, 0)); /* paars naar transparant */
    width: 100%;
    text-align: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }    
  .nav-menu.active {
    max-height: 500px; /* Voldoende hoogte om menu te tonen */
  }
  .nav-menu ul {
    flex-direction: column;
    width: 100%;
  }
  .nav-menu ul li.lang-btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }
  body {
    line-height: 1.75;
  }

  /* Header spacing */
  .header {
    padding: 12px 16px;
  }

  /* Smaller logo */
  .logo {
    font-size: 1.3rem;
  }

  /* Nav-menu full width dropdown */
  .nav-menu ul li a {
    padding: 12px;
    font-size: 18px;
  }
  .welcome-section,
  .about-section,
  .method-section,
  .contact-section,
  .location-section {
    padding: 60px 20px;
  }

  .welcome-title {
    font-size: 26px;
  }

  .welcome-sub,
  .about-text {
    font-size: 16px;
    line-height: 1.7;
  }

  /* Kaarten spacing */
  .welcome-card,
  .highlight,
  .method-card,
  .contact-info-only,
  .contact-form-card,
  .location-info,
  .location-map {
    padding: 24px;
  }

  /* Method → 1 kolom op mobiel */
  .method-steps {
    grid-template-columns: 1fr;
  }

  /* Step number kleiner */
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .step-title {
    font-size: 18px;
  }

  /* Contact form */
  .contact-form-card input,
  .contact-form-card textarea {
    font-size: 14px;
  }

  .contact-form-card button {
    font-size: 15px;
  }

  /* Footer */
  .footer-container {
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .location-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .location-section {
    padding: 20px 10px 80px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .socials {
    justify-content: center;
  }
   .location-wrapper {
    grid-template-columns: 1fr;
  }
  .footer-column {
    margin-bottom: 30px;
  }
   .method-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Tablet */
@media (max-width: 1024px) {
  .welcome-title,
  .section-title {
    font-size: 30px;
  }
  .about-text,
  .welcome-sub {
    font-size: 17px;
  }

}





