/*
=========================================
Starlights Dansstudio
Versie : 0.6
Auteur : Kevin, Patricia & Estelle

STRUCTUUR:
01. Reset & basis
02. Typografie & variabelen
03. Layout
04. Achtergronden & oppervlakken
05. Header
06. Navigatie
07. Buttons
08. Algemene pagina hero
09. Pagina hero achtergronden
10. Home - Hero
11. Home - Introductie
12. Home - Uitgelichte pagina's
13. Home - Proefles
14. Over ons
15. Over Estelle
16. Dansaanbod
17. Rooster & tarieven
18. Inschrijven
19. Contact
20. Algemene voorwaarden
21. Footer
22. Impressie
23. Effecten - Custom cursor glow
90. Responsive - Tablet
91. Responsive - Mobiel
=========================================
*/


/* ============================================================
   01. ALGEMEEN - RESET & BASIS
   ============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

textarea {
    resize: vertical;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid currentColor;
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    z-index: 9999;
}

.skip-link:focus {
    top: 20px;
}

/* ================= EINDE: RESET & BASIS ================= */


/* ============================================================
   02. ALGEMEEN - TYPOGRAFIE & VARIABELEN
   ============================================================ */


/* ============================================================
   02.01 VARIABELEN
   ============================================================ */

:root {
    /* Lettertypes */
    --font-body: "Roboto", Arial, sans-serif;
    --font-navigation: "Mystery Quest", cursive;

    /* Basiskleuren */
    --color-black: #000000;
    --color-white: #ffffff;
    --color-text: #333333;
    --color-text-soft: #444444;
    --color-pink: #ff8eae;

    /* Starlights oppervlakken */
    --surface-overlay: rgba(255, 255, 255, 0.42);
    --surface-card: rgba(255, 255, 255, 0.78);
    --surface-card-strong: rgba(255, 255, 255, 0.94);
    --surface-dark: rgba(0, 0, 0, 0.72);

    /* Randen & schaduwen */
    --border-light: rgba(255, 255, 255, 0.55);
    --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.10);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.08);

    /* Afrondingen */
    --radius-small: 8px;
    --radius-medium: 14px;
    --radius-large: 16px;
}

/* ================= EINDE: VARIABELEN ================= */


/* ============================================================
   02.02 BASIS TEKST
   ============================================================ */

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

/* ================= EINDE: BASIS TEKST ================= */


/* ============================================================
   02.03 KOPTEKSTEN
   ============================================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0.75rem;

    font-family: var(--font-body);
    font-weight: 700;
    line-height: 1.2;
}

/* ================= EINDE: KOPTEKSTEN ================= */


/* ============================================================
   02.04 KLIKBARE ELEMENTEN
   ============================================================ */

/*
 * Ontwerpregel Starlights:
 * klikbare elementen gebruiken Mystery Quest.
 * Inline links in lopende tekst kunnen hiervan afwijken.
 */

.main-navigation,
.nav-link,
.dropdown-link,
.button,
.text-link {
    font-family: var(--font-navigation);
}

/* ================= EINDE: KLIKBARE ELEMENTEN ================= */


/* ============================================================
   03. ALGEMEEN - LAYOUT
   ============================================================ */


/* ============================================================
   03.01 ALGEMENE CONTAINER
   ============================================================ */

.container {
    width: 100%;
    max-width: 1200px;

    margin-left: auto;
    margin-right: auto;

    padding-left: 24px;
    padding-right: 24px;
}

/* ================= EINDE: ALGEMENE CONTAINER ================= */


/* ============================================================
   03.02 SECTIES
   ============================================================ */

section {
    width: 100%;
    padding-top: 64px;
    padding-bottom: 64px;
}

/* ================= EINDE: SECTIES ================= */


/* ============================================================
   03.03 MAIN CONTENT
   ============================================================ */

#main-content {
    width: 100%;
}

/* ================= EINDE: MAIN CONTENT ================= */


/* ============================================================
   03.04 ALGEMENE UITLIJNING
   ============================================================ */

.section-heading {
    width: 100%;
    margin-bottom: 32px;
}

.text-center {
    text-align: center;
}

.full-width {
    width: 100%;
}

/* ================= EINDE: ALGEMENE UITLIJNING ================= */


/* ============================================================
   04. ALGEMEEN - ACHTERGRONDEN & OPPERVLAKKEN
   ============================================================ */


/* ============================================================
   04.01 ALGEMENE PAGINA ACHTERGROND
   ============================================================ */

main {
    background-image:
        url("../images/achtergrond/Background01.webp");

    background-repeat: repeat-y;
    background-position: top center;
    background-size: 100% auto;
}

/* ================= EINDE: ALGEMENE PAGINA ACHTERGROND ================= */


/* ============================================================
   04.02 LICHT TRANSPARANT CONTENTVLAK
   ============================================================ */

.content-overlay {
    background-color: var(--surface-overlay);
}

.content-overlay p,
.content-overlay li {
    font-weight: 500;
    color: #0f0707;
}


/* ================= EINDE: CONTENTVLAK ================= */


/* ============================================================
   04.03 LICHTE CONTENTKAART
   ============================================================ */

.content-card {
    background-color: var(--surface-card);
}

/* ================= EINDE: LICHTE CONTENTKAART ================= */


/* ============================================================
   04.04 DONKERE CONTENTKAART
   ============================================================ */

.content-card-dark {
    background-color: var(--surface-dark);
    color: var(--color-white);
}

.content-card-dark h1,
.content-card-dark h2,
.content-card-dark h3,
.content-card-dark h4,
.content-card-dark h5,
.content-card-dark h6,
.content-card-dark p {
    color: inherit;
}

/* ================= EINDE: DONKERE CONTENTKAART ================= */


/* ============================================================
   05. ALGEMEEN - HEADER
   ============================================================ */


/* ============================================================
   05.01 HEADER - BASIS
   ============================================================ */

.site-header {
    width: 100%;
    background-color: var(--color-black);

    position: sticky;
    top: 0;
    z-index: 1000;

    transition:
        min-height 0.3s ease,
        padding 0.3s ease,
        box-shadow 0.3s ease;
}

/* ================= EINDE: HEADER BASIS ================= */


/* ============================================================
   05.02 HEADER - CONTAINER
   ============================================================ */

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 115px;

    padding-left: 25px;
    padding-right: 40px;

    transition:
        min-height 0.3s ease,
        padding 0.3s ease;
}

/* ================= EINDE: HEADER CONTAINER ================= */


/* ============================================================
   05.03 HEADER - LOGO
   ============================================================ */

.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
}

.site-logo {
    display: block;
    width: 105px;
    height: auto;

    transition:
        width 0.3s ease,
        transform 0.3s ease;
}

/* ================= EINDE: HEADER LOGO ================= */


/* ============================================================
   05.04 HEADER - VERKLEINDE STATUS BIJ SCROLLEN
   ============================================================ */

.site-header.header-scrolled {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.20);
}

.site-header.header-scrolled .header-container {
    min-height: 75px;
}

.site-header.header-scrolled .site-logo {
    width: 70px;
}

/* ================= EINDE: HEADER SCROLLSTATUS ================= */


/* ============================================================
   05.05 HEADER - MOBIEL MENU KNOP
   ============================================================ */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 8px;

    background: transparent;
    border: 0;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 5px;
}

.menu-toggle span {
    display: block;

    width: 26px;
    height: 3px;

    background-color: var(--color-white);
    border-radius: 2px;
}

/* ================= EINDE: MOBIEL MENU KNOP ================= */


/* ============================================================
   06. ALGEMEEN - NAVIGATIE
   ============================================================ */


/* ============================================================
   06.01 NAVIGATIE - BASIS
   ============================================================ */

.main-navigation {
    margin-left: auto;
}

/* ================= EINDE: NAVIGATIE BASIS ================= */


/* ============================================================
   06.02 NAVIGATIE - MENULIJST
   ============================================================ */

.nav-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 34px;
}

/* ================= EINDE: MENULIJST ================= */


/* ============================================================
   06.03 NAVIGATIE - MENU-ITEMS
   ============================================================ */

.nav-item {
    position: relative;
    flex-shrink: 0;
}

/* ================= EINDE: MENU-ITEMS ================= */


/* ============================================================
   06.04 NAVIGATIE - LINKS
   ============================================================ */

.nav-link {
    display: inline-block;
    position: relative;

    padding: 10px 0;

    color: var(--color-white);

    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;

    white-space: nowrap;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.nav-link:hover {
    color: var(--color-pink);
    transform: translateY(-2px);
}

.nav-link.active,
.nav-link[aria-current="page"] {
    color: var(--color-pink);
}

/* ================= EINDE: LINKS ================= */


/* ============================================================
   06.05 NAVIGATIE - ACTIEVE PAGINA MARKERING
   ============================================================ */

.nav-link.active::after,
.nav-link[aria-current="page"]::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: 2px;

    width: 70%;
    height: 2px;

    background-color: var(--color-pink);

    transform: translateX(-50%);
    border-radius: 2px;
}

/* ================= EINDE: ACTIEVE PAGINA MARKERING ================= */


/* ============================================================
   06.06 NAVIGATIE - HOVER MARKERING
   ============================================================ */

.nav-link:not(.active):not([aria-current="page"])::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: 2px;

    width: 0;
    height: 2px;

    background-color: var(--color-pink);

    transform: translateX(-50%);
    border-radius: 2px;

    transition: width 0.25s ease;
}

.nav-link:not(.active):not([aria-current="page"]):hover::after {
    width: 70%;
}

/* ================= EINDE: HOVER MARKERING ================= */


/* ============================================================
   06.07 NAVIGATIE - DROPDOWN
   ============================================================ */

.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;

    top: 100%;
    left: 50%;

    min-width: 220px;

    padding: 10px 0;

    background-color: var(--color-black);

    opacity: 0;
    visibility: hidden;

    transform:
        translateX(-50%)
        translateY(10px);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;

    z-index: 2000;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;

    transform:
        translateX(-50%)
        translateY(0);
}

/* ================= EINDE: DROPDOWN ================= */


/* ============================================================
   06.08 NAVIGATIE - DROPDOWN LINKS
   ============================================================ */

.dropdown-item {
    width: 100%;
}

.dropdown-link {
    display: block;
    width: 100%;

    padding: 10px 18px;

    color: var(--color-white);

    font-size: 20px;
    line-height: 1.2;

    white-space: nowrap;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        padding-left 0.2s ease;
}

.dropdown-link:hover {
    color: var(--color-pink);

    background-color: rgba(255, 142, 174, 0.10);

    padding-left: 24px;
}

/* ================= EINDE: DROPDOWN LINKS ================= */


/* ============================================================
   06.09 NAVIGATIE - DROPDOWN PIJLTJE
   ============================================================ */

.dropdown-arrow {
    display: inline-block;

    margin-left: 6px;

    font-size: 10px;
    line-height: 1;

    vertical-align: middle;

    transition: transform 0.25s ease;
}

.nav-item-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* ================= EINDE: DROPDOWN PIJLTJE ================= */


/* ============================================================
   07. ALGEMEEN - BUTTONS
   ============================================================ */


/* ============================================================
   07.01 BUTTONS - BASIS
   ============================================================ */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 12px 24px;

    border: 2px solid transparent;
    border-radius: var(--radius-small);

    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;

    text-align: center;
    white-space: nowrap;

    cursor: pointer;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

/* ================= EINDE: BUTTON BASIS ================= */


/* ============================================================
   07.02 BUTTONS - PRIMARY
   ============================================================ */

.button-primary {
    background-color: var(--color-pink);
    color: var(--color-black);

    border-color: var(--color-pink);
}

.button-primary:hover {
    background-color: var(--color-white);
    color: var(--color-black);

    border-color: var(--color-pink);

    transform: translateY(-2px);

    box-shadow:
        0 6px 18px rgba(255, 142, 174, 0.30);
}

/* ================= EINDE: PRIMARY ================= */


/* ============================================================
   07.03 BUTTONS - SECONDARY
   ============================================================ */

