/*
Theme Name: Renshinkan Custom Theme
Author: Tammarketing
Author URI: https://tammarketing.nl
Description: Supersnel, lichtgewicht WordPress-thema op maat voor Renshinkan.
Version: 2.1.1
Text Domain: renshinkan
*/

:root {
    /* Colors */
    --primary-color: #CD2653;
    --primary-color-hover: #b01b41;
    --heading-color: #000000;
    --text-dark: #3d3d3d;
    --text-light: #4a4a4a;
    --white: #ffffff;
    --green-dot: #2EBB5E;
    --hero-bg-color: #f5efe0;
    --benefits-bg-color: #f5efe0;

    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --h1-size-desktop: 40px;
    --h1-size-mobile: 34px;
    --h2-size-desktop: 32px;
    --h2-size-mobile: 24px;
    --h3-size-desktop: 24px;
    --h3-size-mobile: 20px;
    --h4-size-desktop: 20px;
    --h4-size-mobile: 18px;
    --p-size: 16px;
    --p-small: 15px;
    --p-xs: 14px;
    --p-xxs: 13px;
    --label-size: 12px;
    --floating-title-size: 13px;
    --floating-title-size-mobile: 12px;
    --floating-subtitle-size: 12px;
    --breadcrumb-size: 15px;
    --breadcrumb-padding-top: 120px;
    --breadcrumb-padding-top-mobile: 100px;

    /* Spacing */
    --section-padding-desktop: 2rem;
    --section-padding-mobile: 50px 0 0 0;
    --container-max-width: 1200px;
    --container-padding: 0 2rem;
    --container-padding-mobile: 0 1.5rem;
    --text-padding-left: 14px;
    --border-radius: 20px;
    --border-radius-sm: 12px;
    --border-radius-pill: 30px;

    /* Floating boxes variables */
    --desktop-right-margin: 3rem;
    --container-width: 100%;
    --container-height: auto;
    --container-padding: 0;
    --container-margin: auto;

    --box1-top: 60px;
    --box1-left: 53%;
    --box2-top: 45%;
    --box2-left: 5%;
    --box2-top-mobile: 40%;
    --box2-left-mobile: -10%;
    --box3-bottom: 5%;
    --box3-left: 45%;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    font-family: var(--font-family);
    color: var(--text-dark);
    line-height: 1.5;
    background-color: #ffffff !important;
    overflow-x: hidden;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Skip-to-content link */
.skip-to-content {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 9999;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    border-radius: 0 0 var(--border-radius-sm) 0;
}

.skip-to-content:focus {
    position: fixed;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    clip: unset;
}

/* Globale focus indicatoren */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 4px;
}

:focus:not(:focus-visible) {
    outline: none;
}

/*
===========
HEADER SECTION
===========
*/
.site-header {
    width: 100%;
    position: fixed;
    top: 1rem;
    left: 0;
    z-index: 1000;
    padding: 0 1rem;
    transition: all 0.3s ease;
}

.header-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    background-color: var(--hero-bg-color);
    /* Zachte crème achtergrond */
    border-radius: 50px;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    /* Subtiele schaduw */
}

.header-logo img {
    max-height: 50px;
    width: auto;
    display: block;
}

