/* =====================================================
   1. CSS VARIABLES
===================================================== */
:root {
    --content-width: clamp(320px, 85vw, 1200px);

    --primary-bg-color: #edf5f8;
    --card-bg-color: #ffffff;

    --primary-color: #0f3b4a;
    --primary-hover-color: #155161;

    --accent-color: #2f8fa0;
    --accent-hover-color: #247b8a;

    --secondary-color: #6fa8b5;

    --action-color: #2f8fa0;
    --action-hover-color: #247b8a;

    --heading-color: #0f3b4a;
    --body-text-color: #243a42;
    --muted-text-color: #6b8b95;
    --link-color: #2f8fa0;
}

/* =====================================================
   2. FONTS
===================================================== */
@font-face {
    font-family: "Source Sans 3";
    src: url("../fonts/SourceSans3-Regular.woff2") format("woff2");
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: "Source Sans 3";
    src: url("../fonts/SourceSans3-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-display: swap;
}
@font-face {
    font-family: "Source Sans 3";
    src: url("../fonts/SourceSans3-Bold.woff2") format("woff2");
    font-weight: 700;
    font-display: swap;
}

/* =====================================================
   3. BASE
===================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: "Source Sans 3", system-ui, sans-serif;
    margin: 0;
    padding: 20px;
    min-height: 100vh;
    color: var(--body-text-color);
    background-color: var(--primary-bg-color);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

/* =====================================================
   4. BACKGROUND
===================================================== */
body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
}
body::before {
    background: linear-gradient(
        155deg,
        #edf5f8 0%,
        #edf5f8 60%,
        #d6e9ef 60%,
        #d6e9ef 100%
    );
}
body::after {
    background: linear-gradient(
        155deg,
        transparent 0%,
        transparent 70%,
        rgba(15, 59, 74, 0.2) 70%,
        rgba(15, 59, 74, 0.2) 100%
    );
}

/* =====================================================
   5. HEADER
===================================================== */
.site-header {
    max-width: var(--content-width);
    margin: 0 auto 30px;
    background-color: rgba(255,255,255,0.94);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
}

.logo {
    width: 160px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.site-name {
    font-weight: 700;
    color: var(--heading-color);
	font-size: 40px;
}

.site-tagline {
    font-size: 0.85em;
    color: var(--muted-text-color);
	font-size:20px;
}

.header-actions {
    display: flex;
    gap: 10px;
}

/* =====================================================
   6. BUTTONS
===================================================== */
.whatsapp-btn,
.menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 50px;
    background-color: var(--action-color);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.whatsapp-btn:hover,
.menu-toggle:hover {
    background-color: var(--action-hover-color);
}

.whatsapp-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* =====================================================
   7. FULLSCREEN MENU (ALL DEVICES)
===================================================== */
.menu-container {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background-color: var(--primary-bg-color);
    padding: 100px 24px 30px;
    overflow-y: auto;
}

.menu-container.is-open {
    display: block;
    animation: menuFade 0.3s ease;
}

.menu-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--heading-color);
    cursor: pointer;
}

.menu-container ul {
    list-style: none;
    padding: 16px;
    margin: 0 auto;
    max-width: 420px;
    background-color: rgba(255,255,255,0.6);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.menu-container a {
    display: block;
    padding: 16px 20px;
    text-align: center;
    border-radius: 14px;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.menu-container a:hover {
    background-color: var(--accent-color);
}

/* Submenu always visible inside overlay */
.menu-container .sub-menu {
    display: block;
    position: static;
    background: transparent;
    padding: 0;
}

.menu-container .sub-menu a {
    background-color: rgba(255,255,255,0.7);
    color: var(--body-text-color);
    font-size: 0.95em;
}

/* =====================================================
   8. CONTENT / FOOTER
===================================================== */
.container {
    max-width: var(--content-width);
    margin: 0 auto;
    background-color: rgba(255,255,255,0.94);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.site-footer {
    max-width: var(--content-width);
    margin: 40px auto 20px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.94);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: var(--body-text-color);
}

.site-footer a {
    color: var(--link-color);
    text-decoration: none;
    font-weight: 600;
}

.site-footer a:hover {
    text-decoration: underline;
}
.footer-widgets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}
.footer-widget {
    text-align: center;
}
.site-footer ul,
.site-footer ol {
    list-style: none;
    padding: 0;
    margin: 0;
}
.site-footer li {
    margin: 6px 0;
}
.footer-widget h3,
.footer-widget h4 {
    margin-bottom: 10px;
    color: var(--heading-color);
    font-weight: 700;
}

/* =====================================================
   9. ANIMATION
===================================================== */
@keyframes menuFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   10. PRINT
===================================================== */
@media print {
    .menu-container,
    .menu-toggle,
    .menu-close,
    .whatsapp-btn {
        display: none;
    }
}


@media (max-width: 600px) {
    .header-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }
	
	.logo-link {
        justify-content: center;
    }

    .logo-text {
        align-items: center;
    }
	
	.header-actions {
        display: flex;
        justify-content: center;
        gap: 12px;
        width: 100%;
    }
	
	 .whatsapp-btn {
        padding: 10px 16px;
        font-size: 0.95em;
    }

    .menu-toggle {
        width: 46px;
        height: 46px;
        font-size: 1.3rem;
		display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    }
	 .footer-widgets {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
/* =====================================================
   HOME VIDEO SECTION
===================================================== */
.home-video-section {
    max-width: var(--content-width);
    margin: 0 auto 40px;
    padding: 0 20px;
}

.home-video-card {
    background-color: rgba(255, 255, 255, 0.94);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    align-items: center;
}

.home-video-text h1 {
    margin-top: 0;
    margin-bottom: 12px;
}

.home-video-text p {
    margin-bottom: 20px;
    font-size: 1.05em;
}

.video-cta {
    display: inline-block;
    background-color: var(--accent-color);
    color: #fff;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
}

.video-cta:hover {
    background-color: var(--accent-hover-color);
}

/* Video responsive */
.home-video-embed {
    position: relative;
    padding-top: 56.25%; /* 16:9 */
    border-radius: 12px;
    overflow: hidden;
}

.home-video-embed iframe,
.home-video-embed video,
.front-page-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Mobiel */
@media (max-width: 800px) {
    .home-video-card {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .home-video-text {
        text-align: center;
    }
	
	.site-name {
   
	font-size: 20px;
}

.site-tagline {

	font-size:15px;
}
}

/* Gutenberg benefits list op homepage */
.home-video-section ul,
.wp-block-list {
    list-style: none;
    padding-left: 0;
    margin: 24px 0;
}

.home-video-section ul li,
.wp-block-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 1.05em;
    line-height: 1.5;
}

.home-video-section ul li::before,
.wp-block-list li::before {
    content: "✔";
    color: var(--accent-color);
    font-weight: 700;
    margin-top: 2px;
}

