/* ==============================================================================
   HOBBY & HAPPINESS — STYLESHEET
   ==============================================================================
   Dit bestand bevat alle stijlen voor de website. Het is opgedeeld in
   secties zodat je makkelijk kunt vinden wat je wilt aanpassen.

   Inhoudsopgave:
    1.  CSS Variabelen / :root          — kleuren, maten, transitions
    2.  Reset & Basis                   — algemene HTML-element stijlen
    3.  Aangepaste Scrollbar            — bruine balk i.p.v. standaard grijs
    4.  Typografie                      — koppen, paragrafen, titels
    5.  Hulpklassen (Utility)           — container, row, grid
    6.  Knoppen                         — accent (groen), about (geel)
    7.  Afbeeldingen
    8.  Header & Navigatie              — logo + menu
    9.  Home Sectie
   10.  Over Mij Sectie
   11.  Aanbod Sectie                   — workshops & arrangementen
   12.  Contact Sectie                  — Lottie-animatie + contactformulier
   13.  Contactformulier                — stijl van de invoervelden en knop
   14.  Footer Onderstuk                — adres, social, kaart, copyright
   15.  Scroll-naar-boven Knop          — pijl, bloem-bloei, bij-animatie
   16.  Animaties & Keyframes
   17.  Aanbod Modal                    — pop-up met carrousel & beschrijving
   18.  Scroll Strike Effect            — doorhalingslijn bij "mij" -> "Mel"
   19.  Nav Link                        — vloeiende overgang voor menu-links
   20.  Media Queries (responsive design)
       20.1  Touch-apparaat hover-preventie   (hover: none)
       20.3  Laptop                           (max-width: 1400px)
       20.4  Hover uitschakelen tablet/mobiel (max-width: 1024px)
       20.5  Tablet                           (768px – 1024px)
       20.6  Mobiel                           (max-width: 767px)
============================================================================== */


/* ==============================================================================
   1. CSS VARIABELEN
   ------------------------------------------------------------------------------
   Hier staan alle kleuren en herbruikbare waarden centraal. Wil je het
   kleurpalet van de site aanpassen? Verander dan een waarde hieronder en
   het wordt overal in de site automatisch doorgevoerd.
============================================================================== */
:root {
  /* --- Merkkleur / Bruin --- */
  --brown: #8f705a;
  /* hoofdkleur, tekst, randen */
  --brown-light: #d6bfaf;
  /* hover, gedempt */
  --brown-border: #e8d9cc;
  /* scheidingslijnen, subtiele randen */

  /* --- Achtergrond --- */
  --bg: #fff6ea;
  /* warme crème paginaachtergrond */

  /* --- Accenten --- */
  --rose: #f7c9d4;
  /* roze accent */
  --green: #bdd996;
  /* btn-accent achtergrond */
  --yellow: #fff4a5;
  /* btn-about achtergrond */
  --blue: #C3E0F3;
  /* sectietitels, btn-about tekstkleur */

  /* --- Neutraal --- */
  --text-dark: #111;
  /* donkere koppen */
  --text-mid: #555;
  /* gedempte tekst */
  --text-link: #777;
  /* standaard linkkleur */

  /* --- Schaduw onder knoppen bij hover --- */
  --shadow: 0 0.5em 0.5em -0.4em rgba(107, 124, 154, 0.8);

  /* --- Standaard transitie (vloeiend overgangseffect) --- */
  --transition: all 0.25s ease;

  /* --- Knopmaten --- */
  --btn-height: 65px;
  --btn-radius: 100px;

  /* --- Standaard sectieopvulling op desktop --- */
  --section-pad: 130px 65px;
}


/* ==============================================================================
   2. RESET & BASIS
   ------------------------------------------------------------------------------
   Basisinstellingen voor alle HTML-elementen.
   box-sizing zorgt dat padding/border meetellen in de breedte van een element.
============================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background-color: var(--bg);
}

body {
  color: var(--brown);
  font-family: "inter", Verdana, sans-serif;
  font-size: 16px;
  font-weight: 300;
}

/* Voorkomt scrollen op de body wanneer het mobiele menu of de modal open is */
body.no-scroll {
  overflow: hidden;
}

a {
  color: var(--text-link);
  font-weight: 400;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
  margin: 0 0 10px 0;
  padding: 0;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
  margin-top: 5px;
}

ul li,
ol li {
  margin-bottom: 5px;
  outline: 0;
}

ul li:last-child,
ol li:last-child {
  margin-bottom: 0;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: 0;
}

figure {
  margin: 0;
}

img {
  border: 0;
  display: inline-block;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

/* Kleur van geselecteerde tekst (zwart met witte letters) */
::selection {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  text-shadow: none;
}


/* ==============================================================================
   3. AANGEPASTE SCROLLBAR
   ------------------------------------------------------------------------------
   Geeft de scrollbar de bruine merkkleur in plaats van het standaard grijs.
   (Werkt in browsers op basis van Webkit, zoals Chrome, Safari en Edge.)
============================================================================== */
body::-webkit-scrollbar,
textarea::-webkit-scrollbar {
  width: 14px;
}

body::-webkit-scrollbar-track,
textarea::-webkit-scrollbar-track {
  background: transparent;
}

body::-webkit-scrollbar-thumb,
textarea::-webkit-scrollbar-thumb {
  background-color: var(--brown);
  border: 3px solid #fff;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

body::-webkit-scrollbar-thumb:hover,
textarea::-webkit-scrollbar-thumb:hover {
  background-color: var(--brown-light);
}


/* ==============================================================================
   4. TYPOGRAFIE
   ------------------------------------------------------------------------------
   Stijlen voor titels (h1 t/m h6) en gewone tekst (p).
============================================================================== */
h1,
h2 {
  color: var(--brown);
  line-height: 1.2;
}

h3,
h4,
h5,
h6 {
  color: var(--blue);
  line-height: 1.2;
}

h1,
h2,
h3 {
  margin: 0 0 25px;
}

h1 {
  font-size: 2.5em;
  line-height: 1.4;
}

h2 {
  font-size: 1.5em;
  line-height: 1.4;
}

h3 {
  font-size: 1.4em;
  line-height: 1.4;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
}

p {
  line-height: 2;
  margin: 0 0 20px 0;
}

p:empty {
  display: none;
}

/* --- Sectie-ondertitel (kleine titel boven de hoofdtitel, met streepje ervoor) --- */
h2.section-subtitle {
  font-family: "Cormorant SC", Georgia, serif;
  font-size: 1.6em;
  font-weight: 400;
  line-height: 1;
}

/* De "liner"-variant tekent een horizontaal streepje vóór de tekst */
h2.section-subtitle.liner {
  padding-left: 30px;
  position: relative;
}

h2.section-subtitle.liner:before {
  border-bottom: 3px solid var(--brown);
  content: "";
  left: 0;
  position: absolute;
  top: 12px;
  width: 22px;
}

/* --- Hoofd-sectietitel (de grote kop in iedere sectie) --- */
h3.section-title {
  color: var(--blue);
  font-family: "Jost", Georgia, serif;
  font-size: 3.4em;
  font-weight: 600;
  line-height: 1.2;
  text-transform: none;
}

/* Roze kleur-variant voor de Aanbod-sectie en het contactformulier */
#offerings .section-header h3.section-title,
.contact-form-container h3.section-title {
  color: var(--rose);
  font-size: 3.4em;
  line-height: 1.2;
}


/* ==============================================================================
   5. HULPKLASSEN (UTILITY)
   ------------------------------------------------------------------------------
   Algemene layout-klassen die in elke sectie terugkomen.
============================================================================== */
.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1421px;
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.inner-content {
  padding: 0 20px;
  width: 100%;
}


/* ==============================================================================
   6. KNOPPEN
   ------------------------------------------------------------------------------
   Twee knopvarianten:
   - .btn-accent  : groene knop (homepage "Over mij")
   - .btn-about   : gele knop  (Over mij sectie "Bekijk aanbod")
============================================================================== */
button {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1em;
  font-weight: 600;
  height: var(--btn-height);
}

.btn-wrap {
  margin-top: 70px;
}

.btn-wrap a {
  font-weight: 500;
}

.btn-wrap.home-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.btn-wrap.home-buttons .btn-accent {
  flex: 0 0 auto;
}

/* --- Accent-knop (groen) --- */
.btn-accent {
  align-items: center;
  background-color: var(--green);
  border-radius: var(--btn-radius);
  box-sizing: border-box;
  color: var(--rose);
  display: inline-flex;
  font-size: 18px;
  height: var(--btn-height);
  justify-content: center;
  min-width: 220px;
  padding: 0 40px;
  position: relative;
  transition: var(--transition);
}

.btn-accent:focus {
  background-color: var(--green);
  box-shadow: none;
  color: var(--rose);
  transform: translateY(0);
}

/* Hover-effect alleen op apparaten met muis (geen touchscreen) */
@media (hover: hover) {
  .btn-accent:hover {
    background-color: var(--blue);
    box-shadow: var(--shadow);
    color: var(--yellow);
    transform: translateY(-0.25em);
  }
}

/* --- Over-mij-knop (geel) --- */
.btn-about {
  align-items: center;
  background-color: var(--yellow);
  border-radius: var(--btn-radius);
  box-sizing: border-box;
  color: var(--blue);
  display: inline-flex;
  font-size: 18px;
  font-weight: 500;
  height: var(--btn-height);
  justify-content: center;
  min-width: 220px;
  padding: 0 40px;
  position: relative;
  text-decoration: none;
  transition: var(--transition);
}

.btn-about:focus {
  background-color: var(--yellow);
  color: var(--blue);
  outline: none;
  transform: translateY(0);
}

@media (hover: hover) {
  .btn-about:hover {
    background-color: var(--rose);
    box-shadow: var(--shadow);
    color: var(--green);
    transform: translateY(-0.25em);
  }
}


/* ==============================================================================
   7. AFBEELDINGEN
============================================================================== */

/* Grote afbeeldingen in de Home- en Over-mij-sectie */
img.single-image {
  border-radius: 15px;
  height: 700px;
  object-fit: cover;
  width: 100%;
}


/* ==============================================================================
   8. HEADER & NAVIGATIE
   ------------------------------------------------------------------------------
   De bovenste balk met het logo (links) en het menu (rechts).
============================================================================== */
header#header {
  background-color: var(--bg);
  padding: 30px 65px;
}

header#header .grid {
  align-items: center;
}