.button-secondary {
    background-color: transparent;
    color: var(--color-pink);

    border-color: var(--color-pink);
}

.button-secondary:hover {
    background-color: var(--color-pink);
    color: var(--color-black);

    transform: translateY(-2px);

    box-shadow:
        0 6px 18px rgba(255, 142, 174, 0.22);
}

/* ================= EINDE: SECONDARY ================= */


/* ============================================================
   07.04 BUTTONS - TEKSTLINK
   ============================================================ */

.text-link {
    display: inline-block;
    position: relative;

    color: var(--color-pink);

    font-size: 18px;
    font-weight: 400;

    padding-bottom: 2px;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.text-link::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 2px;

    background-color: var(--color-pink);

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.25s ease;
}

.text-link:hover {
    color: var(--color-black);
    transform: translateX(3px);
}

.text-link:hover::after {
    transform: scaleX(1);
}

/* ================= EINDE: TEKSTLINK ================= */


/* ============================================================
   07.05 BUTTONS - FOCUS
   ============================================================ */

.button:focus-visible,
.text-link:focus-visible {
    outline: 3px solid var(--color-pink);
    outline-offset: 4px;
}

/* ================= EINDE: BUTTON FOCUS ================= */


/* ============================================================
   08. ALGEMEEN - PAGINA HERO
   ============================================================ */


/* ============================================================
   08.01 PAGINA HERO - BASIS
   ============================================================ */
.page-hero {
    position: relative;

    min-height: 360px;

    display: flex;
    align-items: center;

    padding-top: 0;
    padding-bottom: 0;

    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    overflow: hidden;
}

/* ================= EINDE: PAGINA HERO BASIS ================= */


/* ============================================================
   08.02 PAGINA HERO - OVERLAY
   ============================================================ */

.page-hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.70) 0%,
            rgba(0, 0, 0, 0.42) 55%,
            rgba(0, 0, 0, 0.20) 100%
        );
}

/* ================= EINDE: PAGINA HERO OVERLAY ================= */


/* ============================================================
   08.03 PAGINA HERO - CONTAINER
   ============================================================ */

.page-hero-container {
    position: relative;

    z-index: 2;

    width: 100%;
}

/* ================= EINDE: PAGINA HERO CONTAINER ================= */


/* ============================================================
   08.04 PAGINA HERO - CONTENT
   ============================================================ */

.page-hero-content {
    max-width: 700px;
    color: var(--color-white);
}

.page-hero-content h1 {
    margin-bottom: 10px;

    font-family: var(--font-navigation);
    font-size: clamp(42px, 5vw, 62px);
    font-weight: 400;
    line-height: 1.1;

    color: var(--color-white);
}

.page-hero-subtitle {
    margin: 0;

    font-family: var(--font-navigation);
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 400;
    line-height: 1.4;

    color: var(--color-pink);
}

/* ================= EINDE: PAGINA HERO CONTENT ================= */


/* ============================================================
   09. ALGEMEEN - PAGINA HERO ACHTERGRONDEN
   ============================================================ */


/* ============================================================
   09.01 HERO ACHTERGROND - OVER ONS
   ============================================================ */

.page-hero-over-ons {
    background-image:
        url("../images/achtergrond/Achtergrond-05.webp");
}

/* ================= EINDE: OVER ONS ================= */


/* ============================================================
   09.02 HERO ACHTERGROND - OVER ESTELLE
   ============================================================ */

.page-hero-over-estelle {
    background-image:
        url("../images/achtergrond/Achtergrond-05.webp");
}

/* ================= EINDE: OVER ESTELLE ================= */


/* ============================================================
   09.03 HERO ACHTERGROND - DANSAANBOD
   ============================================================ */

.page-hero-dansaanbod {
    background-image:
        url("../images/achtergrond/Dansaanbod-01.webp");
}

/* ================= EINDE: DANSAANBOD ================= */


/* ============================================================
   09.04 HERO ACHTERGROND - ROOSTER & TARIEVEN
   ============================================================ */

.page-hero-rooster-tarieven {
    background-image:
        url("../images/achtergrond/Rooster-Tarieven.webp");
}

/* ================= EINDE: ROOSTER & TARIEVEN ================= */


/* ============================================================
   09.05 HERO ACHTERGROND - ROOSTER LEIDSCHEHAGE
   ============================================================ */

.page-hero-rooster-leidscheveen {
    background-image:
        url("../images/achtergrond/Rooster-Leidschehage.webp");
}

/* ================= EINDE: ROOSTER LEIDSCHEHAGE ================= */


/* ============================================================
   09.06 HERO ACHTERGROND - ROOSTER OVERBOSCH
   ============================================================ */

.page-hero-rooster-overbosch {
    background-image:
        url("../images/achtergrond/Rooster-Overbosch.webp");
}

/* ================= EINDE: ROOSTER OVERBOSCH ================= */


/* ============================================================
   09.07 HERO ACHTERGROND - TARIEVEN
   ============================================================ */

.page-hero-tarieven {
    background-image:
        url("../images/achtergrond/Tarieven.webp");
}

/* ============================================================
   09.07 HERO ACHTERGROND - Workshops
   ============================================================ */

.page-hero-tarieven {
    background-image:
        url("../images/achtergrond/workshops.webp");
}
/* ================= EINDE: TARIEVEN ================= */


/* ============================================================
   09.08 HERO ACHTERGROND - INSCHRIJVEN
   ============================================================ */

.page-hero-inschrijven {
    background-image:
        url("../images/achtergrond/inschrijven.webp");
}


/* HERO TEKST IETS HOGER */

.page-hero-inschrijven .page-hero-content {
    transform: translateY(-45px);
}

/* ================= EINDE: INSCHRIJVEN ================= */


/* ============================================================
   09.09 HERO ACHTERGROND - CONTACT
   ============================================================ */

.page-hero-contact {
    background-image:
        url("../images/achtergrond/Contact.webp");
}

/* ================= EINDE: CONTACT ================= */


/* ============================================================
   10. PAGINA HOME - HERO
   ============================================================ */


/* ============================================================
   10.01 HOME HERO - BASIS
   ============================================================ */

.hero {
    position: relative;

    min-height: 620px;

    display: flex;
    align-items: center;

    overflow: hidden;

    padding-top: 0;
    padding-bottom: 0;

    background-color: var(--color-black);
}

/* ================= EINDE: HOME HERO BASIS ================= */


/* ============================================================
   10.02 HOME HERO - DYNAMISCHE ACHTERGROND
   ============================================================ */

.hero-background {
    position: absolute;
    inset: 0;

    z-index: 0;
}

.hero-background-layer {
    position: absolute;
    inset: 0;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    opacity: 0;

    transition: opacity 1.2s ease;
}

.hero-background-layer.is-active {
    opacity: 1;
}

/* ================= EINDE: DYNAMISCHE ACHTERGROND ================= */


/* ============================================================
   10.03 HOME HERO - OVERLAY
   ============================================================ */

.hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.46) 45%,
            rgba(0, 0, 0, 0.18) 100%
        );
}

/* ================= EINDE: HOME HERO OVERLAY ================= */


/* ============================================================
   10.04 HOME HERO - CONTAINER
   ============================================================ */

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* ================= EINDE: HOME HERO CONTAINER ================= */


/* ============================================================
   10.05 HOME HERO - CONTENT
   ============================================================ */

.hero-content {
    max-width: 650px;
    color: var(--color-white);
}

.hero-content h1 {
    margin-bottom: 18px;

    font-size: clamp(44px, 5vw, 72px);
    font-weight: 700;
    line-height: 1.05;
}

.hero-text {
    max-width: 560px;

    margin-bottom: 28px;

    font-size: 20px;
    line-height: 1.6;

    color: rgba(255, 255, 255, 0.92);
}

/* ================= EINDE: HOME HERO CONTENT ================= */


/* ============================================================
   10.06 HOME HERO - BUTTON
   ============================================================ */

.hero .button-primary {
    font-size: 20px;
    padding: 14px 28px;
}

/* ================= EINDE: HOME HERO BUTTON ================= */


/* ============================================================
   11. PAGINA HOME - INTRODUCTIE
   ============================================================ */


/* ============================================================
   11.01 HOME INTRODUCTIE - BASIS
   ============================================================ */

.home-intro {
    padding-top: 80px;
    padding-bottom: 80px;

    background-color: var(--surface-overlay);
}

/* ================= EINDE: HOME INTRODUCTIE BASIS ================= */


/* ============================================================
   11.02 HOME INTRODUCTIE - CONTAINER
   ============================================================ */

.home-intro-container {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 60px;
}

/* ================= EINDE: HOME INTRODUCTIE CONTAINER ================= */


/* ============================================================
   11.03 HOME INTRODUCTIE - MEDIA
   ============================================================ */

.home-intro-media {
    width: 100%;
    min-height: 300px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.home-intro-image {
    display: block;

    width: 100%;
    max-width: 500px;
    height: auto;

    object-fit: cover;

    border-radius: 12px;
}

/* ================= EINDE: HOME INTRODUCTIE MEDIA ================= */


/* ============================================================
   11.04 HOME INTRODUCTIE - CONTENT
   ============================================================ */

.home-intro-content {
    width: 100%;
    grid-column: 2;

    text-align: left;
}

.home-intro-content h2 {
    margin-bottom: 20px;

    font-size: clamp(32px, 4vw, 46px);
    font-weight: 700;

    color: var(--color-black);
}

.home-intro-content p {
    margin-bottom: 24px;

    font-size: 18px;
    line-height: 1.7;

    color: var(--color-text);
}
.home-intro-content .button {
    margin-top: 4px;
}

/* ================= EINDE: HOME INTRODUCTIE CONTENT ================= */


/* ============================================================
   12. PAGINA HOME - UITGELICHTE PAGINA'S
   ============================================================ */


/* ============================================================
   12.01 UITGELICHTE PAGINA'S - BASIS
   ============================================================ */

.home-highlights {
    padding-top: 80px;
    padding-bottom: 80px;

    background-color: var(--surface-overlay);
}

/* ================= EINDE: UITGELICHTE PAGINA'S BASIS ================= */


/* ============================================================
   12.02 UITGELICHTE PAGINA'S - CONTAINER
   ============================================================ */

.home-highlights-container {
    width: 100%;
}

/* ================= EINDE: UITGELICHTE PAGINA'S CONTAINER ================= */


/* ============================================================
   12.03 UITGELICHTE PAGINA'S - SECTIETITEL
   ============================================================ */

.home-highlights .section-heading {
    margin-bottom: 40px;

    text-align: center;
}

.home-highlights .section-heading h2 {
    margin-bottom: 0;

    font-size: clamp(32px, 4vw, 46px);
    font-weight: 700;

    color: var(--color-black);
}

/* ================= EINDE: UITGELICHTE PAGINA'S SECTIETITEL ================= */


/* ============================================================
   12.04 UITGELICHTE PAGINA'S - GRID
   ============================================================ */

.home-highlights-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;
}

/* ================= EINDE: UITGELICHTE PAGINA'S GRID ================= */


/* ============================================================
   12.05 UITGELICHTE PAGINA'S - KAARTEN
   ============================================================ */

.home-highlight-card {
    min-height: 260px;

    display: flex;
    flex-direction: column;

    padding: 32px;

    background-color: var(--surface-card);

    border: 1px solid var(--border-light);
    border-radius: var(--radius-medium);

    box-shadow: var(--shadow-soft);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.home-highlight-card:hover {
    transform: translateY(-5px);

    border-color: var(--color-pink);

    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.12);
}

.home-highlight-card h3 {
    margin-bottom: 16px;

    font-size: 26px;
    font-weight: 700;

    color: var(--color-black);
}

.home-highlight-card p {
    margin-bottom: 24px;

    font-size: 16px;
    line-height: 1.7;

    color: var(--color-text-soft);
}

.home-highlight-card .button {
    margin-top: auto;
    align-self: flex-start;
}

/* ================= EINDE: UITGELICHTE PAGINA'S KAARTEN ================= */


