/* =========================================================
   BASIS & TYPOGRAFIE
   ========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Kleuren die je vaak gebruikt */
  --nxt-primary: #3a0ca3;
  --nxt-primary-dark: #2e0891;
  --nxt-hero-start: #064ed4;
  --nxt-hero-end: #002f96;
  --text-main: #333;
  --bg-page: #f0f0f8;
}

html, body { height: 100%; }

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-page);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6; /* prettige basis regelafstand */
}

main { flex: 1; }

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3 { margin-bottom: 1rem; }
p { margin-bottom: 1rem; }

section { padding: 0; }

/* =========================================================
   NAVIGATIEBALK
   ========================================================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #3218ca;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  border: none;
  width: auto;
  height: auto;
}

.navbar-toggler-icon {
  width: 1.5em;
  height: 1.5em;
  background-size: 100% 100%;
}

/* optionele custom lijststijl voor eigen nav (niet Bootstrap) */
.nav-links { list-style: none; display: flex; gap: 1.5rem; }
.nav-links li a {
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links li a:hover { color: #ddd; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background: linear-gradient(to right, var(--nxt-hero-start), var(--nxt-hero-end));
  color: #fff;
  text-align: center;
  padding: 2rem 1rem 2rem;
  font-size: large;
  font-weight: bold;
}
.hero .tagline {
  margin-top: 1rem;
  font-weight: 500;
  font-size: 1.2rem;
}

/* =========================================================
   GENERIEKE COMPONENTEN
   ========================================================= */

/* Custom NXT knoppen (naast Bootstrap) */
.btn-nxt {
  display: inline-block;
  background-color: var(--nxt-primary);
  color: #fff !important;
  padding: 0.6rem 1.8rem;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}
.btn-nxt:hover {
  background-color: var(--nxt-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

.btn-nxt-outline {
  display: inline-block;
  border: 2px solid var(--nxt-primary);
  color: var(--nxt-primary) !important;
  background: transparent;
  border-radius: 30px;
  padding: 0.6rem 1.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-nxt-outline:hover {
  background-color: var(--nxt-primary);
  color: #fff !important;
  transform: translateY(-2px);
}

/* Subtle appear; JS voegt zichtbaar-klasse toe */
.fade-in { opacity: 0; }

/* Accent border animatie (optioneel via extra klasse) */
.animated-border {
  border: 2px solid transparent;
  transition: border 0.4s ease;
}

/* =========================================================
   HOME / INTRO / GENERIEKE LAYOUT
   ========================================================= */
.home-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1400px;
  margin: 3rem auto;
  padding: 2rem;
  gap: 3rem;
}

.intro-image {
  max-width: 600px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.jess-txt-image {
  width: 100%;
  max-width: 200px;
  border-radius: 12px;
  margin-top: 2rem;
}

.extra-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
}

@media (max-width: 768px) {
  .btn-contact {
    display: block;
    width: 100% !important;
    text-align: center;
    margin: 1.2rem 0 2rem;
  }
}

/* =========================================================
   CONTACT-PAGINA
   ========================================================= */
.jess-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 50%;
  border: 5px solid #0062b3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.contact-box {
  background-color: #91919128;
  border: 3px solid #008cff;
  border-radius: 30px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(185, 7, 7, 0.1);
}

.contact-header p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.contact-details a { color: #440cc7; }
.contact-details .row { justify-content: center; }
.contact-details div { margin-bottom: 0.5rem; }
.label { font-weight: 600; color: #000; }

/* =========================================================
   FOTO-SLIDER & LIGHTBOX
   ========================================================= */
.foto-carousel {
  padding: 2rem;
  text-align: center;
}

.slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 1000px;
  margin: 2rem auto 0;
}

.slider-window {
  width: 100%;
  max-width: 800px;
  overflow: hidden;
  border-radius: 20px;
}

.slider-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.slider-track img {
  flex: 0 0 100%;
  width: 100%;
  max-width: 800px;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.slider-btn {
  background: var(--nxt-primary);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: var(--nxt-primary-dark);
  transform: scale(1.08);
}

.slider-dots {
  margin-top: 1rem;
}

.slider-dots .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-dots .dot.active {
  background: var(--nxt-primary);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox.hidden {
  display: none;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 16px;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {
  .slider {
    gap: 0.5rem;
  }

  .slider-track img {
    height: 260px;
  }

  .slider-btn {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
}

/* =========================================================
   REVIEWS
   ========================================================= */
.review-wrapper {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-inline: 1rem;
  scroll-padding-inline: 1rem;
}

.review-track {
  display: flex;
  gap: 1.5rem;
  margin: 0 auto;
  width: max-content;
}

.review-card,
.review-card-jack {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  margin: 1rem;
  max-width: 500px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.review-card .stars,
.review-card-jack .stars {
  color: #f2b01e;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.review-card small,
.review-card-jack small {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  color: #333;
}

/* =========================================================
   THEORIEBLOK
   ========================================================= */
.theorie-blok {
  background: #f6f6ff;
  border: 2px solid var(--nxt-primary);
  border-radius: 20px;
  padding: 2rem;
  margin-top: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.theorie-blok h3 {
  color: var(--nxt-primary);
  font-weight: 700;
  margin-bottom: 1rem;
}
.theorie-blok p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-main);
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: linear-gradient(to right, var(--nxt-hero-start), var(--nxt-hero-end));
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 2rem;
}

/* Subtiele site animaties */
.site-animate {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.site-animate.site-animate-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .site-animate {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Compactere FAQ knoppen */
#faqAccordion .accordion-button {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  line-height: 1.35;
}

#faqAccordion .accordion-header {
  margin-bottom: 0;
}

#faqAccordion .accordion-body {
  padding: 0.9rem 1rem;
}