header#header ul.menu-list {
  display: flex;
}

nav#navbar {
  align-items: baseline;
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.main-logo img {
  height: 150px;
  width: auto;
}

.main-menu ul.menu-list a {
  color: var(--brown);
  font-size: 16px;
  font-weight: 400;
  padding: 0 25px;
  transition: var(--transition);
}

.main-menu ul.menu-list li:last-child a {
  padding-right: 0;
}

.main-menu ul.menu-list a:hover {
  color: var(--rose);
}

/* Hover-kleur overschrijft eventuele eerdere stijlen — bewust hier geplaatst */
#navbar .menu-list.responsive a:hover,
.main-menu ul.menu-list a:hover {
  color: var(--rose) !important;
}

/* Hamburger-icoon is standaard verborgen; wordt zichtbaar op mobiel */
.main-menu .hamburger {
  display: none;
}


/* ==============================================================================
   9. HOME SECTIE
============================================================================== */
#home {
  background: var(--bg);
  padding: var(--section-pad);
}

#home .section-text h3.home-title {
  color: var(--rose);
  font-family: "Jost", Georgia, serif;
  font-size: 3.4em;
  font-weight: 600;
  line-height: 1.2;
}

/* Home- en About-sectie hebben dezelfde 50/50 layout */
#home figure,
#about figure {
  width: 45%;
}

#home .section-text,
#about .section-text {
  width: 45%;
}

#home .section-text .section-text-body,
#about .section-text .section-text-body {
  width: 85%;
}

#home .section-content .grid,
#about .section-content .grid {
  align-items: center;
}

#home figure img.single-image {
  height: 700px;
  object-fit: cover;
}


/* ==============================================================================
   10. OVER MIJ SECTIE
============================================================================== */
#about {
  background: var(--bg);
  padding: var(--section-pad);
}


/* ==============================================================================
   11. AANBOD SECTIE (Workshops & Arrangementen)
   ------------------------------------------------------------------------------
   De raster-layout met aanbod-kaarten. Elke kaart bestaat uit:
   - een afbeelding (.offering-image)
   - een figcaption met titel en categorie
   Bij een klik opent de Aanbod-Modal (zie sectie 17).
============================================================================== */
#offerings {
  background-color: var(--bg);
  overflow: hidden;
  padding: var(--section-pad);
  position: relative;
}

#offerings .inner-content>.grid {
  align-items: center;
  flex-direction: column;
  width: 100%;
}

#offerings .grid.offerings-grid {
  align-items: stretch;
  flex-direction: row;
  gap: 25px;
  justify-content: flex-start;
  padding-bottom: 0;
  width: 100%;
}

#offerings .section-header {
  text-align: center;
  width: 100%;
}

#offerings .section-header h2.section-subtitle {
  margin-bottom: 25px;
}

/* Maak het streepje voor de ondertitel netjes gecentreerd */
#offerings .section-header h2.section-subtitle.liner {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  width: fit-content;
}

#offerings .section-header h2.section-subtitle.liner:before {
  border-bottom: 3px solid var(--brown);
  content: "";
  flex-shrink: 0;
  left: auto;
  position: relative;
  top: auto;
  transform: none;
  width: 22px;
}

#offerings .section-header h3.section-title {
  margin-bottom: 40px;
}

/* --- Aanbod-kaarten (één kaart per workshop/arrangement) --- */
#offerings .offering-card {
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition);
  width: calc((100% - 50px) / 3);
}

#offerings .offering-card img.offering-image {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
}

/* Bij hover wordt de afbeelding licht ingezoomd voor een "kom dichterbij" gevoel */
#offerings .offering-card:hover img.offering-image {
  transform: scale(1.1);
}

#offerings .offering-card figcaption {
  align-items: center;
  background: #fff;
  display: flex;
  justify-content: space-between;
  padding: 30px 20px;
  position: relative;
  z-index: 2;
}

#offerings .offering-card h3 {
  color: var(--text-dark);
  font-family: "Jost", Verdana, sans-serif;
  font-size: 1.3em;
  font-weight: 600;
  margin: 0;
  text-transform: capitalize;
}

#offerings .offering-card h3 a {
  color: var(--brown);
}

/* Titels met klasse .no-capitalize behouden hun originele hoofdletter-gebruik */
#offerings .offering-card h3 a.no-capitalize {
  cursor: default;
  pointer-events: none;
  text-transform: none;
}

#offerings .offering-card figcaption h3 a:hover {
  color: inherit;
}

#offerings .category-title {
  color: var(--brown);
  font-size: 15px;
}


/* ==============================================================================
   12. CONTACT SECTIE
   ------------------------------------------------------------------------------
   Bevat de Lottie-animatie (links) en het contactformulier (rechts).
============================================================================== */
#contact {
  background-color: var(--bg);
  padding: var(--section-pad);
}