/* ============================================================
   13. PAGINA HOME - PROEFLES
   ============================================================ */

.trial-cta {
    padding: 70px 0 80px;

    background-color: var(--surface-overlay);
}

.trial-cta-content {
    max-width: 900px;

    margin: 0 auto;
    padding: 45px 55px;

    background-color: #ff8aa3;

    border-radius: var(--radius-large);

    text-align: center;

    box-shadow: var(--shadow-card);
}

.trial-cta-content h2 {
    margin: 0 0 16px;

    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.2;

    color: var(--color-black);
}

.trial-cta-content p {
    max-width: 680px;

    margin: 0 auto 26px;

    font-size: 18px;
    font-weight: 500;
    line-height: 1.65;

    color: #222222;
}

.trial-cta-content .button {
    margin-top: 0;
}


/* ================= EINDE: PAGINA HOME - PROEFLES ================= */

/* ============================================================
   14. PAGINA OVER ONS
   ============================================================ */


/* ============================================================
   14.01 OVER ONS - INTRODUCTIE
   ============================================================ */

.about-intro {
    padding: 90px 0;

    background-color: var(--surface-overlay);
}

.about-intro-container {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 70px;
}

/* ================= EINDE: OVER ONS INTRODUCTIE ================= */


/* ============================================================
   14.02 OVER ONS - TEKST
   ============================================================ */

.about-intro-content {
    width: 100%;

    padding: 34px;

    background-color: var(--surface-dark);

    border-radius: var(--radius-large);

    color: var(--color-white);

    box-shadow: var(--shadow-card);
}

.about-intro-content h2 {
    margin-bottom: 22px;

    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.2;

    color: var(--color-white);
}

.about-intro-content p {
    margin-bottom: 18px;

    font-size: 18px;
    line-height: 1.75;

    color: rgba(255, 255, 255, 0.92);
}

.about-intro-content .about-intro-lead {
    font-size: 21px;
    font-weight: 500;

    color: var(--color-white);
}

.about-intro-content .button {
    margin-top: 12px;
}

/* ================= EINDE: OVER ONS TEKST ================= */

/* ============================================================
   14.03 OVER ONS - AFBEELDING
   ============================================================ */

.about-intro-media {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;

    border: none;
    border-radius: 0;

    box-shadow: none;

    overflow: visible;
}

.about-intro-image {
    display: block;

    width: 100%;
    max-width: 600px;
    height: auto;
}

/* ================= EINDE: OVER ONS AFBEELDING ================= */

/* ============================================================
   15. PAGINA OVER ESTELLE
   ============================================================ */


/* ============================================================
   15.01 OVER ESTELLE - INTRODUCTIE
   ============================================================ */

.estelle-intro {
    padding: 90px 0;

    background-color: var(--surface-overlay);
}

/* ================= EINDE: OVER ESTELLE INTRODUCTIE ================= */


/* ============================================================
   15.02 OVER ESTELLE - CONTAINER
   ============================================================ */

.estelle-intro-container {
    display: grid;

    grid-template-columns:
        minmax(0, 0.90fr)
        minmax(0, 1.10fr);

    align-items: center;

    gap: 70px;
}

/* ================= EINDE: OVER ESTELLE CONTAINER ================= */

/* ============================================================
   15.03 OVER ESTELLE - AFBEELDING
   ============================================================ */

.estelle-intro-media {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;

    border: none;
    border-radius: 0;

    box-shadow: none;

    overflow: visible;
}


.estelle-intro-image {
    display: block;

    width: 100%;
    max-width: 600px;
    height: auto;

    object-fit: contain;
}

/* ================= EINDE: OVER ESTELLE AFBEELDING ================= */


/* ============================================================
   15.04 OVER ESTELLE - TEKST
   ============================================================ */

.estelle-intro-content {
    width: 100%;

    padding: 38px;

    border-radius: var(--radius-large);

    box-shadow: var(--shadow-card);
}


.estelle-intro-content h2 {
    margin-bottom: 22px;

    font-size: clamp(30px, 3vw, 42px);

    color: var(--color-white);
}


.estelle-intro-content p {
    margin-bottom: 18px;

    font-size: 18px;
    line-height: 1.75;

    color: rgba(255, 255, 255, 0.92);
}


.estelle-intro-lead {
    font-size: 21px !important;
    font-weight: 500;

    color: var(--color-white) !important;
}


.estelle-intro-content .button {
    margin-top: 12px;
}

/* ================= EINDE: OVER ESTELLE TEKST ================= */


/* ================= EINDE: PAGINA OVER ESTELLE ================= */


/* ============================================================
   16. PAGINA DANSAANBOD
   ============================================================ */


/* ============================================================
   16.01 DANSAANBOD - INTRODUCTIE
   ============================================================ */

.dance-offer-intro {
    padding: 70px 0 45px;

    background-color: var(--surface-overlay);
}

.dance-offer-intro-content {
    max-width: 780px;

    margin: 0 auto;

    text-align: center;
}

.dance-offer-intro-content h2 {
    margin-bottom: 18px;

    font-size: clamp(32px, 4vw, 46px);

    color: var(--color-black);
}

.dance-offer-intro-content p {
    font-size: 18px;
    line-height: 1.7;

    color: var(--color-text);
}

/* ================= EINDE: DANSAANBOD INTRODUCTIE ================= */


/* ============================================================
   16.02 DANSAANBOD - SECTIE
   ============================================================ */

.dance-offer-section {
    padding: 45px 0 90px;

    background-color: var(--surface-overlay);
}

/* ================= EINDE: DANSAANBOD SECTIE ================= */


/* ============================================================
   16.03 DANSAANBOD - GRID
   ============================================================ */

.dance-offer-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    align-items: stretch;

    gap: 28px;
}

/* ================= EINDE: DANSAANBOD GRID ================= */


/* ============================================================
   16.04 DANSAANBOD - KAART
   ============================================================ */

.dance-offer-card {
    display: flex;
    flex-direction: column;

    background-color: var(--surface-card);

    border: 1px solid var(--border-light);
    border-radius: var(--radius-large);

    overflow: hidden;

    box-shadow: var(--shadow-soft);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.dance-offer-card:hover {
    transform: translateY(-6px);

    border-color: var(--color-pink);

    box-shadow:
        0 16px 36px rgba(0, 0, 0, 0.14);
}

/* ================= EINDE: DANSAANBOD KAART ================= */


/* ============================================================
   16.05 DANSAANBOD - AFBEELDING
   ============================================================ */

.dance-offer-image {
    width: 100%;
    height: 240px;

    background-color: #eaeaea;

    overflow: hidden;
}

.dance-offer-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

/* ================= EINDE: DANSAANBOD AFBEELDING ================= */


/* ============================================================
   16.06 DANSAANBOD - CONTENT
   ============================================================ */

.dance-offer-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;

    padding: 28px;
}

.dance-offer-content p {
    margin-bottom: 16px;

    font-size: 16px;
    line-height: 1.65;

    color: var(--color-text);
}

/* ================= EINDE: DANSAANBOD CONTENT ================= */


/* ============================================================
   16.07 DANSAANBOD - TITEL & LEEFTIJD
   ============================================================ */

.dance-offer-title {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;

    margin-bottom: 20px;
}

.dance-offer-title h3 {
    margin: 0;

    font-size: 27px;

    color: var(--color-black);
}

.dance-offer-age {
    flex-shrink: 0;

    padding: 6px 12px;

    background-color: var(--color-pink);
    color: var(--color-black);

    border-radius: 999px;

    font-family: var(--font-navigation);
    font-size: 18px;
}

/* ================= EINDE: DANSAANBOD TITEL & LEEFTIJD ================= */


/* ============================================================
   16.08 DANSAANBOD - BUTTON
   ============================================================ */

.dance-offer-content .button {
    margin-top: auto;
    align-self: flex-start;
}

/* ================= EINDE: DANSAANBOD BUTTON ================= */


/* ============================================================
   17. PAGINA ROOSTER & TARIEVEN
   ============================================================ */


/* ============================================================
   17.01 ROOSTER & TARIEVEN - INTRODUCTIE
   ============================================================ */

.schedule-overview-intro {
    padding: 70px 0 38px;

    background-color: var(--surface-overlay);
}

.schedule-overview-intro-content {
    max-width: 820px;

    margin: 0 auto;

    text-align: center;
}

.schedule-overview-intro-content h2 {
    margin-bottom: 18px;

    font-size: clamp(32px, 4vw, 46px);

    color: var(--color-black);
}

.schedule-overview-intro-content p {
    font-size: 18px;
    line-height: 1.7;

    color: var(--color-text);
}
.schedule-overview-intro-content h2 .title-second-line {
    display: block;
}

/* ================= EINDE: INTRODUCTIE ================= */


/* ============================================================
   17.02 ROOSTER & TARIEVEN - OVERZICHT
   ============================================================ */

.schedule-overview-section {
    padding: 38px 0 80px;

    background-color: var(--surface-overlay);
}

.schedule-overview-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    align-items: stretch;

    gap: 28px;
}

/* ================= EINDE: OVERZICHT ================= */


/* ============================================================
   17.03 ROOSTER & TARIEVEN - KAARTEN
   ============================================================ */

.schedule-overview-card {
    display: flex;
    flex-direction: column;

    min-height: 430px;

    padding: 34px;

    background-color: var(--surface-card);

    border: 1px solid var(--border-light);
    border-radius: var(--radius-large);

    box-shadow: var(--shadow-card);
}

.schedule-overview-card h3 {
    margin-bottom: 22px;

    font-size: 30px;

    text-align: center;

    color: var(--color-black);
}

.schedule-overview-card-intro {
    margin-bottom: 24px;

    text-align: center;

    font-size: 17px;
    line-height: 1.65;

    color: var(--color-text);
}

/* ================= EINDE: KAARTEN ================= */


/* ============================================================
   17.04 ROOSTER & TARIEVEN - LOCATIE LIJST
   ============================================================ */

.schedule-overview-list {
    display: flex;
    flex-direction: column;

    gap: 14px;

    margin-bottom: 32px;

    text-align: center;
}

.schedule-overview-list li {
    position: relative;

    padding: 12px 18px;

    background-color: rgba(255, 138, 163, 0.35);

    border-radius: 10px;

    font-size: 19px;
    font-weight: 500;

    color: var(--color-black);
}

.schedule-overview-card .button {
    margin-top: auto;

    align-self: center;
}

/* ================= EINDE: LOCATIE LIJST ================= */


/* ============================================================
   17.05 ROOSTER & TARIEVEN - TARIEVENKAART
   ============================================================ */

.schedule-price-card {
    align-items: center;

    background-color: rgba(255, 138, 163, 0.40);

    text-align: center;
}

.schedule-price-card h3 {
    color: var(--color-black);
}
.schedule-package-name {
    position: relative;
    display: block;

    margin-bottom: 8px;

    font-family: var(--font-navigation);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;

    color: var(--color-black);
}
.schedule-price-item {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;

    gap: 4px;
}

.schedule-price-title {
    font-size: 20px;
    font-weight: 500;

    color: var(--color-black);
}

.schedule-price {
    display: block;

    margin: 4px 0;

    font-size: 42px;
    line-height: 1.1;

    color: var(--color-black);
}

.schedule-price-period {
    font-size: 17px;

    color: rgba(0, 0, 0, 0.76);
}

.schedule-price-divider {
    width: 65%;
    height: 1px;

    margin: 26px 0;

    background-color: rgba(0, 0, 0, 0.20);
}

.schedule-price-button {
    margin-top: auto;

    color: var(--color-black);

    border-color: var(--color-black);
}

.schedule-price-button:hover {
    background-color: var(--color-black);
    color: var(--color-white);

    border-color: var(--color-black);
}

/* ================= EINDE: TARIEVENKAART ================= */


/* ============================================================
   17.06 ROOSTER & TARIEVEN - PROEFLES CTA
   ============================================================ */

.schedule-trial-cta {
    padding: 20px 0 90px;

    background-color: var(--surface-overlay);
}