.header-nav-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 1;
    gap: 2rem;
}

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-navigation .nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.main-navigation .nav-menu a {
    text-decoration: none;
    color: var(--heading-color);
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.main-navigation .nav-menu a:hover {
    color: var(--primary-color);
}

.header-buttons {
    display: flex;
    gap: 0.8rem;
}

.btn-header {
    text-decoration: none;
    padding: 0.6rem 1.5rem;
    border-radius: var(--border-radius-pill);
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-header.btn-outline {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid transparent;
}

.btn-header.btn-solid {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-header:hover {
    transform: scale(1.05);
}

.btn-header.btn-outline:hover {
    border: 2px solid var(--primary-color);
}

.btn-header.btn-solid:hover {
    background-color: var(--primary-color-hover);
}

/* Mobiel Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
    /* Zodat het boven het uitklapmenu zit */
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger-line:nth-child(1) {
    top: 0;
}

.hamburger-line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-line:nth-child(3) {
    bottom: 0;
}

/* Hamburger -> Kruisje animatie */
.mobile-menu-toggle.is-active .hamburger-line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.mobile-menu-toggle.is-active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-active .hamburger-line:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Responsive Header */
@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: block;
    }

    .header-nav-wrapper {
        position: absolute;
        top: 100%;
        /* Onder de header */
        left: 0;
        width: 100%;
        background-color: var(--hero-bg-color);
        flex-direction: column;
        padding: 2rem;
        border-radius: var(--border-radius);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        gap: 1.5rem;

        /* Verborgen standaard state */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        z-index: 1000;
    }

    /* Active state gestuurd door Javascript */
    .header-nav-wrapper.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(10px);
        /* Iets afstand van de container */
    }

    .main-navigation .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
    }

    .main-navigation .nav-menu a {
        font-size: 22px;
        font-weight: 700;
        color: var(--heading-color, #000);
        padding: 0.75rem 1rem;
        display: block;
        border-radius: 12px;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .main-navigation .nav-menu a:hover {
        background-color: rgba(0, 0, 0, 0.05);
        color: var(--primary-color);
    }

    .header-buttons {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
        gap: 0.75rem;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        margin-top: 0.5rem;
    }

    .btn-header {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
        font-size: 18px;
    }

    .btn-header.btn-outline {
        border: 2px solid var(--primary-color);
    }
}

/*
===========
HERO SECTION
===========
*/

/* Hero Background with curved bottom */
.hero-background {
    background-color: var(--hero-bg-color);
    width: 100%;
    border-bottom-left-radius: 50% 4vw;
    border-bottom-right-radius: 50% 4vw;
    padding-top: 3rem;
    padding-bottom: 2rem;
}

/* Structure connecting Left and Right */
.hero-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* Center items vertically */
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.hero-half {
    flex: 1 1 50%;
    min-width: 300px;
}

/* --- Left Side (Links) --- */
.aikido-section {
    width: 100%;
    padding: var(--section-padding-desktop);
}

.aikido-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.aikido-text {
    max-width: 600px;
    padding-left: var(--text-padding-left);
}

.aikido-text h1 {
    font-size: var(--h1-size-desktop);
    font-weight: 700;
    margin-bottom: 1rem;
}

.highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.aikido-text p {
    font-size: var(--p-size);
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.aikido-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    transition: all 0.3s ease;
}

.red-button {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid transparent;
}

.red-button:hover {
    background-color: var(--primary-color-hover);
    transform: scale(1.05);
}

.play-button {
    background-color: var(--white);
    color: var(--text-dark);
    gap: 0.5rem;
}

.play-button img {
    width: 20px;
    height: 20px;
}

.play-button:hover {
    transform: scale(1.05);
}

/* --- Right Side (Rechts) --- */
.aikido-floating {
    width: 100%;
    padding-right: var(--desktop-right-margin);
}

.image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--container-width);
    height: var(--container-height);
    padding: var(--container-padding);
    margin: var(--container-margin);
}

.aikido-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    margin-top: 120px;
}

/* Floating box basis */
.floating-box {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 10px 13px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 240px;
    text-align: left;
}

.floating-box .title {
    font-size: var(--floating-title-size);
    font-weight: 600;
    margin: 0;
}

.floating-box .subtitle {
    font-size: var(--floating-subtitle-size);
    margin: 2px 0 0 0;
    color: var(--text-light);
}

/* Icoon (box1) */
.floating-box .icon {
    width: 20px;
    height: 18px;
    background-color: var(--primary-color);
    border-radius: 6px;
}

.calendar-icon {
    width: 34px;
    height: 34px;
}

/* Groene pulsende dot */
.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--green-dot);
    border-radius: 50%;
    margin-left: 6px;
    position: relative;
}

.pulse::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(46, 187, 94, 0.4);
    animation: pulseAnim 1.5s infinite ease-in-out;
    will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
    .pulse::after {
        animation: none;
    }
}

@keyframes pulseAnim {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* CTA button */
.cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.6rem 1.6rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    line-height: 1;
    transition: transform 0.3s ease;
}