#contact .contact-item {
  margin-left: 0;
  width: 45%;
}

#contact .contact-item.contact-form-container {
  width: 45%;
}

/* Container rond de Lottie-animatie */
#lottie-container {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  padding-right: 0;
}

/* Het Lottie-animatie element zelf */
#lottie-animation {
  width: 90%;
}


/* ==============================================================================
   13. CONTACTFORMULIER
   ------------------------------------------------------------------------------
   Het formulier waar bezoekers een bericht kunnen achterlaten.
============================================================================== */
.contact-form-container {
  padding: 0;
}

.contact-form-container h2.section-subtitle {
  font-family: "Cormorant SC", Georgia, serif;
  font-size: 1.6em;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 25px;
}

.contact-form-container h3.section-title {
  color: var(--blue);
  font-family: "Jost", Georgia, serif;
  font-size: 3.4em;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 25px;
  text-transform: none;
}

.contact-form-container p {
  color: var(--brown);
  font-size: 16px;
  line-height: 2;
  margin: 0 0 40px 0 !important;
}

.contact-form-container p.contact-intro {
  margin-bottom: 20px !important;
}

.contact-form {
  width: 100%;
}

.form-group {
  margin-bottom: 25px;
}

.contact-form input[type="text"],
.contact-form input[type="email"] {
  height: var(--btn-height);
}

/* Algemene stijl voor alle invoervelden (tekst, e-mail, bericht) */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  background-color: transparent;
  border: 2px solid var(--brown);
  border-radius: 10px;
  color: var(--brown);
  font-family: "inter", Verdana, sans-serif;
  font-size: 16px;
  font-weight: 300;
  padding: 18px 20px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

/* Stijl van de placeholder-tekst (de grijze hint in het invoerveld) */
.contact-form input[type="text"]::placeholder,
.contact-form input[type="email"]::placeholder,
.contact-form textarea::placeholder {
  color: var(--brown);
  font-family: "inter", Verdana, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 2;
}

/* Lichtere rand wanneer een veld geselecteerd (focus) is */
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
  border-color: var(--brown-light);
  outline: none;
}

.contact-form textarea {
  line-height: 1.5;
  min-height: 120px;
  resize: none;
  vertical-align: top;
}

/* --- Verzendknop --- */
.contact-form .btn-accent.btn-submit {
  background-color: var(--brown);
  border: none;
  color: var(--bg);
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  justify-content: center;
  margin-top: 10px;
  padding: 20px 30px;
  position: relative;
  transition: var(--transition);
  width: 100%;
}

.contact-form .btn-accent.btn-submit:hover,
.contact-form .btn-accent.btn-submit:focus {
  background-color: var(--brown-light);
  box-shadow: var(--shadow);
  color: var(--bg);
  transform: translateY(-0.25em);
}


/* ==============================================================================
   14. FOOTER ONDERSTUK (onderkant pagina)
   ------------------------------------------------------------------------------
   Onderste blok met adres, social media, Google Maps en copyright.
   (Behoudt de id #footer-bottom, omdat dit visueel de bodem van de pagina is.)
============================================================================== */
#footer-bottom {
  background: var(--bg);
  padding: 130px 65px 0 65px;
}

#footer-bottom .footer-bottom-inner {
  border-top: 1px solid var(--brown-border);
  padding-top: 60px;
}

/* Twee kolommen: links de adres-info, rechts de Google Maps kaart */
#footer-bottom .footer-bottom-top {
  align-items: center;
  display: grid;
  gap: 65px;
  grid-template-columns: 1fr 1.8fr;
  margin-bottom: 60px;
}

#footer-bottom .footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

#footer-bottom .footer-bottom-title {
  color: var(--brown);
  font-family: "Jost", Georgia, serif;
  font-size: 1.6em;
  font-weight: 600;
  margin: 0 0 25px 0;
}

#footer-bottom .footer-bottom-address {
  color: var(--brown);
  font-size: 16px;
  line-height: 2;
  margin: 0 0 20px 0;
}

#footer-bottom .footer-bottom-address span {
  display: block;
}

#footer-bottom .footer-social-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#footer-bottom .footer-social-links a {
  align-items: center;
  color: var(--brown);
  display: inline-flex;
  font-size: 16px;
  gap: 10px;
  text-decoration: none;
  transition: var(--transition);
  width: fit-content;
}

#footer-bottom .footer-social-links a:hover {
  color: var(--rose);
}

/* Google Maps embed met afgeronde hoeken */
#footer-bottom .footer-bottom-map {
  border-radius: 10px;
  height: 220px;
  overflow: hidden;
}

#footer-bottom .footer-bottom-map iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

/* Copyright-regel onderaan */
#footer-bottom .footer-bottom-copy {
  align-items: center;
  border-top: 1px solid var(--brown-border);
  display: flex;
  justify-content: space-between;
  padding-bottom: 60px;
  padding-top: 60px;
}

#footer-bottom .footer-bottom-copy p {
  color: var(--brown);
  font-size: 16px;
  margin: 0;
}


/* ==============================================================================
   15. SCROLL-NAAR-BOVEN KNOP
   ------------------------------------------------------------------------------
   Ronde knop rechtsonder. Standaard zie je een pijl-omhoog. Bij klikken
   verschijnt een bloem-animatie, gevolgd door een bijtje dat omhoog vliegt.
============================================================================== */
#scrollToTopBtn {
  align-items: center;
  background-color: var(--brown);
  border: none;
  border-radius: 50%;
  bottom: 40px;
  box-shadow: var(--shadow);
  cursor: pointer;
  display: flex;
  height: 65px;
  justify-content: center;
  opacity: 0;
  overflow: visible;
  position: fixed;
  right: 40px;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  visibility: hidden;
  width: 65px;
  z-index: 1000;
}

/* Toon de knop pas zodra de bezoeker iets naar beneden gescrolld heeft */
#scrollToTopBtn.visible {
  opacity: 1;
  visibility: visible;
}

#scrollToTopBtn:hover {
  background-color: var(--brown-light);
  box-shadow: var(--shadow);
  transform: translateY(-0.25em);
}

#scrollToTopBtn:active {
  background-color: var(--brown-light);
  transform: none;
}

/* Toestand direct na het klikken (animatie wordt voorbereid) */
#scrollToTopBtn.clicked {
  background: transparent;
  box-shadow: none;
  pointer-events: none;
}

#scrollToTopBtn.clicked .arrow {
  opacity: 0;
}

#scrollToTopBtn.clicked .flower-container {
  opacity: 1;
}

/* --- Pijl-icoon (standaard zichtbaar) --- */
.arrow {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 32px;
  height: 100%;
  justify-content: center;
  transition: opacity 0.3s ease;
  width: 100%;
}

.arrow svg {
  fill: none;
  height: 1em;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 1em;
}

/* --- Bloem (verschijnt nadat de knop wordt aangeklikt) --- */
.flower-container {
  height: 112px;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  width: 108px;
}

/* Bloemkern + alle bloemblaadjes: starten klein/onzichtbaar */
.flower-center,
.petal {
  opacity: 0;
  transform: scale(0);
  transform-origin: 241px 251px;
  transition: none;
}

/* Wanneer de knop "launching" is, bloeit de bloem stap voor stap open */
#scrollToTopBtn.launching .flower-center {
  animation: bloomIn 0.5s ease forwards;
}

#scrollToTopBtn.launching .petal {
  animation: bloomIn 0.45s ease forwards;
}