.schedule-trial-content {
    max-width: 780px;

    margin: 0 auto;

    padding: 36px;

    text-align: center;

    border-radius: var(--radius-large);

    box-shadow: var(--shadow-card);
}

.schedule-trial-content h2 {
    margin-bottom: 16px;

    font-size: clamp(28px, 3vw, 38px);

    color: var(--color-black);
}

.schedule-trial-content p {
    margin-bottom: 24px;

    font-size: 18px;
    line-height: 1.7;

    color: var(--color-text);
}

/* ================= EINDE: PROEFLES CTA ================= */
/* ============================================================
   17.07 ROOSTER LOCATIE - BASIS
   ============================================================ */

.schedule-location-section {
    padding: 70px 0 80px;

    background-color: var(--surface-overlay);
}

.schedule-location-container {
    max-width: 1000px;
}

/* ================= EINDE: ROOSTER LOCATIE BASIS ================= */


/* ============================================================
   17.08 ROOSTER LOCATIE - INTRODUCTIE
   ============================================================ */

.schedule-location-intro {
    max-width: 760px;

    margin: 0 auto 42px;

    text-align: center;
}

.schedule-location-intro h2 {
    margin-bottom: 16px;

    font-size: clamp(32px, 4vw, 46px);

    color: var(--color-black);
}

.schedule-location-intro p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;

    color: #222222;
}

/* ================= EINDE: ROOSTER LOCATIE INTRODUCTIE ================= */


/* ============================================================
   17.09 ROOSTER LOCATIE - LESSEN
   ============================================================ */

.schedule-lessons {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 28px;
}

.schedule-lesson-card {
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 34px 28px;

    background-color: var(--surface-card);

    border: 1px solid var(--border-light);
    border-radius: var(--radius-large);

    text-align: center;

    box-shadow: var(--shadow-card);
}

.schedule-lesson-day {
    margin-bottom: 8px;

    font-size: 19px;
    font-weight: 500;

    color: var(--color-text);
}

.schedule-lesson-time {
    margin-bottom: 18px;

    font-size: 28px;
    font-weight: 700;

    color: var(--color-black);
}

.schedule-lesson-name {
    padding: 8px 18px;

    background-color: #ff8aa3;

    border-radius: 999px;

    font-size: 21px;
    font-weight: 700;

    color: var(--color-black);
}

/* ================= EINDE: ROOSTER LOCATIE LESSEN ================= */


/* ============================================================
   17.10 ROOSTER LOCATIE - ACTIE
   ============================================================ */

.schedule-location-action {
    display: flex;
    justify-content: center;

    margin-top: 38px;
}

/* ================= EINDE: ROOSTER LOCATIE ACTIE ================= */


/* ============================================================
   17.11 ROOSTER LOCATIE - GOOGLE MAPS
   ============================================================ */

.schedule-map-section {
    padding: 30px 0 90px;

    background-color: var(--surface-overlay);
}

.schedule-map-container {
    max-width: 1000px;
}

.schedule-map-heading {
    margin-bottom: 30px;

    text-align: center;
}

.schedule-map-heading h2 {
    margin-bottom: 14px;

    font-size: clamp(30px, 4vw, 42px);

    color: var(--color-black);
}

.schedule-map-heading p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;

    color: #222222;
}

/* ================= EINDE: GOOGLE MAPS ================= */


/* ============================================================
   17.12 ROOSTER LOCATIE - KAARTWEERGAVE
   ============================================================ */

.schedule-map {
    width: 100%;

    overflow: hidden;

    border: 4px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--radius-large);

    box-shadow: var(--shadow-card);
}

.schedule-map iframe {
    display: block;

    width: 100%;
    min-height: 450px;
}

/* ================= EINDE: KAARTWEERGAVE ================= */

/* ============================================================
   17.13 ROOSTER LOCATIE - BEREIKBAARHEID
   ============================================================ */

.schedule-accessibility-section {
    padding: 55px 0;

    background-color: var(--surface-overlay);
}

.schedule-accessibility-container {
    max-width: 1000px;
}

.schedule-accessibility-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;
    align-items: center;

    gap: 55px;
}


/* FOTO */

.schedule-accessibility-image {
    width: 100%;

    overflow: hidden;

    border-radius: var(--radius-large);
}

.schedule-accessibility-image img {
    display: block;

    width: 100%;
    height: 100%;
    min-height: 360px;

    object-fit: cover;
}

.schedule-accessibility-image-leidschenveen img {
    width: 96%;
    height: auto;

    object-fit: contain;

    display: block;
    margin: 0 auto;
}

.schedule-accessibility-image-overbosch img {
    width: 98%;
    height: auto;

    object-fit: contain;

    display: block;
    margin: 0 auto;
}

/* TEKST */

.schedule-accessibility-content {
    text-align: left;
}

.schedule-accessibility-content h2 {
    margin-bottom: 20px;

    font-size: clamp(30px, 4vw, 42px);

    color: var(--color-black);
}

.schedule-accessibility-content p {
    margin-bottom: 14px;

    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;

    color: #222222;
}

.schedule-accessibility-content p:last-child {
    margin-bottom: 0;
}
.schedule-accessibility-reverse .schedule-accessibility-image {
    order: 2;
}

.schedule-accessibility-reverse .schedule-accessibility-content {
    order: 1;
}

/* ================= EINDE: ROOSTER LOCATIE BEREIKBAARHEID ================= */
/* ============================================================
   17.14 TARIEVEN - INTRODUCTIE
   ============================================================ */

.pricing-intro {
    padding: 70px 0 35px;

    background-color: var(--surface-overlay);
}

.pricing-intro-container {
    max-width: 900px;
}

.pricing-intro-content {
    max-width: 800px;

    margin: 0 auto;

    text-align: center;
}

.pricing-intro-content h2 {
    margin-bottom: 20px;

    font-size: clamp(32px, 4vw, 46px);

    color: var(--color-black);
}

.pricing-intro-content p {
    margin-bottom: 16px;

    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;

    color: #222222;
}

.pricing-intro-content p:last-child {
    margin-bottom: 0;
}

/* ================= EINDE: TARIEVEN INTRODUCTIE ================= */


/* ============================================================
   17.15 TARIEVEN - PRIJSKAARTEN
   ============================================================ */

.pricing-section {
    padding: 35px 0 90px;

    background-color: var(--surface-overlay);
}

.pricing-container {
    max-width: 900px;
}

.pricing-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 32px;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-height: 300px;

    padding: 38px;

    background-color: #ff8aa3;

    border-radius: var(--radius-large);

    text-align: center;

    box-shadow: var(--shadow-card);
}

.pricing-package-name {
    position: relative;

    margin: 0 0 18px;

    font-family: var(--font-navigation);
    font-size: 38px;
    font-weight: 400;
    line-height: 1.2;

    color: var(--color-black);
}

.pricing-package-star {
    position: absolute;

    left: calc(100% + 10px);
    top: 50%;

    transform: translateY(-50%);
}

.pricing-card-title {
    margin: 0 0 20px;

    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;

    color: var(--color-black);
}

.pricing-card-price {
    display: block;

    margin: 0 0 12px;

    font-size: clamp(34px, 4vw, 44px);
    line-height: 1;

    color: var(--color-black);
}

.pricing-card-period {
    margin: 0;

    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;

    color: rgba(0, 0, 0, 0.76);
}

/* ================= EINDE: TARIEVEN PRIJSKAARTEN ================= */


/* ============================================================
   17.16 TARIEVEN - ACTIE
   ============================================================ */

.pricing-action {
    display: flex;
    justify-content: center;

    margin-top: 38px;
}

/* ================= EINDE: TARIEVEN ACTIE ================= */

/* ================= EINDE: PAGINA ROOSTER & TARIEVEN ================= */


/* ============================================================
   18. PAGINA INSCHRIJVEN
   ============================================================ */


/* ============================================================
   18.01 INSCHRIJVEN - BASIS
   ============================================================ */

.registration-section {
    padding: 80px 0 100px;

    background-color: var(--surface-overlay);
}

.registration-container {
    max-width: 1000px;
}

/* ================= EINDE: INSCHRIJVEN BASIS ================= */


/* ============================================================
   18.02 INSCHRIJVEN - INLEIDING
   ============================================================ */

.registration-intro {
    max-width: 760px;

    margin: 0 auto 45px;

    text-align: center;
}

.registration-intro h2 {
    margin-bottom: 18px;

    font-size: clamp(32px, 4vw, 46px);

    color: var(--color-black);
}

.registration-intro p {
    font-size: 18px;
    line-height: 1.7;

    color: var(--color-text);
}

/* ================= EINDE: INSCHRIJVEN INLEIDING ================= */


/* ============================================================
   18.03 INSCHRIJVEN - FORMULIER
   ============================================================ */

.registration-form {
    width: 100%;
}

.registration-form[hidden] {
    display: none;
}

/* ================= EINDE: INSCHRIJVEN FORMULIER ================= */


/* ============================================================
   18.04 INSCHRIJVEN - FORMULIER BLOKKEN
   ============================================================ */

.registration-block {
    position: relative;

    margin: 0 0 34px;

    padding: 32px;

    background-color: var(--surface-card);

    border: 1px solid var(--border-light);
    border-radius: var(--radius-large);

    box-shadow: var(--shadow-card);
}


.registration-block legend {
    display: block;
    float: left;

    width: 100%;

    margin: 0 0 26px;
    padding: 0;

    font-size: 24px;
    font-weight: 700;

    color: var(--color-black);
}


/*
 * Zorgt dat de inhoud na de zwevende legend
 * netjes onder de titel begint.
 */
.registration-block legend + * {
    clear: both;
}

/* ================= EINDE: INSCHRIJVEN FORMULIER BLOKKEN ================= */


/* ============================================================
   18.05 INSCHRIJVEN - GRID
   ============================================================ */

.registration-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px 24px;
}

.registration-grid-full {
    grid-column: 1 / -1;
}

/* ================= EINDE: INSCHRIJVEN GRID ================= */


/* ============================================================
   18.06 INSCHRIJVEN - FORMULIER VELDEN
   ============================================================ */

.registration-form .form-group {
    margin-bottom: 22px;
}

.registration-form .form-group label,
.registration-form .form-label,
.signature-group > label {
    display: block;

    margin-bottom: 8px;

    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;

    color: var(--color-black);
}

