/* =========================================================
   Devijn Bootverhuur — site styles (small global helpers)
   File: Website/assets/css/styles.css
   ========================================================= */

/* Basis */
html {
  font-family: "Open Sans", sans-serif;
  scroll-behavior: smooth;
}

:root {
  /* Houd dit gelijk aan je branding/Bootstrap primary */
  --devijn-primary: #3f54b2;
}

/* -----------------------------
   Shape dividers
------------------------------ */
.custom-shape-divider-top-1746345490 {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-top-1746345490 svg {
  position: relative;
  display: block;
  width: calc(112% + 1.3px);
  height: 150px;
}

.custom-shape-divider-top-1746345490 .shape-fill {
  fill: var(--bs-body-bg);
}

.custom-shape-divider-bottom-1746346450 {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-bottom-1746346450 svg {
  position: relative;
  display: block;
  width: calc(112% + 1.3px);
  height: 150px;
}

.custom-shape-divider-bottom-1746346450 .shape-fill {
  fill: var(--bs-body-bg);
}

/* Mobile: iets minder hoge waves, oogt rustiger */
@media (max-width: 576px) {
  .custom-shape-divider-top-1746345490 svg,
  .custom-shape-divider-bottom-1746346450 svg {
    height: 110px;
  }
}

/* -----------------------------
   Typografie helpers
------------------------------ */
h1, h2 {
  letter-spacing: -0.02em;
}

h1 {
  line-height: 1.15;
}

h2 {
  line-height: 1.2;
}

/* Links: subtieler en consistent */
a {
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

/* Toegankelijk: duidelijke focus */
:focus-visible {
  outline: 3px solid rgba(63, 84, 178, 0.35);
  outline-offset: 2px;
  border-radius: 6px;
}

/* -----------------------------
   WhatsApp floating button
------------------------------ */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  border-radius: 50px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  padding: 10px 18px;
  font-weight: 600;

  /* Standaard verborgen (je kunt 'm tonen via .whatsapp-visible) */
  opacity: 0;
  pointer-events: none;

  transition: opacity 0.25s ease, transform 0.25s ease;
  transform: translateY(6px);
}

.whatsapp-float i {
  margin-right: 8px;
}

/* Voeg deze class toe via JS om te tonen */
.whatsapp-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Op mobiel: vaak beter altijd zichtbaar (conversie) */
@media (max-width: 576px) {
  .whatsapp-float {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

/* -----------------------------
   Purple checklist
------------------------------ */
ul.purple-checklist {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

ul.purple-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 0.5rem 0;
  line-height: 1.35;
}

ul.purple-checklist li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--devijn-primary);
  flex: 0 0 auto;
  margin-top: 0.12rem;
}

/* -----------------------------
   Reduce motion (accessibility)
------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .whatsapp-float {
    transition: none;
  }
}
.carousel-inner {
  aspect-ratio: 1 / 1;
}
.hero-full {
  position: relative;
  width: 100%;
  height: 65vh;
  overflow: hidden;
}

.hero-full-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.4));
  display: flex;
  align-items: center;
}
/* === HERO video (full-width / full-height) === */
.hero-video {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
}

.hero-video > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0));
  z-index: 1;
  pointer-events: none;
}

.hero-nav {
  position: relative;
  z-index: 2;
  padding-top: 2rem;
}

.custom-shape-divider-bottom-1746346450 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  z-index: 3;
}