/* Ieder bloemblaadje krijgt een kleine vertraging zodat ze één-voor-één openen */
#scrollToTopBtn.launching .petal-1 {
  animation-delay: 0.20s;
}

#scrollToTopBtn.launching .petal-2 {
  animation-delay: 0.30s;
}

#scrollToTopBtn.launching .petal-3 {
  animation-delay: 0.40s;
}

#scrollToTopBtn.launching .petal-4 {
  animation-delay: 0.50s;
}

#scrollToTopBtn.launching .petal-5 {
  animation-delay: 0.60s;
}

#scrollToTopBtn.launching .petal-6 {
  animation-delay: 0.70s;
}

#scrollToTopBtn.launching .petal-7 {
  animation-delay: 0.80s;
}

#scrollToTopBtn.launching .petal-8 {
  animation-delay: 0.90s;
}

#scrollToTopBtn.launching .petal-9 {
  animation-delay: 1.00s;
}

#scrollToTopBtn.launching .petal-10 {
  animation-delay: 1.10s;
}

/* --- Bijtje (vlucht + stippellijn / slipstream) --- */
.bee-container {
  left: 50%;
  opacity: 0;
  overflow: visible;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

.bee-wing {
  transform-box: fill-box;
  transform-origin: center bottom;
}

/* Vleugels klapperen continu terwijl het bijtje door het scherm vliegt */
.bee-free-flying .bee-wing-left {
  animation: wingFlapLeft 0.12s ease-in-out infinite alternate;
}

.bee-free-flying .bee-wing-right {
  animation: wingFlapRight 0.12s ease-in-out infinite alternate;
}

/* Kleine bruine stipjes die de vluchtroute van het bijtje markeren */
.bee-trail-dot {
  animation: dotFade 1.2s ease forwards;
  background-color: var(--brown);
  border-radius: 50%;
  height: 5px;
  pointer-events: none;
  position: fixed;
  width: 5px;
  z-index: 9998;
}


/* ==============================================================================
   16. ANIMATIES & KEYFRAMES
   ------------------------------------------------------------------------------
   Hier staan alle keyframe-animaties die elders in het bestand worden
   aangeroepen (bv. de bloem-bloei en het vleugel-geklapper).
============================================================================== */

/* Bloeit de bloem (en de bloemblaadjes) van niets naar volledige grootte */
@keyframes bloomIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  60% {
    opacity: 1;
    transform: scale(1.15);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Linker vleugel klappert: van uitgevouwen naar ingedrukt */
@keyframes wingFlapLeft {
  from {
    transform: scaleY(1);
  }

  to {
    transform: scaleY(0.3);
  }
}

/* Rechter vleugel klappert tegengesteld aan de linker */
@keyframes wingFlapRight {
  from {
    transform: scaleY(0.3);
  }

  to {
    transform: scaleY(1);
  }
}

/* Het bijtje verschijnt met een lichte "pop" wanneer het uit de knop komt */
@keyframes beeSpawnIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }

  60% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* De trail-stippen vervagen langzaam en krimpen weg */
@keyframes dotFade {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}


/* ==============================================================================
   17. AANBOD MODAL (pop-up venster)
   ------------------------------------------------------------------------------
   Opent boven de pagina als een bezoeker op een aanbod-kaart klikt.
   - .modal-image-carousel : foto-carrousel
   - .modal-nav-arrow      : vorige/volgende-pijlen
   - .modal-pagination     : bolletjes onder de foto
   - .modal-description    : titel, categorie en beschrijving
============================================================================== */
#offering-modal-overlay {
  align-items: center;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  opacity: 0;
  padding: 20px;
  position: fixed;
  top: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  visibility: hidden;
  width: 100%;
  z-index: 2000;
}

#offering-modal-overlay.visible {
  opacity: 1;
  visibility: visible;
}

#offering-modal-content {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  max-height: 90vh;
  max-width: 900px;
  opacity: 0;
  overflow-y: auto;
  position: relative;
  transform: scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: 100%;
}

/* Aangepaste scrollbar binnen de modal */
#offering-modal-content::-webkit-scrollbar {
  width: 10px;
}

#offering-modal-content::-webkit-scrollbar-track {
  background: transparent;
}

#offering-modal-content::-webkit-scrollbar-thumb {
  background-color: var(--brown);
  border: 2px solid #fff;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

#offering-modal-content::-webkit-scrollbar-thumb:hover {
  background-color: var(--brown-light);
}

#offering-modal-overlay.visible #offering-modal-content {
  opacity: 1;
  transform: scale(1);
}

/* --- Sluitknop (kruisje rechtsboven) --- */
#offering-modal-close {
  background: transparent;
  border: none;
  color: var(--brown);
  cursor: pointer;
  height: 30px;
  padding: 0;
  position: absolute;
  right: 25px;
  top: 15px;
  transition: color 0.25s ease, transform 0.25s ease;
  width: 30px;
  z-index: 2010;
}

#offering-modal-close svg {
  height: 100%;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 100%;
}

#offering-modal-close:hover {
  color: var(--brown-light);
  transform: rotate(90deg);
}

/* --- Foto-carrousel --- */
.modal-carousel-container {
  max-width: 100%;
  padding: 40px 80px 20px 80px;
  position: relative;
}