.registration-form input[type="text"],
.registration-form input[type="email"],
.registration-form input[type="tel"],
.registration-form input[type="date"],
.registration-form select,
.registration-form textarea {
    width: 100%;

    padding: 13px 15px;

    background-color: var(--surface-card-strong);

    border: 1px solid #d8d8d8;
    border-radius: var(--radius-small);

    color: #222222;

    font-family: var(--font-body);
    font-size: 16px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.registration-form textarea {
    min-height: 140px;
    resize: vertical;
}

.registration-form input:focus,
.registration-form select:focus,
.registration-form textarea:focus {
    outline: none;

    border-color: var(--color-pink);

    box-shadow:
        0 0 0 3px rgba(255, 142, 174, 0.18);
}

/* ================= EINDE: INSCHRIJVEN FORMULIER VELDEN ================= */


/* ============================================================
   18.07 INSCHRIJVEN - OPTIES
   ============================================================ */

.form-options {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    width: 100%;

    gap: 12px;
}

.form-options label {
    display: grid;

    grid-template-columns: 20px 1fr;
    align-items: start;

    width: 100%;

    gap: 10px;

    margin: 0;

    font-weight: 400;
    line-height: 1.6;
}

.form-options input[type="radio"],
.form-options input[type="checkbox"] {
    width: 16px;
    height: 16px;

    margin: 5px 0 0;

    accent-color: var(--color-pink);
}

/* ================= EINDE: INSCHRIJVEN OPTIES ================= */


/* ============================================================
   18.08 INSCHRIJVEN - INFORMATIETEKST
   ============================================================ */

.registration-information {
    margin-bottom: 26px;

    padding: 18px 20px;

    background-color: var(--surface-card-strong);

    border-left: 4px solid var(--color-pink);
    border-radius: var(--radius-small);
}

.registration-information p {
    margin-bottom: 10px;

    font-size: 16px;
    line-height: 1.65;

    color: var(--color-text);
}

.registration-information p:last-child {
    margin-bottom: 0;
}

/* ================= EINDE: INSCHRIJVEN INFORMATIETEKST ================= */


/* ============================================================
   18.09 INSCHRIJVEN - HANDTEKENING
   ============================================================ */

.signature-group {
    margin-top: 26px;
}

.signature-pad {
    display: block;

    width: 100%;
    height: 180px;

    background-color: var(--surface-card-strong);

    border: 2px dashed #cccccc;
    border-radius: 10px;

    cursor: crosshair;

    touch-action: none;
}

.signature-clear {
    margin-top: 12px;
}

/* ================= EINDE: INSCHRIJVEN HANDTEKENING ================= */


/* ============================================================
   18.10 INSCHRIJVEN - ALGEMENE VOORWAARDEN
   ============================================================ */

.agreement-item {
    display: flex;
    flex-direction: column;

    gap: 18px;
}

.agreement-checkbox {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    padding: 18px;

    background-color: var(--surface-card-strong);

    border-radius: 10px;
}

.agreement-checkbox input {
    margin-top: 4px;
    accent-color: var(--color-pink);
}

.agreement-checkbox span {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;

    color: var(--color-text);
}

/* ================= EINDE: INSCHRIJVEN ALGEMENE VOORWAARDEN ================= */


/* ============================================================
   18.11 INSCHRIJVEN - ACTIES
   ============================================================ */

.registration-actions {
    display: flex;
    justify-content: center;

    margin-top: 38px;
}

.registration-actions .button {
    min-width: 260px;

    font-size: 20px;
}

/* ================= EINDE: INSCHRIJVEN ACTIES ================= */


/* ============================================================
   18.12 INSCHRIJVEN - MELDING
   ============================================================ */

.registration-message {
    margin-bottom: 32px;

    padding: 24px 28px;

    border-radius: 12px;

    border: 1px solid transparent;
}

.registration-message.is-success {
    background-color: #f4fff6;
    border-color: #9bd8a7;
}

.registration-message.is-error {
    background-color: #fff4f4;
    border-color: #e0a0a0;
}

.registration-message[hidden] {
    display: none;
}

/* ================= EINDE: INSCHRIJVEN MELDING ================= */


/* ============================================================
   19. PAGINA CONTACT
   ============================================================ */


/* ============================================================
   19.01 CONTACT - HERO TEKST
   ============================================================ */

.page-hero-contact .page-hero-content {
    max-width: 100%;

    margin: 0 auto;

    text-align: center;
}

/* ================= EINDE: CONTACT HERO TEKST ================= */


/* ============================================================
   19.02 CONTACT - BASIS
   ============================================================ */

.contact-form-section {
    padding-top: 80px;
    padding-bottom: 90px;

    background-color: var(--surface-overlay);
}

.contact-form-container {
    max-width: 900px;
}

/* ================= EINDE: CONTACT BASIS ================= */


/* ============================================================
   19.03 CONTACT - INLEIDING
   ============================================================ */

.contact-intro {
    max-width: 760px;

    margin: 0 auto 42px;

    text-align: center;
}

.contact-intro h2 {
    margin-bottom: 18px;

    font-size: clamp(30px, 4vw, 44px);

    color: var(--color-black);
}

.contact-intro p {
    font-size: 18px;
    line-height: 1.7;

    color: var(--color-text);
}

/* ================= EINDE: CONTACT INLEIDING ================= */


/* ============================================================
   19.04 CONTACT - FORMULIER
   ============================================================ */

.contact-form {
    width: 100%;

    padding: 40px;

    background-color: var(--surface-card);

    border: 1px solid var(--border-light);
    border-radius: var(--radius-medium);

    box-shadow: var(--shadow-card);
}

.contact-form[hidden] {
    display: none;
}

/* ================= EINDE: CONTACT FORMULIER ================= */


/* ============================================================
   19.05 CONTACT - FORMULIER VELDEN
   ============================================================ */

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;

    color: var(--color-black);
}

.required {
    color: var(--color-pink);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 13px 15px;

    background-color: var(--surface-card-strong);

    border: 1px solid #d8d8d8;
    border-radius: var(--radius-small);

    color: #222222;

    font-family: var(--font-body);
    font-size: 16px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-group textarea {
    min-height: 160px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;

    border-color: var(--color-pink);

    box-shadow:
        0 0 0 3px rgba(255, 142, 174, 0.18);
}

/* ================= EINDE: CONTACT FORMULIER VELDEN ================= */


/* ============================================================
   19.06 CONTACT - CONDITIONEEL VELD
   ============================================================ */

.form-group-conditional[hidden] {
    display: none;
}

/* ================= EINDE: CONTACT CONDITIONEEL VELD ================= */


/* ============================================================
   19.07 CONTACT - VERZENDKNOP
   ============================================================ */

.form-actions {
    margin-top: 32px;
}

/* ================= EINDE: CONTACT VERZENDKNOP ================= */


/* ============================================================
   19.08 CONTACT - SPAMBEVEILIGING
   ============================================================ */

.form-honeypot {
    position: absolute;

    width: 1px;
    height: 1px;

    overflow: hidden;

    clip: rect(0 0 0 0);
    clip-path: inset(50%);

    white-space: nowrap;
}

/* ================= EINDE: CONTACT SPAMBEVEILIGING ================= */


/* ============================================================
   19.09 CONTACT - FORMULIER MELDING
   ============================================================ */

.contact-form-message {
    margin-bottom: 32px;

    padding: 24px 28px;

    border-radius: 12px;

    border: 1px solid transparent;
}

.contact-form-message h3 {
    margin-bottom: 8px;

    font-size: 24px;

    color: var(--color-black);
}

.contact-form-message p {
    margin: 0;

    font-size: 17px;
    line-height: 1.6;

    color: var(--color-text);
}

.contact-form-message.is-success {
    background-color: #f4fff6;
    border-color: #9bd8a7;
}

.contact-form-message.is-error {
    background-color: #fff4f4;
    border-color: #e0a0a0;
}

.contact-form-message[hidden] {
    display: none;
}

/* ================= EINDE: CONTACT FORMULIER MELDING ================= */


/* ============================================================
   20. PAGINA ALGEMENE VOORWAARDEN
   ============================================================ */


/* ============================================================
   20.01 ALGEMENE VOORWAARDEN - BASIS
   ============================================================ */

.terms-section {
    padding: 70px 0 90px;

    background-color: var(--surface-overlay);
}

.terms-container {
    max-width: 1050px;
}

/* ================= EINDE: BASIS ================= */


/* ============================================================
   20.02 ALGEMENE VOORWAARDEN - DOCUMENT
   ============================================================ */

.terms-document {
    width: 100%;

    padding: 55px 60px;

    background-color: rgba(255, 255, 255, 0.94);

    border: 1px solid rgba(255, 255, 255, 0.60);
    border-radius: var(--radius-large);

    box-shadow: var(--shadow-card);
}

/* ================= EINDE: DOCUMENT ================= */


/* ============================================================
   20.03 ALGEMENE VOORWAARDEN - DOCUMENTKOP
   ============================================================ */

.terms-document-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 50px;
    padding-bottom: 30px;

    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.terms-document-title {
    flex: 1;
}

.terms-document-title h1 {
    margin: 0;

    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;

    color: #ff8aa3;
}

.terms-document-title h1 span {
    display: block;

    margin-top: 8px;
}

.terms-version {
    margin-top: 16px;
    margin-bottom: 0;

    font-size: 15px;
    font-weight: 500;

    color: #666666;
}

/* ================= EINDE: DOCUMENTKOP ================= */


/* ============================================================
   20.04 ALGEMENE VOORWAARDEN - LOGO
   ============================================================ */

.terms-document-logo {
    flex-shrink: 0;

    width: 130px;
}

.terms-document-logo img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;
}

/* ================= EINDE: LOGO ================= */


/* ============================================================
   20.05 ALGEMENE VOORWAARDEN - ARTIKELEN
   ============================================================ */

.terms-article {
    padding: 0;

    margin-bottom: 38px;
}

.terms-article:last-child {
    margin-bottom: 0;
}

.terms-article h2 {
    margin-bottom: 16px;

    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;

    color: var(--color-black);
}

.terms-article p {
    margin-bottom: 14px;

    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;

    color: #333333;
}

.terms-article p:last-child {
    margin-bottom: 0;
}

/* ================= EINDE: ARTIKELEN ================= */


/* ============================================================
   20.06 ALGEMENE VOORWAARDEN - LINKS
   ============================================================ */

.terms-article a {
    color: #d85f83;

    font-weight: 500;

    text-decoration: underline;
    text-underline-offset: 3px;
}

.terms-article a:hover {
    color: var(--color-black);
}

/* ================= EINDE: LINKS ================= */


/* ================= EINDE: PAGINA ALGEMENE VOORWAARDEN ================= */

/* ============================================================
   21. ALGEMEEN - FOOTER
   ============================================================ */


/* ============================================================
   21.01 FOOTER - BASIS
   ============================================================ */

.site-footer {
    background-color: var(--color-black);
    color: var(--color-white);
}


/* ============================================================
   21.02 FOOTER - HOOFDINHOUD
   ============================================================ */

.footer-container {
    display: grid;

    grid-template-columns: 1.4fr 1.2fr 0.8fr;

    align-items: start;

    gap: 70px;

    padding-top: 48px;
    padding-bottom: 42px;
}


/* ============================================================
   21.03 FOOTER - KOLOMMEN
   ============================================================ */

.footer-column h2 {
    margin-bottom: 16px;

    font-size: 23px;
    font-weight: 700;

    color: #ff8aa3;
}

.footer-column p {
    margin-bottom: 8px;

    font-size: 15px;
    line-height: 1.65;

    color: rgba(255, 255, 255, 0.88);
}


/* ============================================================
   21.04 FOOTER - CONTACT
   ============================================================ */

.footer-contact {
    display: flex;
    flex-direction: column;

    align-items: flex-start;
}

.footer-contact-link {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 12px;

    font-size: 15px;

    color: var(--color-white);

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-contact-link:hover {
    color: #ff8aa3;

    transform: translateX(3px);
}

.footer-contact-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    flex-shrink: 0;

    background-color: #ff8aa3;

    border-radius: 50%;
}

.footer-contact-icon svg {
    width: 16px;
    height: 16px;

    fill: var(--color-black);
}


/* ============================================================
   21.05 FOOTER - SOCIAL MEDIA
   ============================================================ */

.footer-social-links {
    display: flex;
    align-items: center;

    gap: 12px;
}

.footer-social-link {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    background-color: #ff8aa3;

    border-radius: 50%;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease;
}

.footer-social-link svg {
    width: 22px;
    height: 22px;

    fill: var(--color-black);
}

.footer-social-link:hover {
    background-color: var(--color-white);

    transform: translateY(-3px);
}


/* ============================================================
   21.06 FOOTER - BEDRIJF & JURIDISCH
   ============================================================ */

.footer-meta {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-meta-container {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

    padding-top: 14px;
    padding-bottom: 14px;

    font-size: 13px;

    color: rgba(255, 255, 255, 0.68);
}

.footer-meta-container a {
    color: rgba(255, 255, 255, 0.78);

    transition: color 0.2s ease;
}

.footer-meta-container a:hover {
    color: #ff8aa3;
}

.footer-meta-divider {
    color: #ff8aa3;
}


/* ============================================================
   21.07 FOOTER - COPYRIGHT
   ============================================================ */

.footer-bottom-container {
    display: flex;
    align-items: center;
    justify-content: center;

    padding-top: 14px;
    padding-bottom: 18px;
}

.footer-bottom-container p {
    margin: 0;

    font-size: 13px;

    color: rgba(255, 255, 255, 0.55);
}


/* ================= EINDE: FOOTER ================= */


/* ============================================================
		22. IMPRESSIE
   ============================================================ */
/* ============================================================
   22.01 IMPRESSIE - ALGEMEEN
   ============================================================ */

.impression-container {
    max-width: 1100px;
}


/* ============================================================
   22.02 IMPRESSIE - INTRODUCTIE
   ============================================================ */

.impression-intro {
    padding: 70px 0 35px;

    background-color: var(--surface-overlay);
}

.impression-intro-content {
    max-width: 800px;

    margin: 0 auto;

    text-align: center;
}

.impression-intro-content h2,
.impression-section-heading h2,
.impression-action-content h2 {
    margin-bottom: 18px;

    color: var(--color-black);
}

.impression-intro-content p,
.impression-section-heading p,
.impression-action-content p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;

    color: #222222;
}