.cta:hover {
    background-color: var(--primary-color-hover);
    transform: scale(1.05);
}

/* Floating boxes positionering */
.box1 {
    top: var(--box1-top);
    left: var(--box1-left);
    width: 260px;
}

.box2 {
    top: var(--box2-top);
    left: var(--box2-left);
}

/* Floating box 3: Gastles */
.box3 {
    bottom: var(--box3-bottom);
    left: var(--box3-left);
    display: flex;
    align-items: center;
    gap: 12px;
    width: auto;
}

.box3 .left-side {
    display: flex;
    align-items: center;
    height: 100%;
    flex-shrink: 0;
}

.box3 .right-side {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Responsieve layout */
@media (max-width: 768px) {

    .hero-background {
        padding-top: 6rem;
    }

    /* Links */
    .aikido-container {
        justify-content: center;
        text-align: center;
    }

    .aikido-text h1 {
        font-size: var(--h1-size-mobile);
        line-height: 1.3;
    }

    .aikido-text {
        padding-left: 0;
    }

    .aikido-buttons {
        justify-content: center;
    }

    /* Rechts */
    .aikido-floating {
        padding-top: var(--section-padding-mobile);
        padding-right: 0;
    }

    .floating-box .title {
        font-size: var(--floating-title-size-mobile);
    }

    .cta {
        padding: 10px 12px;
        font-size: 13px;
    }

    .box3 {
        padding: 10px 22px;
        gap: 18px;
        max-width: 300px;
    }

    .box3 .left-side {
        margin-left: 0px;
    }

    .box3 .right-side {
        margin-right: 12px;
    }

    .calendar-icon {
        width: 28px;
        height: 28px;
    }

    .box2 {
        top: var(--box2-top-mobile);
        left: var(--box2-left-mobile);
    }

    .box1 {
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        /* proper centering */
    }

    .aikido-image {
        width: 80%;
        margin-top: 80px;
        margin-bottom: 20px;
    }
}

/* 
===========
INTRODUCTION SECTION
===========
*/
.intro-section {
    width: 100%;
    background-color: var(--white);
    padding: 6rem 2rem 4rem;
    text-align: center;
}

.intro-container {
    max-width: 900px;
    margin: 0 auto;
}

.intro-section h2 {
    font-size: var(--h2-size-desktop);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.intro-section p {
    font-size: var(--p-size);
    color: var(--text-dark);
    line-height: 1.6;
}

.text-link {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.text-link:hover {
    opacity: 0.8;
}

/* Responsieve layout (intro) */
@media (max-width: 768px) {
    .intro-section {
        padding: 3rem 1.5rem;
    }

    .intro-section h2 {
        font-size: var(--h2-size-mobile);
    }
}

/* 
===========
FEATURES SECTION
===========
*/
.features-section {
    width: 100%;
    padding: 2rem 2rem 6rem;
    background-color: var(--white);
}

.features-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-box {
    background-color: var(--hero-bg-color);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-icon-wrapper {
    width: 54px;
    height: 54px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.feature-icon-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.feature-box h3 {
    font-size: var(--h4-size-desktop);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.feature-box p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* Responsieve layout (features) */
@media (max-width: 900px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-container {
        grid-template-columns: 1fr;
    }
}

/* 
===========
BENEFITS SECTION
===========
*/

.benefits-wrapper {
    width: 100%;
    background-color: var(--benefits-bg-color);
    position: relative;
}

.wave-top,
.wave-bottom {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-top svg,
.wave-bottom svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.benefits-section-inner {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
}

.benefits-content {
    flex: 1 1 50%;
    min-width: 300px;
}

.benefits-content h2 {
    font-size: var(--h2-size-desktop);
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.benefits-content h2 .italic {
    font-style: italic;
    font-weight: 400;
    margin-bottom: -0.2rem;
    display: block;
}

.benefits-content h2 .bold {
    font-weight: 700;
    display: block;
}

.benefits-content .subtitle {
    font-size: var(--p-size);
    margin-bottom: 3rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Voordelen Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.icon-circle {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-circle img {
    max-width: 50%;
    max-height: 50%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Knoppen Groep */
.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
    border-radius: var(--border-radius-pill);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.cta-button:hover {
    background-color: var(--primary-color-hover);
    transform: scale(1.05);
}

.cta-button.secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
}

/* Highlight / Rechterkant */
.benefits-highlight {
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-width: 300px;
}

.highlight-wrapper {
    position: relative;
    width: fit-content;
}

.glow-circle {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(205, 38, 83, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.highlight-image {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
}

/* Responsief */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefits-content h2 {
        font-size: var(--h2-size-mobile);
    }

    .glow-circle {
        width: 250px;
        height: 250px;
    }
}

/* 
===========
STUDENT WORDEN SECTION
===========
*/
.student-section {
    width: 100%;
    background-color: var(--white);
    padding: 6rem 2rem;
    text-align: center;
}

.student-container {
    max-width: 1000px;
    margin: 0 auto;
}

.student-section h2 {
    font-size: var(--h2-size-desktop);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.student-section p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
    font-weight: 500;
}

@media (max-width: 768px) {
    .student-section {
        padding: 4rem 1.5rem;
    }

    .student-section h2 {
        font-size: var(--h2-size-mobile);
    }
}

/* 
===========
IMAGE GALLERY SECTION
===========
*/
.image-gallery-section {
    width: 100%;
    background-color: var(--white);
    padding: 2rem 2rem 6rem;
}

.image-gallery-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.gallery-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .image-gallery-container {
        grid-template-columns: 1fr;
    }
}

/* 
===========
FINAL VIDEO SECTION
===========
*/
.final-video-section {
    width: 100%;
    background-color: var(--white);
    padding: 6rem 2rem;
    position: relative;
    /* overflow: hidden; Removed to allow blur effects to bleed naturally without hard edges */
}

.video-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
    position: relative;
}

.video-text-content {
    flex: 1 1 45%;
    position: relative;
    /* Voor positionering blur */
    z-index: 2;
    min-width: 300px;
}

.video-text-content h2 {
    font-size: var(--h2-size-desktop);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.video-text-content p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
    font-weight: 500;
}

.video-player-content {
    flex: 1 1 45%;
    position: relative;
    z-index: 2;
    min-width: 300px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
}

/* YouTube Facade (lazy iframe) */
.youtube-facade {
    cursor: pointer;
}

.youtube-facade-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.youtube-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.youtube-facade:hover .youtube-play-btn {
    opacity: 1;
}

/* Blur Effecten */
.custom-bg-blur {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(205, 38, 83, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.bg-top-left {
    top: -50px;
    left: -100px;
    width: 250px;
    height: 250px;
    opacity: 0.2;
}

.bg-bottom-left {
    bottom: -50px;
    right: 0px;
    width: 200px;
    height: 200px;
    opacity: 0.15;
}

.bg-top-right-video {
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(205, 38, 83, 0.25) 0%, transparent 70%);
}

@media (max-width: 768px) {
    .video-container {
        gap: 3rem;
    }

    .video-text-content h2 {
        font-size: var(--h2-size-mobile);
    }
}

/* 
===========
FOOTER SECTION
===========
*/
.site-footer {
    background-color: var(--hero-bg-color);
    /* Zelfde zachte achtergrond als hero */
    padding-top: 8rem;
    /* Ruimte voor overlappende nieuwsbrief */
    position: relative;
    color: var(--text-dark);
}

/* Nieuwsbrief */
.newsletter-container {
    max-width: 900px;
    margin: 0 auto;
    position: absolute;
    top: -50px;
    /* Overlap naar voorgaande sectie */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    z-index: 10;
}

.newsletter-box {
    background-color: var(--hero-bg-color);
    border: 3px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 2.5rem 3rem;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    /* Subtiele schaduw voor overlap effect */
}

.newsletter-box .newsletter-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-family: var(--font-family);
    font-size: 16px;
}

.captcha-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
}

.captcha-input {
    width: 60px;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    text-align: center;
    font-family: var(--font-family);
    font-size: 16px;
}

.newsletter-submit {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius-pill);
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family);
}

.newsletter-submit:hover {
    background-color: var(--primary-color-hover);
    transform: scale(1.05);
}

/* Footer Hoofdgedeelte */
.footer-main {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Footer Kolommen */
.footer-col-brand {
    flex: 0 0 35%;
    min-width: 300px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo .logo-image {
    width: 200px;
    height: auto;
    object-fit: contain;
}

.footer-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 500;
}

.footer-buttons {
    display: flex;
    gap: 1rem;
}

.footer-btn {
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius-pill);
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    will-change: transform;
}

.btn-outline {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid transparent;
}

.btn-solid {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.footer-btn.btn-solid:hover {
    background-color: var(--primary-color-hover);
    border-color: var(--primary-color-hover);
    transform: scale(1.05);
}

.footer-btn.btn-outline:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

/* Navigatie */
.footer-col-nav,
.footer-col-links {
    flex: 1;
    min-width: 150px;
}

.footer-nav-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 1rem;
}

.footer-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--primary-color);
}

/* Socials */
.footer-col-social {
    flex: 0 0 15%;
    min-width: 120px;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mt-3 {
    margin-top: 1rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.social-link:hover .social-icon {
    transform: scale(1.1);
}

.social-btn {
    background-color: #dcd7cc;
    /* Lichte grijze/bruine tint knoppen */
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.social-link:hover .social-btn {
    background-color: #cfcabf;
}

/* Footer Bottom Links */
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--text-dark);
}

/* Credit Bar met confetti */
.confetti-wrapper {
    font-size: 16px;
    color: var(--heading-color);
    font-weight: 500;
    font-family: var(--font-family);
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    text-align: center;
    overflow: hidden;
    padding: 25px 0;
    background-color: var(--white);
}

.confetti-container {
    font-weight: 700;
    position: relative;
    cursor: pointer;
    display: inline-block;
    color: var(--primary-color);
    text-decoration: underline;
}

.confetti-dot {
    position: fixed;
    border-radius: 50%;
    background-color: #000;
    color: white;
    font-weight: bold;
    font-family: sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 9999;
    user-select: none;
}

@media (max-width: 768px) {
    .confetti-wrapper {
        font-size: 15px;
    }
}

/* 404 Pagina */
.error-404-page {
    --heading-color: #000000;
}

.error-404-section {
    background-color: var(--hero-bg-color);
    padding: 100px 1.5rem;
    text-align: center;
}

.error-404-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.error-404-subtitle {
    font-size: var(--h4-size-desktop);
    color: var(--heading-color);
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}

.error-404-title {
    font-size: var(--h1-size-desktop);
    font-weight: 700;
    color: var(--heading-color);
    margin: 0 0 10px;
    line-height: 1.2;
}

.error-404-code {
    font-size: 180px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 20px 0;
    line-height: 1;
}

.error-404-text {
    font-size: var(--h4-size-desktop);
    color: var(--heading-color);
    font-weight: 500;
    margin: 0 0 8px;
}

.error-404-link {
    font-size: var(--h4-size-desktop);
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.error-404-link:hover {
    text-decoration-thickness: 2px;
}

@media (max-width: 768px) {
    .error-404-section {
        padding: 60px 1.5rem;
    }

    .error-404-subtitle {
        font-size: 17px;
    }

    .error-404-title {
        font-size: var(--h1-size-mobile);
    }

    .error-404-code {
        font-size: 120px;
    }

    .error-404-text {
        font-size: 17px;
    }

    .error-404-link {
        font-size: 17px;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .captcha-group {
        justify-content: center;
    }

    .footer-col-nav,
    .footer-col-links {
        flex: 0 0 45%;
    }
}

@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-col-brand,
    .footer-col-nav,
    .footer-col-links,
    .footer-col-social {
        flex: 0 0 100%;
        text-align: center;
    }

    .footer-buttons,
    .social-item {
        justify-content: center;
    }

    .footer-col-links .footer-menu {
        margin-top: 0 !important;
    }

    .site-footer {
        padding-top: 18rem;
        /* Extra ruimte op mobiel door gestapelde formuliervelden */
    }
}