.modal-image-carousel {
  background-color: #f0f0f0;
  height: 450px;
  margin: 0 auto;
  max-width: 740px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Foto's liggen over elkaar; de actieve faderbinnen */
.modal-image-carousel img {
  display: block;
  height: 100%;
  left: 0;
  object-fit: cover;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.5s ease-in-out;
  width: 100%;
  z-index: 0;
}

.modal-image-carousel img.active {
  opacity: 1;
  z-index: 1;
}

/* --- Navigatiepijlen vorige / volgende --- */
.modal-nav-arrow {
  align-items: center;
  background-color: var(--brown);
  border: none;
  border-radius: 50%;
  color: var(--bg);
  cursor: pointer;
  display: none;
  height: 50px;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
  width: 50px;
  z-index: 5;
}

.modal-nav-arrow.prev {
  left: 15px;
}

.modal-nav-arrow.next {
  right: 15px;
}

.modal-nav-arrow svg {
  fill: none;
  height: 24px;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 24px;
}

.modal-nav-arrow:hover {
  background-color: var(--brown-light);
  box-shadow: var(--shadow);
  transform: translateY(-50%) translateY(-0.25em);
}

.modal-nav-arrow:active {
  transform: translateY(-50%);
}

/* --- Paginering (bolletjes onder de carrousel) --- */
.modal-pagination {
  display: none;
  padding: 0 0 15px 0;
  text-align: center;
}

.modal-pagination .dot {
  background: #ccc;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
  height: 10px;
  margin: 0 5px;
  transition: all 0.3s ease-in-out;
  width: 10px;
}

/* Het actieve bolletje wordt langer (staafje) en bruin */
.modal-pagination .dot.active {
  background: var(--brown);
  border-radius: 5px;
  width: 25px;
}

.modal-pagination .dot:not(.active):hover {
  background-color: var(--brown-light);
}

.modal-pagination .dot.active:hover {
  background-color: var(--brown-light);
}

/* --- Tekstuele beschrijving onder de carrousel --- */
.modal-description {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 900px;
  padding: 25px 80px 40px 80px;
}

.modal-description .category {
  color: var(--brown);
  font-size: 0.9em;
  letter-spacing: 1px;
  margin: 0 0 20px 0;
}

.modal-description .title {
  color: var(--brown);
  font-family: "Jost", Georgia, serif;
  font-size: 2em;
  font-weight: 600;
  margin: 0 0 20px 0;
}

.modal-description .desc {
  color: var(--brown);
  font-size: 1em;
  line-height: 1.8;
  margin: 0;
  white-space: pre-line;
}


/* ==============================================================================
   18. SCROLL STRIKE EFFECT
   ------------------------------------------------------------------------------
   Tekent een horizontale streep door het woord (bv. "mij" in "Leer mij Mel
   kennen") zodra dat woord zichtbaar wordt tijdens het scrollen.
   De animatie wordt aangezet via JavaScript (zie script.js).
============================================================================== */
.scroll-strike {
  display: inline-block;
  position: relative;
}

.scroll-strike::after {
  background-color: currentColor;
  content: '';
  height: 4px;
  left: 0;
  position: absolute;
  top: 55%;
  transition: width 0.8s ease-in-out;
  width: 0;
}

/* Wanneer JavaScript de class "active" toevoegt, schuift de streep open */
.scroll-strike.active::after {
  width: 100%;
}


/* ==============================================================================
   19. NAV LINK
   ------------------------------------------------------------------------------
   Algemene vloeiende overgang voor alle navigatie-links.
============================================================================== */
.nav-link {
  transition: var(--transition);
}


/* ==============================================================================
   20. MEDIA QUERIES
   ------------------------------------------------------------------------------
   Aanpassingen voor verschillende schermbreedtes (responsive design).
============================================================================== */

/* ------------------------------------------------------------------------------
   20.1  Touch-apparaat hover-preventie   (hover: none)
   ------------------------------------------------------------------------------
   Op apparaten zonder muis (telefoons/tablets) blijven hover-stijlen anders
   "hangen". Hier zetten we hover-effecten netjes uit zodat knoppen na een
   tik weer terugkeren naar hun normale uiterlijk.
------------------------------------------------------------------------------ */
@media (hover: none) {
  .btn-accent:focus {
    background-color: var(--green);
    box-shadow: none;
    color: var(--rose);
    transform: none;
  }

  .btn-accent:hover {
    background-color: var(--green);
    color: var(--rose);
    transform: none;
  }

  .btn-accent:active {
    background-color: var(--green);
    transform: translateY(-0.1em);
  }

  .btn-about:hover {
    background-color: var(--yellow);
    color: var(--blue);
    transform: none;
  }

  #scrollToTopBtn:hover {
    background-color: var(--brown);
    box-shadow: var(--shadow);
    transform: none;
  }

  .contact-form .btn-accent.btn-submit:hover,
  .contact-form .btn-accent.btn-submit:focus {
    background-color: var(--brown);
    box-shadow: none;
    color: var(--bg);
    transform: none;
  }
}



/* ------------------------------------------------------------------------------
   20.3  Laptop   (max-width: 1400px)
   ------------------------------------------------------------------------------
   Kleinere titel op de aanbod-kaarten zodra de schermbreedte krap wordt.
------------------------------------------------------------------------------ */
@media only screen and (max-width: 1400px) {
  #offerings .offering-card h3 {
    font-size: 1em;
  }
}


/* ------------------------------------------------------------------------------
   20.4  Hover uitschakelen op tablet/mobiel   (max-width: 1024px)
   ------------------------------------------------------------------------------
   Vangt situaties op waarin :hover op touchscreens ongewenst wordt
   geactiveerd na een tik. Voorkomt "blijvende" hoverkleuren.
------------------------------------------------------------------------------ */
@media only screen and (max-width: 1024px) {

  .btn-accent:hover,
  .btn-accent:focus {
    background-color: var(--green);
    box-shadow: none;
    color: var(--rose);
    transform: none;
  }

  .btn-about:hover,
  .btn-about:focus {
    background-color: var(--yellow);
    color: var(--blue);
    transform: none;
  }

  #scrollToTopBtn:hover {
    background-color: var(--brown);
    box-shadow: var(--shadow);
    transform: none;
  }

  #scrollToTopBtn.clicked {
    background-color: transparent !important;
    box-shadow: none !important;
  }

  .contact-form .btn-accent.btn-submit:hover,
  .contact-form .btn-accent.btn-submit:focus {
    background-color: var(--brown);
    box-shadow: none;
    color: var(--bg);
    transform: none;
  }

  .main-menu ul.menu-list a:hover {
    color: var(--text-mid) !important;
  }

  #navbar .menu-list.responsive a:hover {
    color: var(--text-mid) !important;
  }
}