/* ============================================================
   22.03 IMPRESSIE - VIDEO'S
   ============================================================ */

.impression-video-section {
    padding: 35px 0 70px;

    background-color: var(--surface-overlay);
}

.impression-section-heading {
    max-width: 760px;

    margin: 0 auto 35px;

    text-align: center;
}

.impression-video-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 32px;
}

.impression-video-card {
    overflow: hidden;

    padding: 0;
}

.impression-video-placeholder {
    aspect-ratio: 16 / 9;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 10px;

    background-color: rgba(255, 138, 163, 0.40);

    text-align: center;
}

.impression-video-icon {
    font-size: 44px;
    line-height: 1;
}

.impression-video-placeholder p {
    margin: 0;

    font-size: 17px;
    font-weight: 600;

    color: var(--color-black);
}

.impression-video-content {
    padding: 28px;
}

.impression-video-content h3 {
    margin: 0 0 12px;

    color: var(--color-black);
}

.impression-video-content p {
    margin: 0;

    line-height: 1.65;
}


/* ============================================================
   22.04 IMPRESSIE - ACTIE
   ============================================================ */

.impression-action {
    padding: 0 0 90px;

    background-color: var(--surface-overlay);
}

.impression-action-content {
    max-width: 800px;

    margin: 0 auto;

    padding: 38px;

    text-align: center;
}

.impression-action-content .button {
    margin-top: 10px;
}

/* ================= EINDE: PAGINA IMPRESSIE ================= */



/* ============================================================
   23. ALGEMEEN - CUSTOM CURSOR & STARLIGHTS TRAIL
   ============================================================ */


/* ============================================================
   23.01 CUSTOM CURSOR - BASIS
   ============================================================ */

@media (pointer: fine) {

    html.custom-cursor-enabled,
    html.custom-cursor-enabled body,
    html.custom-cursor-enabled a,
    html.custom-cursor-enabled button,
    html.custom-cursor-enabled input,
    html.custom-cursor-enabled textarea,
    html.custom-cursor-enabled select,
    html.custom-cursor-enabled label {
        cursor: none;
    }

}


/* ============================================================
   23.02 CUSTOM CURSOR - STER
   ============================================================ */

.starlights-cursor {
    position: fixed;

    left: 0;
    top: 0;

	width: 34px;
	height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 99999;

    pointer-events: none;

    opacity: 0;

    transform:
        translate(-50%, -50%)
        scale(1);

    transition:
        opacity 0.15s ease,
        transform 0.15s ease;

    will-change:
        left,
        top,
        transform;
}


.starlights-cursor::before {
    content: "";

    display: block;

    width: 28px;
    height: 28px;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #ffb6c8 30%,
            #ff7fa4 65%,
            #d98cff 100%
        );

    clip-path: polygon(
        50% 0%,
        58% 35%,
        82% 18%,
        65% 42%,
        100% 50%,
        65% 58%,
        82% 82%,
        58% 65%,
        50% 100%,
        42% 65%,
        18% 82%,
        35% 58%,
        0% 50%,
        35% 42%,
        18% 18%,
        42% 35%
    );

    filter:
        drop-shadow(
            0 0 3px rgba(255, 255, 255, 1)
        )
        drop-shadow(
            0 0 7px rgba(255, 138, 163, 0.95)
        )
        drop-shadow(
            0 0 13px rgba(255, 138, 163, 0.75)
        )
        drop-shadow(
            0 0 19px rgba(210, 135, 255, 0.55)
        );
}


.starlights-cursor.is-visible {
    opacity: 1;
}


.starlights-cursor.is-hovering {
    transform:
        translate(-50%, -50%)
        scale(1.35);
}


/* ============================================================
   23.03 CURSOR - ZACHTE GLOW
   ============================================================ */

.starlights-cursor-glow {
    position: fixed;

    left: 0;
    top: 0;

    width: 46px;
    height: 46px;

    z-index: 99998;

    pointer-events: none;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.24) 0%,
            rgba(255, 138, 163, 0.24) 28%,
            rgba(213, 143, 255, 0.14) 52%,
            rgba(255, 138, 163, 0) 75%
        );

    filter: blur(4px);

    opacity: 0;

    transform:
        translate(-50%, -50%);

    transition:
        opacity 0.18s ease;

    will-change:
        left,
        top;
}


.starlights-cursor-glow.is-visible {
    opacity: 1;
}


/* ============================================================
   23.04 CURSOR TRAIL - ROOK / GLOW DEELTJES
   ============================================================ */

.starlights-trail-particle {
    position: fixed;

    left: 0;
    top: 0;

    width: var(--trail-size, 18px);
    height: var(--trail-size, 18px);

    z-index: 99990;

    pointer-events: none;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.35) 0%,
            rgba(255, 138, 163, 0.42) 30%,
            rgba(207, 135, 255, 0.30) 55%,
            rgba(255, 138, 163, 0) 78%
        );

    filter: blur(3px);

    opacity: 0.95;

    transform:
        translate(-50%, -50%)
        scale(0.65);

    animation:
        starlightsTrailFade
        var(--trail-duration, 650ms)
        ease-out
        forwards;

    will-change:
        transform,
        opacity;
}


/* ============================================================
   23.05 CURSOR TRAIL - SPARKLES
   ============================================================ */

.starlights-trail-sparkle {
    position: fixed;

    left: 0;
    top: 0;

    z-index: 99991;

    pointer-events: none;

    color: #ffffff;

    font-size: var(--sparkle-size, 10px);
    line-height: 1;

    opacity: 0.95;

    text-shadow:
        0 0 4px rgba(255, 255, 255, 0.95),
        0 0 8px rgba(255, 138, 163, 0.85);

    transform:
        translate(-50%, -50%)
        scale(0.65);

    animation:
        starlightsSparkleFade
        900ms
        ease-out
        forwards;

    will-change:
        transform,
        opacity;
}


/* ============================================================
   23.06 ANIMATIES
   ============================================================ */

@keyframes starlightsTrailFade {

    0% {
        opacity: 0.78;

        transform:
            translate(-50%, -50%)
            translate(0, 0)
            scale(0.65);
    }

    55% {
        opacity: 0.38;
    }

    100% {
        opacity: 0;

        transform:
            translate(-50%, -50%)
            translate(
                var(--trail-drift-x, 0px),
                var(--trail-drift-y, -12px)
            )
            scale(1.65);
    }

}


@keyframes starlightsSparkleFade {

    0% {
        opacity: 0;

        transform:
            translate(-50%, -50%)
            scale(0.35)
            rotate(0deg);
    }

    20% {
        opacity: 1;

        transform:
            translate(-50%, -50%)
            translate(
                calc(var(--sparkle-drift-x, 0px) * 0.2),
                calc(var(--sparkle-drift-y, -18px) * 0.2)
            )
            scale(1.15)
            rotate(10deg);
    }

    45% {
        opacity: 0.45;
    }

    65% {
        opacity: 1;

        transform:
            translate(-50%, -50%)
            translate(
                calc(var(--sparkle-drift-x, 0px) * 0.65),
                calc(var(--sparkle-drift-y, -18px) * 0.65)
            )
            scale(0.8)
            rotate(25deg);
    }

    100% {
        opacity: 0;

        transform:
            translate(-50%, -50%)
            translate(
                var(--sparkle-drift-x, 0px),
                var(--sparkle-drift-y, -18px)
            )
            scale(1.3)
            rotate(45deg);
    }

}


/* ============================================================
   23.07 TOEGANKELIJKHEID - REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    .starlights-cursor-glow,
    .starlights-trail-particle,
    .starlights-trail-sparkle {
        display: none !important;
    }

}


/* ============================================================
   23.08 TOUCH APPARATEN
   ============================================================ */

@media (pointer: coarse) {

    .starlights-cursor,
    .starlights-cursor-glow,
    .starlights-trail-particle,
    .starlights-trail-sparkle {
        display: none !important;
    }

}

/* ================= EINDE: CUSTOM CURSOR ================= */
/* ============================================================
   24. EXTERNE CONTENT - PRIVACYVRIENDELIJK LADEN
   ============================================================ */

.external-embed {
    width: 100%;

    overflow: hidden;

    border: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: var(--radius-large);

    background-color: rgba(255, 255, 255, 0.16);

    box-shadow: var(--shadow-card);
}


/* ========================================================
   24.01 PLACEHOLDER
   ======================================================== */

.external-embed-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-height: 360px;

    padding: 40px 30px;

    text-align: center;
}


/* ========================================================
   24.02 LOCATIE ICOON
   ======================================================== */

.external-embed-icon {
    display: block;

    margin-bottom: 14px;

    font-size: 42px;
    line-height: 1;
}


/* ========================================================
   24.03 LOCATIENAAM
   ======================================================== */

.external-embed-placeholder h3 {
    margin: 0 0 12px;

    font-size: 28px;
    font-weight: 700;

    color: var(--color-black);
}


/* ========================================================
   24.04 ADRES
   ======================================================== */

.external-embed-placeholder p {
    margin: 0 0 24px;

    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;

    color: var(--color-black);
}


/* ========================================================
   24.05 KNOP
   ======================================================== */

.external-embed-button {
    margin: 0;
}


/* ========================================================
   24.06 PRIVACYMELDING
   ======================================================== */

.external-embed-notice {
    display: block;

    max-width: 480px;

    margin-top: 18px;

    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;

    color: rgba(0, 0, 0, 0.70);
}


/* ========================================================
   24.07 GELADEN IFRAME
   ======================================================== */

.external-embed iframe {
    display: block;

    width: 100%;
    height: 450px;

    border: 0;
}
/* ========================================================
   24.08 YOUTUBE VIDEO
   ======================================================== */

.external-embed[data-embed-type="youtube"] iframe {
    width: 100%;

    aspect-ratio: 16 / 9;

    height: auto;

    border: 0;
}

/* ================= EINDE: YOUTUBE VIDEO ================= */


/* ================= EINDE: EXTERNE CONTENT ================= */

/* ============================================================
   90. RESPONSIVE - TABLET
   ============================================================ */

/*
 * Tabletbereik:
 * 769px t/m 1024px.
 *
 * Mobiel wordt afzonderlijk afgehandeld in hoofdstuk 91.
 */

@media (min-width: 769px) and (max-width: 1024px) {


    /* ========================================================
       90.01 TABLET - ALGEMENE LAYOUT
       ======================================================== */

    .container {
        padding-left: 22px;
        padding-right: 22px;
    }

    section {
        padding-top: 54px;
        padding-bottom: 54px;
    }

    /* ================= EINDE: ALGEMENE LAYOUT ================= */


    /* ========================================================
       90.02 TABLET - HEADER
       ======================================================== */

    .header-container {
        min-height: 90px;

        padding-left: 22px;
        padding-right: 22px;
    }

    .site-logo {
        width: 82px;
    }

    .site-header.header-scrolled .header-container {
        min-height: 72px;
    }

    .site-header.header-scrolled .site-logo {
        width: 64px;
    }

    /*
     * Op tablet gebruiken we hetzelfde menuprincipe als straks
     * op mobiel. De navigatie wordt door main.js geopend met
     * de class .is-open.
     */
    .menu-toggle {
        display: flex;

        position: relative;
        z-index: 2100;
    }

    .main-navigation {
        display: none;

        position: absolute;
        top: 100%;
        left: 0;

        width: 100%;

        margin-left: 0;

        padding: 18px 22px 24px;

        background-color: var(--color-black);

        border-top: 1px solid rgba(255, 255, 255, 0.10);

        box-shadow:
            0 12px 24px rgba(0, 0, 0, 0.20);
    }

    .main-navigation.is-open {
        display: block;
    }

    .nav-list {
        display: grid;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        align-items: start;
        justify-content: stretch;

        gap: 8px 28px;
    }

    .nav-item {
        width: 100%;

        flex-shrink: 1;
    }

    .nav-link {
        width: 100%;

        padding: 11px 0;

        font-size: 21px;

        white-space: normal;
    }

    .nav-link:hover {
        transform: none;
    }

    .nav-link.active::after,
    .nav-link[aria-current="page"]::after,
    .nav-link:not(.active):not([aria-current="page"])::after {
        left: 0;

        width: 42px;

        transform: none;
    }

    .nav-link:not(.active):not([aria-current="page"]):hover::after {
        width: 42px;
    }

    /*
     * Dropdowns staan op touch/tablet gewoon open binnen het menu.
     * Daardoor blijven zowel de hoofdpagina als de subpagina's
     * direct bereikbaar zonder afhankelijkheid van hover.
     */
    .dropdown-menu {
        position: static;

        min-width: 0;

        padding: 0 0 8px 14px;

        background-color: transparent;

        opacity: 1;
        visibility: visible;

        transform: none;
    }

    .nav-item-dropdown:hover .dropdown-menu {
        transform: none;
    }

    .dropdown-link {
        padding: 7px 0;

        font-size: 18px;

        white-space: normal;
    }

    .dropdown-link:hover {
        padding-left: 0;

        background-color: transparent;
    }

    .dropdown-arrow {
        display: none;
    }

    /* ================= EINDE: HEADER ================= */


    /* ========================================================
       90.03 TABLET - HERO'S
       ======================================================== */

    .hero {
        min-height: 540px;
    }

    .hero-content {
        max-width: 600px;
    }

    .hero-text {
        max-width: 540px;

        font-size: 19px;
    }

    .page-hero {
        min-height: 320px;
    }

    .page-hero-content {
        max-width: 620px;
    }

    /* ================= EINDE: HERO'S ================= */


    /* ========================================================
       90.04 TABLET - HOME INTRODUCTIE
       ======================================================== */

    .home-intro {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .home-intro-container {
        grid-template-columns:
            minmax(0, 0.90fr)
            minmax(0, 1.10fr);

        gap: 38px;
    }

    .home-intro-media {
        min-height: 0;
    }

    .home-intro-content {
        grid-column: 2;
    }

    .home-intro-content p {
        font-size: 17px;
    }

    /* ================= EINDE: HOME INTRODUCTIE ================= */


    /* ========================================================
       90.05 TABLET - HOME UITGELICHTE PAGINA'S
       ======================================================== */

    .home-highlights {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .home-highlights-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 24px;
    }

    .home-highlight-card {
        min-height: 250px;

        padding: 28px;
    }

    /* Laat bij een oneven aantal kaarten de laatste kaart
       netjes over de volledige rij lopen. */
    .home-highlight-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }

    /* ================= EINDE: HOME UITGELICHT ================= */


    /* ========================================================
       90.06 TABLET - HOME PROEFLES
       ======================================================== */

    .trial-cta {
        padding: 55px 0 65px;
    }

    .trial-cta-content {
        max-width: 820px;

        padding: 40px 42px;
    }

    /* ================= EINDE: HOME PROEFLES ================= */


    /* ========================================================
       90.07 TABLET - OVER ONS
       ======================================================== */

    .about-intro {
        padding: 65px 0;
    }

    .about-intro-container {
        grid-template-columns:
            minmax(0, 1.10fr)
            minmax(0, 0.90fr);

        gap: 38px;
    }

    .about-intro-content {
        padding: 30px;
    }

    .about-intro-content p {
        font-size: 17px;
    }

    /* ================= EINDE: OVER ONS ================= */


    /* ========================================================
       90.08 TABLET - OVER ESTELLE
       ======================================================== */

    .estelle-intro {
        padding: 65px 0;
    }

    .estelle-intro-container {
        grid-template-columns:
            minmax(0, 0.82fr)
            minmax(0, 1.18fr);

        gap: 38px;
    }

    .estelle-intro-content {
        padding: 30px;
    }

    .estelle-intro-content p {
        font-size: 17px;
    }

    /* ================= EINDE: OVER ESTELLE ================= */


    /* ========================================================
       90.09 TABLET - DANSAANBOD
       ======================================================== */

    .dance-offer-intro {
        padding: 60px 0 35px;
    }

    .dance-offer-section {
        padding: 35px 0 70px;
    }

    .dance-offer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 24px;
    }

    .dance-offer-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }

    .dance-offer-image {
        height: 220px;
    }

    .dance-offer-content {
        padding: 25px;
    }

    /* ================= EINDE: DANSAANBOD ================= */


    /* ========================================================
       90.10 TABLET - ROOSTER & TARIEVEN OVERZICHT
       ======================================================== */

    .schedule-overview-intro {
        padding: 60px 0 32px;
    }

    .schedule-overview-section {
        padding: 32px 0 65px;
    }

    .schedule-overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 24px;
    }

    .schedule-overview-card {
        min-height: 400px;

        padding: 30px;
    }

    /*
     * De tarievenkaart is de derde kaart en krijgt op tablet
     * bewust de volledige tweede rij.
     */
    .schedule-price-card {
        grid-column: 1 / -1;

        max-width: 560px;

        width: 100%;

        margin: 0 auto;
    }

    .schedule-trial-cta {
        padding: 15px 0 70px;
    }

    /* ================= EINDE: ROOSTER & TARIEVEN ================= */


    /* ========================================================
       90.11 TABLET - ROOSTER LOCATIES
       ======================================================== */

    .schedule-location-section {
        padding: 60px 0 70px;
    }

    .schedule-lessons {
        gap: 22px;
    }

    .schedule-lesson-card {
        padding: 30px 24px;
    }

    .schedule-lesson-time {
        font-size: 26px;
    }

    .schedule-accessibility-section {
        padding: 45px 0;
    }

    .schedule-accessibility-grid,
    .schedule-accessibility-reverse {
        grid-template-columns:
            minmax(0, 0.95fr)
            minmax(0, 1.05fr);

        gap: 38px;
    }

    .schedule-accessibility-image img {
        min-height: 320px;
    }

    .schedule-accessibility-content p {
        font-size: 17px;
    }

    .schedule-map-section {
        padding: 25px 0 70px;
    }

    .schedule-map iframe {
        min-height: 380px;
    }

    /* ================= EINDE: ROOSTER LOCATIES ================= */


    /* ========================================================
       90.12 TABLET - TARIEVEN
       ======================================================== */

    .pricing-intro {
        padding: 60px 0 30px;
    }

    .pricing-section {
        padding: 30px 0 70px;
    }

    .pricing-grid {
        gap: 24px;
    }

    .pricing-card {
        min-height: 280px;

        padding: 32px;
    }

    .pricing-package-name {
        font-size: 34px;
    }

    /* ================= EINDE: TARIEVEN ================= */


    /* ========================================================
       90.13 TABLET - INSCHRIJVEN
       ======================================================== */

    .registration-section {
        padding: 65px 0 80px;
    }

    .registration-block {
        padding: 28px;
    }

    .registration-grid {
        gap: 20px;
    }

    .signature-pad {
        height: 165px;
    }

    /* ================= EINDE: INSCHRIJVEN ================= */


    /* ========================================================
       90.14 TABLET - CONTACT
       ======================================================== */

    .contact-form-section {
        padding-top: 65px;
        padding-bottom: 75px;
    }

    .contact-form {
        padding: 34px;
    }

    /* ================= EINDE: CONTACT ================= */


    /* ========================================================
       90.15 TABLET - ALGEMENE VOORWAARDEN / PRIVACY
       ======================================================== */

    .terms-section {
        padding: 60px 0 75px;
    }

    .terms-document {
        padding: 44px 42px;
    }

    .terms-document-header {
        gap: 30px;

        margin-bottom: 42px;
        padding-bottom: 26px;
    }

    .terms-document-logo {
        width: 110px;
    }

    /* ================= EINDE: JURIDISCHE PAGINA'S ================= */


    /* ========================================================
       90.16 TABLET - FOOTER
       ======================================================== */

    .footer-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 34px 50px;

        padding-top: 40px;
        padding-bottom: 34px;
    }

    .footer-socials {
        grid-column: 1 / -1;
    }

    .footer-meta-container {
        gap: 8px;

        padding-top: 13px;
        padding-bottom: 13px;
    }

    /* ================= EINDE: FOOTER ================= */


    /* ========================================================
       90.17 TABLET - IMPRESSIE
       ======================================================== */

    .impression-intro {
        padding: 60px 0 30px;
    }

    .impression-video-section {
        padding: 30px 0 60px;
    }

    .impression-video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 24px;
    }

    .impression-video-content {
        padding: 24px;
    }

    .impression-action {
        padding: 0 0 70px;
    }

    .impression-action-content {
        padding: 34px;
    }

    /* ================= EINDE: IMPRESSIE ================= */


}

/* ================= EINDE: RESPONSIVE - TABLET ================= */

/* ============================================================
   91. RESPONSIVE - MOBIEL
   ============================================================ */

/*
 * Mobielbereik:
 * maximaal 768px.
 *
 * De navigatie gebruikt hetzelfde .is-open principe als tablet.
 * main.js moet deze class op .main-navigation schakelen.
 */