/* ------------------------------------------------------------------------------
   20.5  Tablet   (768px – 1024px)
   ------------------------------------------------------------------------------
   Iets compactere layout: kleinere lettergrootte, smallere padding,
   en de Home/Over-mij secties stapelen verticaal in plaats van naast elkaar.
------------------------------------------------------------------------------ */
@media only screen and (min-width: 768px) and (max-width: 1024px) {

  /* --- Basis & Typografie --- */
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 2.2em;
  }

  h2 {
    font-size: 1.4em;
  }

  h3 {
    font-size: 1.3em;
  }

  h2.section-subtitle {
    font-size: 1.5em;
  }

  h2.section-subtitle.liner {
    align-items: center;
    display: inline-flex;
    gap: 8px;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    width: fit-content;
  }

  h2.section-subtitle.liner:before {
    flex-shrink: 0;
    left: auto;
    position: relative;
    top: auto;
    transform: none;
    width: 22px;
  }

  /* Sectietitels op tablet zijn even groot als de home-title (2.2em),
     zodat alle koppen visueel één eenheid vormen. */
  h3.section-title {
    font-size: 2.2em;
    line-height: 1.25;
  }

  p {
    line-height: 1.9;
    margin: 0 0 20px 0;
  }

  /* --- Layout --- */
  .container {
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }

  .inner-content {
    padding: 0 15px;
  }

  /* --- Header & Navigatie --- */
  header#header {
    padding: 25px 30px;
  }

  .main-logo img {
    height: 100px;
    width: auto;
  }

  /* Iets meer ruimte tussen de menu-items, dichter bij de desktop-spacing
     (desktop = 0 25px). Zo zijn de items luchtiger gespreid. */
  .main-menu ul.menu-list a {
    font-size: 15px;
    padding: 0 20px;
  }

  .main-menu ul.menu-list li:last-child a {
    padding-right: 0;
  }

  /* Menu-items krijgen op tablet de roze hover/focus/active-kleur,
     zodat bij ingedrukt houden het item roze wordt. */
  .main-menu ul.menu-list a:hover,
  .main-menu ul.menu-list a:focus,
  .main-menu ul.menu-list a:active {
    color: var(--rose) !important;
  }

  nav#navbar {
    margin-top: 10px;
  }

  .main-menu .hamburger {
    display: none;
  }

  /* Scroll-naar-boven knop: hover-effect uitschakelen op tablet (touchscreen) */
  #scrollToTopBtn:hover {
    background-color: var(--brown);
    box-shadow: var(--shadow);
    transform: none;
  }

  /* --- Knoppen ---------------------------------------------------------------
     Gelijke padding, hoogte en fontsize voor btn-accent, btn-about én
     btn-submit, zodat ze één eenheid vormen met mobiel en desktop. */
  .btn-accent,
  .btn-about {
    box-sizing: border-box;
    font-size: 18px;
    height: 58px;
    justify-content: center;
    line-height: 1.2;
    padding: 16px 24px;
    text-align: center;
  }

  /* Overschrijft de "blauw met witte tekst" template-regels uit 20.4
     zodat de knoppen bij ingedrukt houden hun eigen kleuren behouden. */
  .btn-accent:hover,
  .btn-accent:focus,
  .btn-accent:active {
    background-color: var(--green);
    box-shadow: none;
    color: var(--rose);
    transform: none;
  }

  .btn-about:hover,
  .btn-about:focus,
  .btn-about:active {
    background-color: var(--yellow);
    box-shadow: none;
    color: var(--blue);
    transform: none;
  }

  .btn-wrap {
    margin-top: 70px;
  }

  .btn-wrap.home-buttons {
    flex-direction: row;
    gap: 20px;
  }

  /* --- Home (verticaal stapelen op tablet) ---
     Padding op #home gelijk aan #about en #offerings (80px 30px),
     zodat alle drie de secties dezelfde verticale ritmes hebben. */
  #home {
    padding: 80px 30px;
  }

  #home .section-content .grid {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 70px;
  }

  /* Gelijke breedte/hoogte voor de Home- en Over-mij-afbeelding,
     zoals op desktop. */
  #home figure,
  #about figure {
    display: block;
    max-width: 500px;
    order: 1;
    width: 100%;
  }

  #home figure img.single-image,
  #about figure img.single-image {
    aspect-ratio: 4 / 5;
    border-radius: 15px;
    height: auto;
    max-height: none;
    object-fit: cover;
    object-position: center;
    width: 100%;
  }

  #home .section-text {
    margin: 0 auto;
    max-width: none;
    order: 2;
    text-align: center;
    width: 90%;
  }

  #home .section-text h3.home-title {
    font-size: 2.2em;
    line-height: 1.25;
    text-align: center;
  }

  #home .section-text .section-text-body {
    width: 100%;
  }

  #home .section-text .section-text-body p {
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
  }

  #home .btn-wrap.home-buttons {
    justify-content: center;
  }

  /* --- Over Mij (verticaal stapelen op tablet) --- */
  #about {
    padding: 80px 30px;
  }

  #about .section-content .grid {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 70px;
  }

  #about .section-text {
    margin: 0 auto;
    max-width: none;
    order: 2;
    text-align: center;
    width: 90%;
  }

  #about .section-text h2.section-subtitle,
  #about .section-text h3.section-title {
    text-align: center;
  }

  #about .section-text .section-text-body {
    width: 100%;
  }

  #about .section-text .section-text-body p {
    font-size: 16px;
    text-align: center;
  }

  /* --- Aanbod (2 kolommen op tablet i.p.v. 3) --- */
  #offerings {
    padding: 80px 30px;
  }

  /* Forceer dezelfde sectietitel-grootte (2.2em) als de andere secties
     en als de home-title, zodat "Workshops en arrangementen" niet
     groter is dan de rest. */
  #offerings .section-header h3.section-title {
    font-size: 2.2em;
    line-height: 1.25;
    margin-bottom: 40px;
  }

  #offerings .section-header p {
    font-size: 16px;
  }

  #offerings .grid.offerings-grid {
    gap: 20px;
  }

  #offerings .offering-card {
    width: calc((100% - 20px) / 2);
  }

  #offerings .offering-card img.offering-image {
    aspect-ratio: 3 / 2;
  }

  #offerings .offering-card figcaption {
    padding: 22px 18px;
  }

  #offerings .offering-card h3 {
    font-size: 1.1em;
  }

  #offerings .category-title {
    font-size: 13px;
  }

  /* --- Contact Sectie (Lottie + Contactformulier) --- */
  #contact {
    padding: 80px 30px;
  }

  #contact .contact-content .grid {
    flex-wrap: wrap;
    gap: 30px 20px;
  }

  #contact .contact-item {
    margin-left: 0;
    width: 40%;
  }

  #contact .contact-item.contact-form-container {
    margin: 0 auto;
    text-align: center;
    width: 90%;
  }

  .contact-form-container h2.section-subtitle {
    font-size: 1.4em;
    margin-bottom: 25px;
    text-align: center;
  }

  .contact-form-container h2.section-subtitle.liner {
    align-items: center;
    display: inline-flex;
    gap: 8px;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    width: fit-content;
  }

  .contact-form-container h3.section-title {
    font-size: 2.2em;
    line-height: 1.25;
    margin-bottom: 25px;
    text-align: center;
  }

  .contact-form-container p {
    font-size: 16px;
    margin: 0 0 50px 0;
    text-align: center;
  }

  .contact-form {
    margin-left: calc(-5% / 0.9);
    max-width: none;
    text-align: left;
    width: calc(100% / 0.9);
  }

  /* Verberg de Lottie-animatie op tablet (te krap) */
  #lottie-container {
    display: none;
  }

  .form-group {
    margin-bottom: 20px;
  }

  /* Invoervelden erven border-radius: 10px uit de basisstijlen (sectie 13);
     we overschrijven hier alleen hoogte, padding en fontsize. */
  .contact-form input[type="text"],
  .contact-form input[type="email"] {
    font-size: 15px;
    height: 58px;
    padding: 15px 18px;
  }

  .contact-form textarea {
    font-size: 15px;
    min-height: 100px;
    padding: 15px 18px;
  }

  /* Verzendknop dezelfde maat/font/padding als de andere knoppen,
     en geen blauwe template-kleuren bij ingedrukt houden. */
  .contact-form .btn-accent.btn-submit {
    box-sizing: border-box;
    font-size: 18px;
    height: 58px;
    padding: 16px 24px;
  }

  .contact-form .btn-accent.btn-submit:hover,
  .contact-form .btn-accent.btn-submit:focus,
  .contact-form .btn-accent.btn-submit:active {
    background-color: var(--brown);
    box-shadow: none;
    color: var(--bg);
    transform: none;
  }

  /* --- Footer Onderstuk -----------------------------------------------------
     Geen onder-padding: anders is de afstand van de copyright tot de bodem
     groter dan tot het streepje erboven. Consistent met desktop en mobiel. */
  #footer-bottom {
    padding: 80px 30px 0 30px;
  }

  /* Footer-bottom titel iets kleiner op tablet (desktop = 1.6em). */
  #footer-bottom .footer-bottom-title {
    font-size: 1.4em;
  }

  /* Google Maps embed erft border-radius: 10px + overflow: hidden uit
     de basisstijl in sectie 14 — geen override nodig. */

  /* --- Scroll-naar-boven knop (iets kleiner op tablet) --- */
  #scrollToTopBtn {
    bottom: 30px;
    height: 55px;
    right: 30px;
    width: 55px;
  }

  #scrollToTopBtn .arrow {
    font-size: 28px;
  }

  /* --- Aanbod Modal (tablet) --- */
  #offering-modal-overlay {
    padding: 30px;
  }

  #offering-modal-content {
    -ms-overflow-style: none;
    border-radius: 12px;
    max-height: 85vh;
    max-width: 90%;
    position: relative;
    scrollbar-width: none;
  }

  #offering-modal-content::-webkit-scrollbar {
    display: none;
  }

  #offering-modal-close {
    height: 35px;
    position: absolute;
    right: 15px;
    top: 15px;
    width: 35px;
    z-index: 100;
  }

  .modal-carousel-container {
    padding: 30px 20px 20px 20px;
    position: relative;
  }

  .modal-image-carousel {
    height: 350px;
    margin-top: 30px;
  }

  /* Pijlen verbergen op tablet (swipe + bolletjes is voldoende) */
  .modal-nav-arrow {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }

  .modal-description {
    padding: 25px 30px 30px 30px;
  }

  .modal-description .category {
    font-size: 0.9em;
    margin-bottom: 20px;
  }

  .modal-description .title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .modal-description .desc {
    font-size: 0.95em;
    line-height: 1.75;
    margin-bottom: 20px;
  }

  .modal-description .desc:last-child {
    margin-bottom: 0;
  }

  .modal-pagination .dot {
    height: 10px;
    width: 10px;
  }

  .modal-pagination .dot.active {
    width: 28px;
  }
}