@media (max-width: 768px) {


    /* ========================================================
       91.01 MOBIEL - ALGEMENE LAYOUT
       ======================================================== */

    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    section {
        padding-top: 46px;
        padding-bottom: 46px;
    }

    .button {
        max-width: 100%;

        white-space: normal;
    }

    /* ================= EINDE: ALGEMENE LAYOUT ================= */


    /* ========================================================
       91.02 MOBIEL - HEADER & NAVIGATIE
       ======================================================== */

    .header-container {
        min-height: 82px;

        padding-left: 18px;
        padding-right: 18px;
    }

    .site-logo {
        width: 76px;
    }

    .site-header.header-scrolled .header-container {
        min-height: 68px;
    }

    .site-header.header-scrolled .site-logo {
        width: 60px;
    }

    .menu-toggle {
        display: flex;

        position: relative;
        z-index: 2100;
    }

    .main-navigation {
        display: none;

        position: absolute;
        top: 100%;
        left: 0;

        width: 100%;

        margin-left: 0;

        padding: 14px 18px 22px;

        background-color: var(--color-black);

        border-top: 1px solid rgba(255, 255, 255, 0.10);

        box-shadow:
            0 12px 24px rgba(0, 0, 0, 0.22);
    }

    .main-navigation.is-open {
        display: block;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 2px;
    }

    .nav-item {
        width: 100%;

        flex-shrink: 1;
    }

    .nav-link {
        display: block;

        width: 100%;

        padding: 11px 0;

        font-size: 21px;

        white-space: normal;
    }

    .nav-link:hover {
        transform: none;
    }

    .nav-link.active::after,
    .nav-link[aria-current="page"]::after,
    .nav-link:not(.active):not([aria-current="page"])::after {
        left: 0;

        width: 42px;

        transform: none;
    }

    .nav-link:not(.active):not([aria-current="page"]):hover::after {
        width: 42px;
    }

    /*
     * Op touch-apparaten staan submenu's binnen het geopende menu
     * zichtbaar. Zo zijn we niet afhankelijk van hover.
     */
    .dropdown-menu {
        position: static;

        min-width: 0;

        padding: 0 0 8px 14px;

        background-color: transparent;

        opacity: 1;
        visibility: visible;

        transform: none;
    }

    .nav-item-dropdown:hover .dropdown-menu {
        transform: none;
    }

    .dropdown-link {
        padding: 7px 0;

        font-size: 18px;

        white-space: normal;
    }

    .dropdown-link:hover {
        padding-left: 0;

        background-color: transparent;
    }

    .dropdown-arrow {
        display: none;
    }

    /* ================= EINDE: HEADER & NAVIGATIE ================= */


    /* ========================================================
       91.03 MOBIEL - HERO'S
       ======================================================== */

    .hero {
        min-height: 500px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        margin-bottom: 16px;

        font-size: clamp(38px, 11vw, 54px);
    }

    .hero-text {
        max-width: 100%;

        margin-bottom: 24px;

        font-size: 18px;
        line-height: 1.55;
    }

    .hero .button-primary {
        font-size: 18px;

        padding: 13px 22px;
    }

    .page-hero {
        min-height: 280px;
    }

    .page-hero-content {
        max-width: 100%;
    }

    .page-hero-content h1 {
        font-size: clamp(34px, 10vw, 48px);
    }

    .page-hero-subtitle {
        font-size: clamp(19px, 6vw, 24px);
    }

    /* ================= EINDE: HERO'S ================= */


    /* ========================================================
       91.04 MOBIEL - HOME INTRODUCTIE
       ======================================================== */

    .home-intro {
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .home-intro-container {
        grid-template-columns: 1fr;

        gap: 32px;
    }

    .home-intro-media {
        min-height: 0;
    }

    .home-intro-image {
        max-width: 520px;

        margin: 0 auto;
    }

    .home-intro-content {
        grid-column: 1;

        text-align: center;
    }

    .home-intro-content h2 {
        font-size: clamp(30px, 9vw, 40px);
    }

    .home-intro-content p {
        font-size: 17px;
    }

    /* ================= EINDE: HOME INTRODUCTIE ================= */


    /* ========================================================
       91.05 MOBIEL - HOME UITGELICHT
       ======================================================== */

    .home-highlights {
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .home-highlights .section-heading {
        margin-bottom: 30px;
    }

    .home-highlights-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .home-highlight-card,
    .home-highlight-card:last-child:nth-child(odd) {
        grid-column: auto;

        min-height: 0;

        padding: 26px 24px;
    }

    .home-highlight-card .button {
        align-self: stretch;
    }

    /* ================= EINDE: HOME UITGELICHT ================= */


    /* ========================================================
       91.06 MOBIEL - HOME PROEFLES
       ======================================================== */

    .trial-cta {
        padding: 46px 0 55px;
    }

    .trial-cta-content {
        padding: 32px 22px;
    }

    .trial-cta-content p {
        font-size: 17px;
    }

    /* ================= EINDE: HOME PROEFLES ================= */


    /* ========================================================
       91.07 MOBIEL - OVER ONS
       ======================================================== */

    .about-intro {
        padding: 52px 0;
    }

    .about-intro-container {
        grid-template-columns: 1fr;

        gap: 32px;
    }

    .about-intro-media {
        min-height: 0;
    }

    .about-intro-image {
        min-height: 0;

        max-width: 520px;

        margin: 0 auto;
    }

    .about-intro-content {
        padding: 28px 24px;
    }

    .about-intro-content p {
        font-size: 17px;
    }

    .about-intro-content .about-intro-lead {
        font-size: 19px;
    }

    /* ================= EINDE: OVER ONS ================= */


    /* ========================================================
       91.08 MOBIEL - OVER ESTELLE
       ======================================================== */

    .estelle-intro {
        padding: 52px 0;
    }

    .estelle-intro-container {
        grid-template-columns: 1fr;

        gap: 32px;
    }

    .estelle-intro-image {
        max-width: 520px;

        margin: 0 auto;
    }

    .estelle-intro-content {
        padding: 28px 24px;
    }

    .estelle-intro-content p {
        font-size: 17px;
    }

    .estelle-intro-lead {
        font-size: 19px !important;
    }

    /* ================= EINDE: OVER ESTELLE ================= */


    /* ========================================================
       91.09 MOBIEL - DANSAANBOD
       ======================================================== */

    .dance-offer-intro {
        padding: 52px 0 28px;
    }

    .dance-offer-section {
        padding: 28px 0 58px;
    }

    .dance-offer-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .dance-offer-card:last-child:nth-child(odd) {
        grid-column: auto;
    }

    .dance-offer-image {
        height: auto;

        aspect-ratio: 16 / 10;
    }

    .dance-offer-content {
        padding: 24px 22px;
    }

    .dance-offer-title {
        flex-wrap: wrap;

        gap: 10px;

        margin-bottom: 18px;
    }

    .dance-offer-title h3 {
        font-size: 25px;
    }

    .dance-offer-age {
        font-size: 17px;
    }

    .dance-offer-content .button {
        align-self: stretch;
    }

    /* ================= EINDE: DANSAANBOD ================= */


    /* ========================================================
       91.10 MOBIEL - ROOSTER & TARIEVEN OVERZICHT
       ======================================================== */

    .schedule-overview-intro {
        padding: 52px 0 28px;
    }

    .schedule-overview-section {
        padding: 28px 0 58px;
    }

    .schedule-overview-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .schedule-overview-card {
        min-height: 0;

        padding: 28px 22px;
    }

    .schedule-overview-card h3 {
        font-size: 27px;
    }

    .schedule-price-card {
        grid-column: auto;

        max-width: none;
    }

    .schedule-price {
        font-size: 38px;
    }

    .schedule-trial-cta {
        padding: 12px 0 58px;
    }

    .schedule-trial-content {
        padding: 30px 22px;
    }

    /* ================= EINDE: ROOSTER & TARIEVEN ================= */


    /* ========================================================
       91.11 MOBIEL - ROOSTER LOCATIES
       ======================================================== */

    .schedule-location-section {
        padding: 52px 0 58px;
    }

    .schedule-location-intro {
        margin-bottom: 32px;
    }

    .schedule-lessons {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .schedule-lesson-card {
        padding: 27px 22px;
    }

    .schedule-lesson-time {
        font-size: 25px;
    }

    .schedule-lesson-name {
        max-width: 100%;

        font-size: 19px;
    }

    .schedule-location-action {
        margin-top: 30px;
    }

    .schedule-accessibility-section {
        padding: 42px 0;
    }

    .schedule-accessibility-grid,
    .schedule-accessibility-reverse {
        grid-template-columns: 1fr;

        gap: 28px;
    }

    /*
     * Op mobiel tonen we bij beide locaties eerst de foto
     * en daarna de bereikbaarheidstekst.
     */
    .schedule-accessibility-reverse .schedule-accessibility-image,
    .schedule-accessibility-image {
        order: 1;
    }

    .schedule-accessibility-reverse .schedule-accessibility-content,
    .schedule-accessibility-content {
        order: 2;
    }

    .schedule-accessibility-image img {
        min-height: 0;

        aspect-ratio: 16 / 10;
    }

    .schedule-accessibility-content {
        text-align: left;
    }

    .schedule-accessibility-content p {
        font-size: 17px;
    }

    .schedule-map-section {
        padding: 22px 0 58px;
    }

    .schedule-map iframe {
        min-height: 330px;
    }

    /* ================= EINDE: ROOSTER LOCATIES ================= */


    /* ========================================================
       91.12 MOBIEL - TARIEVEN
       ======================================================== */

    .pricing-intro {
        padding: 52px 0 26px;
    }

    .pricing-section {
        padding: 26px 0 58px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .pricing-card {
        min-height: 260px;

        padding: 30px 22px;
    }

    .pricing-package-name {
        font-size: 34px;
    }

    .pricing-package-star {
        left: calc(100% + 7px);
    }

    .pricing-card-title {
        font-size: 20px;
    }

    .pricing-card-price {
        font-size: 38px;
    }

    /* ================= EINDE: TARIEVEN ================= */


    /* ========================================================
       91.13 MOBIEL - INSCHRIJVEN
       ======================================================== */

    .registration-section {
        padding: 52px 0 65px;
    }

    .registration-intro {
        margin-bottom: 34px;
    }

    .registration-block {
        margin-bottom: 26px;

        padding: 25px 20px;
    }

    .registration-block legend {
        margin-bottom: 22px;

        font-size: 22px;
    }

    .registration-grid {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .registration-grid-full {
        grid-column: auto;
    }

    .registration-form .form-group {
        margin-bottom: 20px;
    }

    .form-options label {
        grid-template-columns: 22px minmax(0, 1fr);
    }

    .form-options input[type="radio"],
    .form-options input[type="checkbox"] {
        width: 18px;
        height: 18px;
    }

    .registration-information {
        padding: 17px;
    }

    .signature-pad {
        height: 155px;
    }

    .agreement-checkbox {
        padding: 16px;
    }

    .registration-actions {
        margin-top: 30px;
    }

    .registration-actions .button {
        width: 100%;
        min-width: 0;

        font-size: 19px;
    }

    /* ================= EINDE: INSCHRIJVEN ================= */


    /* ========================================================
       91.14 MOBIEL - CONTACT
       ======================================================== */

    .contact-form-section {
        padding-top: 52px;
        padding-bottom: 62px;
    }

    .contact-intro {
        margin-bottom: 32px;
    }

    .contact-form {
        padding: 26px 20px;
    }

    .form-group {
        margin-bottom: 21px;
    }

    .form-actions .button {
        width: 100%;
    }

    .contact-form-message {
        padding: 21px 20px;
    }

    /* ================= EINDE: CONTACT ================= */


    /* ========================================================
       91.15 MOBIEL - ALGEMENE VOORWAARDEN / PRIVACY
       ======================================================== */

    .terms-section {
        padding: 46px 0 58px;
    }

    .terms-document {
        padding: 30px 22px;
    }

    .terms-document-header {
        flex-direction: column;

        gap: 22px;

        margin-bottom: 34px;
        padding-bottom: 24px;
    }

    .terms-document-logo {
        width: 100px;

        order: -1;
    }

    .terms-document-title h1 {
        font-size: clamp(28px, 8vw, 38px);

        overflow-wrap: anywhere;
    }

    .terms-article {
        margin-bottom: 32px;
    }

    .terms-article h2 {
        font-size: 21px;
    }

    .terms-article p {
        font-size: 16px;

        overflow-wrap: anywhere;
    }

    /* ================= EINDE: JURIDISCHE PAGINA'S ================= */


    /* ========================================================
       91.16 MOBIEL - FOOTER
       ======================================================== */

    .footer-container {
        grid-template-columns: 1fr;

        gap: 30px;

        padding-top: 38px;
        padding-bottom: 32px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-socials {
        grid-column: auto;
    }

    .footer-social-links {
        justify-content: center;
    }

    .footer-meta-container {
        flex-direction: column;

        gap: 7px;

        padding-top: 16px;
        padding-bottom: 16px;

        text-align: center;
    }

    .footer-meta-divider {
        display: none;
    }

    .footer-bottom-container {
        padding-top: 14px;
        padding-bottom: 17px;

        text-align: center;
    }

    /* ================= EINDE: FOOTER ================= */


    /* ========================================================
       91.17 MOBIEL - IMPRESSIE
       ======================================================== */

    .impression-intro {
        padding: 52px 0 26px;
    }

    .impression-video-section {
        padding: 26px 0 55px;
    }

    .impression-section-heading {
        margin-bottom: 28px;
    }

    .impression-video-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .impression-video-content {
        padding: 22px;
    }

    /*
     * Ook echte YouTube-iframes blijven hierdoor netjes 16:9
     * zodra de placeholders worden vervangen.
     */
    .impression-video-card iframe {
        display: block;

        width: 100%;

        aspect-ratio: 16 / 9;

        border: 0;
    }

    .impression-action {
        padding: 0 0 58px;
    }

    .impression-action-content {
        padding: 30px 22px;
    }

    /* ================= EINDE: IMPRESSIE ================= */
	
	
.error-page-action {
    transform: translateY(20px);
}

}

/* ================= EINDE: RESPONSIVE - MOBIEL ================= */

/* ============================================================
       404. Error > Home button
   ============================================================ */
   .error-page-action {
    width: 100%;

    display: flex;
    justify-content: center;

    position: relative;
    z-index: 2;

    transform: translateY(45px);
}

/* ================= EINDE: STYLE.CSS ================= */