/* ------------------------------------------------------------------------------
   20.6  Mobiel   (max-width: 767px)
   ------------------------------------------------------------------------------
   Volledig mobiele weergave:
   - Alles in 1 kolom
   - Hamburger-menu in plaats van horizontale navigatiebalk
   - Aanbod-kaarten op volle breedte (1 per rij)
   - Modal vult het hele scherm
------------------------------------------------------------------------------ */
@media only screen and (max-width: 767px) {

  /* --- Sectieopvulling --- */
  #home,
  #about,
  #offerings,
  #contact {
    padding: 80px 20px;
  }

  #footer-bottom {
    padding: 80px 20px 0 20px;
  }

  /* --- Header --- */
  header#header {
    padding: 30px 20px;
    position: relative;
    z-index: 1000;
  }

  header#header .grid {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
  }

  /* --- Typografie --- */
  h1,
  #home .section-text h3.home-title {
    font-size: 2.4em;
    word-wrap: break-word;
  }

  h2.section-subtitle {
    font-size: 1.4em;
  }

  h2.section-subtitle.liner:before {
    top: 50%;
    transform: translateY(-50%);
  }

  h3.section-title {
    font-size: 2.4em;
  }

  /* --- Navigatie (logo links, hamburger rechts) --- */
  nav#navbar {
    display: flex;
    justify-content: flex-end;
    margin: 0;
    order: 2;
    position: static;
    width: auto;
  }

  .main-logo {
    flex-shrink: 0;
    margin: 0;
    order: 1;
    text-align: left;
    z-index: 1001;
  }

  .main-logo img {
    height: 125px;
    width: auto;
  }

  .main-menu {
    align-items: center;
    display: flex;
  }

  /* Hamburger-knop wordt zichtbaar op mobiel */
  .main-menu .hamburger {
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    height: 40px;
    justify-content: center;
    margin: 0;
    padding: 0;
    position: relative;
    width: 40px;
    z-index: 1002;
  }

  .main-menu .hamburger svg {
    display: block;
    height: 100%;
    width: 100%;
  }

  /* De 3 lijntjes van het hamburger-icoon */
  .hamburger .line {
    fill: none;
    stroke: var(--brown);
    stroke-linecap: round;
    stroke-width: 6;
    transition:
      stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
      stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .hamburger .line1 {
    stroke-dasharray: 60 207;
  }

  .hamburger .line2 {
    stroke-dasharray: 60 60;
  }

  .hamburger .line3 {
    stroke-dasharray: 60 207;
  }

  /* Hamburger transformeert naar een kruisje wanneer geopend */
  .hamburger.opened .line1,
  .hamburger.active .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
  }

  .hamburger.opened .line2,
  .hamburger.active .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
  }

  .hamburger.opened .line3,
  .hamburger.active .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
  }

  /* Logo zichtbaar houden zodra het menu over het scherm schuift */
  header#header .grid:has(.menu-list.active) .main-logo,
  header#header .grid:has(.menu-list.responsive) .main-logo {
    opacity: 1 !important;
    pointer-events: auto !important;
    position: relative;
    visibility: visible !important;
    z-index: 1001;
  }

  /* --- Mobiel menu (overlay over het hele scherm) --- */
  .main-menu ul.menu-list {
    background-color: var(--bg) !important;
    display: flex;
    flex-direction: column;
    height: 100vh;
    left: 0;
    opacity: 0;
    padding: 0;
    position: fixed;
    top: 0;
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out, visibility 0s linear 0.4s;
    visibility: hidden;
    width: 100%;
    z-index: 999;
  }

  /* Menu open: schuift naar beneden vanuit boven */
  .main-menu ul.menu-list.responsive,
  .main-menu ul.menu-list.active {
    align-items: center;
    gap: 20px;
    justify-content: center;
    opacity: 1;
    padding: 185px 40px 60px 40px;
    text-align: center;
    transform: translateY(0);
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out, visibility 0s linear 0s;
    visibility: visible;
  }

  .main-menu ul.menu-list li {
    margin: 15px 0 !important;
    opacity: 0;
    text-align: center;
    transform: translateY(15px);
    transition: all 0.4s ease;
    width: 100%;
  }

  /* Menu-items komen één voor één in beeld (getrapte animatie) */
  .main-menu ul.menu-list.active li {
    opacity: 1;
    transform: translateY(0);
  }

  .main-menu ul.menu-list.active li:nth-child(1) {
    transition-delay: 0.5s;
  }

  .main-menu ul.menu-list.active li:nth-child(2) {
    transition-delay: 0.6s;
  }

  .main-menu ul.menu-list.active li:nth-child(3) {
    transition-delay: 0.7s;
  }

  .main-menu ul.menu-list.active li:nth-child(4) {
    transition-delay: 0.8s;
  }

  .main-menu ul.menu-list.active li:nth-child(5) {
    transition-delay: 0.9s;
  }

  .main-menu ul.menu-list.active li:nth-child(6) {
    transition-delay: 1.0s;
  }

  .main-menu ul.menu-list:not(.active) li {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.2s ease;
    transition-delay: 0s;
  }

  #navbar .menu-list.responsive a,
  .main-menu ul.menu-list a {
    border: none;
    color: var(--brown) !important;
    display: inline-block;
    font-family: "inter", Verdana, sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.3px;
    padding: 0 25px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
  }

  #navbar .menu-list.responsive a:hover,
  .main-menu ul.menu-list a:hover {
    color: var(--rose) !important;
  }

  .main-menu ul.menu-list li.active a {
    color: var(--brown) !important;
    font-weight: 700;
  }

  /* --- Knoppen (volledige breedte op mobiel) --- */
  .btn-wrap {
    width: 100%;
  }

  .btn-wrap.home-buttons {
    flex-direction: column;
    gap: 20px;
  }

  .btn-wrap.home-buttons .btn-accent {
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .btn-wrap .btn-about {
    justify-content: center;
    width: 100%;
  }

  .btn-accent,
  .btn-about {
    font-size: 18px;
    height: 58px;
    justify-content: center;
    line-height: 1.2;
    padding: 16px 24px;
    text-align: center;
  }

  .btn-about {
    box-sizing: border-box;
    width: 100%;
  }

  @media (hover: hover) {
    .btn-wrap.home-buttons .btn-accent:hover {
      background-color: var(--blue);
      transform: translateY(-0.25em);
    }
  }

  /* --- Home & Over Mij (volledig stapelen) --- */
  #home .section-content .grid,
  #about .section-content .grid {
    display: flex;
    flex-direction: column;
  }

  #home .section-text,
  #about figure,
  #about .section-text {
    margin-bottom: 0;
    margin-right: 0;
    order: 1;
    width: 100%;
  }

  /* Het bakhuis-figuur verbergen op mobiel om ruimte te besparen */
  #home figure {
    display: none;
  }

  #home .section-text .section-text-body,
  #about .section-text .section-text-body {
    width: 100%;
  }

  #about figure {
    margin-bottom: 70px;
    order: -1;
  }

  img.single-image,
  #about img.single-image {
    aspect-ratio: auto;
    border-radius: 15px;
    height: auto;
    max-height: 500px;
    object-position: top center;
  }

  #home .section-text .section-text-body p {
    margin-bottom: 0;
  }

  #about .section-text-body p:last-child {
    margin-bottom: 0;
  }

  /* --- Aanbod (1 kolom op mobiel, linksuitgelijnd) --- */
  #offerings .inner-content>.grid {
    align-items: flex-start !important;
    text-align: left !important;
  }

  #offerings .section-header {
    margin-left: 0 !important;
    text-align: left !important;
    width: 100% !important;
  }

  #offerings .section-header h2.section-subtitle.liner {
    display: inline-block !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 30px !important;
    text-align: left !important;
    width: auto !important;
  }

  #offerings .section-header h2.section-subtitle.liner:before {
    left: 0 !important;
    margin: 0 !important;
    position: absolute !important;
    top: 12px !important;
    transform: none !important;
  }

  #offerings .section-header h3.section-title {
    font-size: 2.4em;
    margin-left: 0 !important;
    text-align: left !important;
  }

  #offerings .offering-card {
    border-radius: 12px;
    margin-bottom: 0;
    width: 100%;
  }

  #offerings .grid.offerings-grid {
    gap: 20px;
  }

  #offerings .offering-card figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding: 20px;
  }

  #offerings .offering-card h3 {
    font-size: 1.0em;
    font-weight: 600;
    margin-bottom: 0;
    width: 100%;
  }

  #offerings .category-title {
    color: var(--brown);
    font-size: 0.85em;
    margin-top: 0;
    width: 100%;
  }

  /* --- Contact Sectie (1 kolom) --- */
  #contact .contact-content .grid {
    align-items: center;
    flex-direction: column;
  }

  #contact .contact-item {
    margin: 0 0 40px 0;
    margin-left: 0;
    padding-right: 0;
    text-align: center;
    width: 100%;
  }

  #contact .contact-item.contact-form-container {
    margin-bottom: 0;
    width: 100%;
  }

  #contact .contact-form-container h2.section-subtitle.liner {
    display: block;
    font-size: 1.4em;
    margin-bottom: 25px;
    margin-left: 0;
    margin-right: 0;
    padding-left: 30px;
    position: relative;
    text-align: left;
    width: 100%;
  }

  #contact .contact-form-container h2.section-subtitle.liner:before {
    border-bottom: 3px solid var(--brown);
    content: "";
    left: 0;
    position: absolute;
    top: 12px;
    width: 22px;
  }

  #contact .contact-form-container h3.section-title {
    color: var(--blue);
    font-size: 2.4em;
    margin-bottom: 25px;
    text-align: left;
  }

  #contact .contact-form-container p {
    line-height: 2;
    margin: 0 0 20px 0;
    text-align: left;
  }

  /* Lottie-animatie ook op mobiel verbergen */
  #lottie-container {
    display: none !important;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form textarea {
    border-radius: 10px;
  }

  /* --- Footer Onderstuk (mobiel: alles onder elkaar) --- */
  #footer-bottom .footer-bottom-inner {
    border-top: 1px solid var(--brown-border);
    padding-top: 60px;
    width: 100%;
  }

  #footer-bottom .footer-bottom-top {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
    width: 100%;
  }

  #footer-bottom .footer-bottom-left {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  #footer-bottom .footer-bottom-title {
    font-size: 1.4em;
    margin-bottom: 25px;
    text-align: left !important;
  }

  #footer-bottom .footer-bottom-address {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: left !important;
  }

  #footer-bottom .footer-bottom-map {
    border-radius: 10px;
    height: 200px;
  }

  #footer-bottom .footer-bottom-copy {
    flex-direction: column;
    padding-top: 60px;
    text-align: left;
  }

  #footer-bottom .footer-bottom-copy p {
    font-size: 16px;
    text-align: center !important;
  }

  #footer-bottom .footer-social-links a {
    font-size: 16px;
  }

  #footer-bottom p {
    text-align: left !important;
  }

  /* --- Aanbod Modal (volledig scherm op mobiel) --- */
  #offering-modal-overlay {
    padding: 0;
  }

  #offering-modal-content {
    border-radius: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
    max-height: 100vh;
    max-width: 100%;
    width: 100%;
  }

  #offering-modal-content::-webkit-scrollbar,
  .modal-description::-webkit-scrollbar {
    display: none;
  }

  #offering-modal-content,
  .modal-description {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .modal-carousel-container {
    display: flex;
    flex-direction: column;
    padding: 60px 15px 20px 15px;
  }

  /* Carrousel met "grab" cursor zodat duidelijk is dat je kunt swipen */
  .modal-image-carousel {
    aspect-ratio: 16 / 9;
    background: transparent;
    cursor: grab;
    height: auto;
    margin-bottom: 0;
    overflow: hidden;
    touch-action: pan-y;
    width: 100%;
  }

  .modal-image-carousel:active {
    cursor: grabbing;
  }

  .modal-image-carousel img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
  }

  .modal-description {
    background: #fff;
    flex-shrink: 0;
    max-height: none;
    overflow-y: visible;
    padding: 25px 20px 30px 20px;
  }

  .modal-description .category {
    font-size: 0.85em;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }

  .modal-description .title {
    font-size: 1.6em;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  .modal-description .desc {
    font-size: 0.95em;
    line-height: 1.7;
  }

  .modal-description .desc:last-child {
    margin-bottom: 0;
  }

  /* Pijlen ook op mobiel verbergen (swipen vervangt ze) */
  .modal-nav-arrow {
    display: none !important;
  }

  .modal-pagination {
    padding: 15px 0 10px 0;
  }

  .modal-pagination .dot {
    height: 10px;
    width: 10px;
  }

  .modal-pagination .dot.active {
    width: 25px;
  }

  #offering-modal-close {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    color: var(--brown);
    cursor: pointer;
    height: 30px;
    padding: 0;
    position: absolute;
    right: 15px;
    top: 15px;
    transition: color 0.25s ease, transform 0.25s ease;
    width: 30px;
    z-index: 2020;
  }

  #offering-modal-close svg {
    height: 100%;
    stroke: currentColor;
    stroke-width: 2;
    width: 100%;
  }

  #offering-modal-close:hover {
    background: transparent;
    color: var(--brown-light);
    transform: rotate(90deg);
  }

  /* --- Scroll-naar-boven knop (mobiel) --- */
  #scrollToTopBtn {
    bottom: 30px;
    height: 55px;
    right: 30px;
    width: 55px;
  }

  #scrollToTopBtn .arrow {
    font-size: 28px;
  }

  #scrollToTopBtn:hover {
    background-color: var(--brown-light);
    box-shadow: var(--shadow);
    transform: translateY(-0.25em);
  }

  #scrollToTopBtn:active {
    background-color: var(--brown-light);
    transform: none;
  }

  #scrollToTopBtn.clicked {
    background: transparent;
    box-shadow: none;
    pointer-events: none;
  }

  #scrollToTopBtn.clicked .arrow {
    opacity: 0;
  }

  #scrollToTopBtn.clicked .flower-container {
    opacity: 1;
  }

  /* Touch-apparaten: hover-effect uitschakelen */
  @media (hover: none) {
    #scrollToTopBtn:hover {
      background-color: var(--brown);
      box-shadow: var(--shadow);
      transform: none;
    }

    .btn-accent:hover {
      background-color: var(--green);
      color: var(--rose);
      transform: none;
    }

    .btn-about:hover {
      background-color: var(--yellow);
      color: var(--blue);
      transform: none;
    }

    .contact-form .btn-accent.btn-submit:hover,
    .contact-form .btn-accent.btn-submit:focus {
      background-color: var(--brown);
      box-shadow: none;
      color: var(--bg);
      transform: none;
    }
  }
}


/* ==============================================================================
   EINDE
============================================================================== */