/* ============================================
   Variables & Base Styles
   ============================================ */
:root {
    --primary-orange: #E98C04;
    --primary-purple: #411A44;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --dark-gray: #333333;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}

.text-center {
    text-align: center;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 65px;
    width: auto;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link .dropdown-arrow {
    font-size: 0.75rem;
    transition: var(--transition);
}

.dropdown.active .nav-link .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    border-radius: 10px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
    margin-top: 0.5rem;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--light-gray);
    color: var(--primary-orange);
    padding-left: 2rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--primary-purple);
    transition: var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem 2rem 4rem 2rem;
    padding-top: max(calc(100px + 2.5rem), calc(100px + env(safe-area-inset-top, 0px) + 2rem));
    background: linear-gradient(135deg, var(--primary-purple) 0%, #5A2A5D 100%);
    overflow: visible;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>');
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(65, 26, 68, 0.4);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    flex-shrink: 0;
}

.hero-content {
    text-align: center;
    color: var(--white);
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* Hero video – thumbnail in purple area */
.hero-video {
    width: 100%;
    max-width: 640px;
    border-radius: 0 !important;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-video-poster {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    cursor: pointer;
    display: block;
}

.hero-video-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.hero-video-play:hover {
    transform: translate(-50%, -50%) scale(1.08);
}

.hero-video-play:focus {
    outline: 2px solid var(--white);
    outline-offset: 4px;
}

.hero-video-embed {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.hero-video-embed[hidden] {
    display: none !important;
}

.hero-video-embed iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
}

.btn-primary {
    background: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(233, 140, 4, 0.3);
}

.btn-primary:hover {
    background: #D17C03;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(233, 140, 4, 0.4);
}

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

.btn-outline:hover {
    background: var(--primary-purple);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-purple));
    margin: 0 auto;
    border-radius: 2px;
}

/* ============================================
   About Preview Section
   ============================================ */
.about-preview {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 0;
    object-fit: contain;
    display: block;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-orange) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
}

.image-placeholder-small {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-orange) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
}

/* ============================================
   Projects Preview Section
   ============================================ */
.projects-preview {
    background: var(--primary-purple);
}

.partners-cta {
    text-align: center;
    padding: 2rem 0 3rem;
}

.partners-cta h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.partners-cta p {
    color: var(--primary-orange);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.projects-preview .section-title {
    color: var(--white) !important;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.project-card {
    background: var(--white);
    border-radius: 0 !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}

.project-card:hover {
    transform: translateY(-20px) scale(1.08);
    box-shadow: 0 20px 50px rgba(233, 140, 4, 0.5), 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 100;
}

.project-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: var(--white);
    padding: 1rem;
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.project-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.project-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.project-link:hover {
    color: var(--primary-purple);
    gap: 0.5rem;
}

/* ============================================
   Positieve Verandering Section
   ============================================ */
.positieve-verandering-section {
    background: var(--primary-orange);
    padding: 5rem 0;
    overflow: hidden;
}

.positieve-verandering-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    position: relative;
}

.positieve-verandering-text {
    flex: 1;
    background: var(--primary-purple);
    padding: 4rem;
    color: var(--white);
    border-radius: 0;
    max-width: 60%;
    position: relative;
    z-index: 1;
}

.positieve-verandering-text h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.positieve-verandering-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white);
    margin: 0;
}

.positieve-verandering-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 40%;
    position: relative;
    z-index: 2;
    margin-left: -5rem;
}

.positieve-image-top,
.positieve-image-bottom {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    position: relative;
}

.positieve-image-top img,
.positieve-image-bottom img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.positieve-image-top {
    margin-top: -2rem;
    z-index: 3;
    margin-bottom: -3rem;
}

.positieve-image-bottom {
    margin-top: -3rem;
    z-index: 2;
}

@media (max-width: 968px) {
    .positieve-verandering-content {
        flex-direction: column;
    }
    
    .positieve-verandering-text {
        max-width: 100%;
        padding: 3rem 2rem;
        z-index: 1;
    }
    
    .positieve-verandering-images {
        max-width: 100%;
        margin-left: 0;
        margin-top: -2rem;
    }
    
    .positieve-image-top {
        margin-top: 0;
        margin-bottom: -2rem;
    }
    
    .positieve-image-bottom {
        margin-top: -2rem;
    }
}

/* ============================================
   Wat we doen Section
   ============================================ */
.wat-we-doen-section {
    background: #E5E5E5;
    padding: 5rem 0;
}

.wat-we-doen-header {
    background: var(--primary-purple);
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.wat-we-doen-header h2 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
}

.wat-we-doen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid #333;
}

.wat-we-doen-box {
    background: #F5F5F5;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    padding: 2rem;
}

/* Card 2 (top middle) has dark background */
.wat-we-doen-box:nth-child(2) {
    background: #2C2C2C;
}

.wat-we-doen-box:nth-child(2) .wat-we-doen-box-content h3 {
    color: var(--white);
}

.wat-we-doen-box:nth-child(2) .wat-we-doen-box-content p {
    color: #CCCCCC;
}

/* Ribbon effect - subtle diagonal ribbons */
.wat-we-doen-box::before {
    content: '';
    position: absolute;
    top: -20px;
    right: 20px;
    width: 120px;
    height: 40px;
    background: var(--primary-orange);
    transform: rotate(45deg);
    z-index: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.wat-we-doen-box::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: 120px;
    height: 40px;
    background: var(--primary-purple);
    transform: rotate(45deg);
    z-index: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Alternate ribbon colors for cards 3, 5, 6 */
.wat-we-doen-box:nth-child(3)::before,
.wat-we-doen-box:nth-child(5)::before,
.wat-we-doen-box:nth-child(6)::before {
    background: var(--primary-purple);
}

.wat-we-doen-box:nth-child(3)::after,
.wat-we-doen-box:nth-child(5)::after,
.wat-we-doen-box:nth-child(6)::after {
    background: var(--primary-orange);
}

.wat-we-doen-box-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.wat-we-doen-box-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.wat-we-doen-box-header h3 {
    color: var(--text-dark);
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.wat-we-doen-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-purple);
    border-radius: 50%;
    flex-shrink: 0;
    margin-left: 1rem;
}

.wat-we-doen-box:nth-child(2) .wat-we-doen-icon {
    background: var(--primary-orange);
}

.wat-we-doen-box-content p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

@media (max-width: 968px) {
    .wat-we-doen-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .wat-we-doen-grid {
        grid-template-columns: 1fr;
    }
    
    .wat-we-doen-header h2 {
        font-size: 2rem;
    }
}

/* ============================================
   News Preview Section
   ============================================ */
.news-preview {
    background: var(--white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 15px;
    transition: var(--transition);
    border-left: 4px solid var(--primary-orange);
}

.news-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.news-date {
    color: var(--primary-orange);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.news-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.news-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.news-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.news-link:hover {
    color: var(--primary-purple);
}

/* ============================================
   Page Headers
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary-purple) 0%, #5A2A5D 100%);
    padding: 8rem 0 4rem;
    margin-top: 70px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Project Goals page header subtitle */
.project-goals-header p {
    color: var(--primary-orange) !important;
    opacity: 1;
}

/* Project Goals image section */
.project-goals-image-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 0;
    background: var(--white);
    overflow: hidden;
}

.project-goals-hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Project Goals content section - purple background */
.project-goals-content {
    background: var(--primary-purple) !important;
}

.project-goals-content .content-text {
    color: var(--white) !important;
}

.project-goals-content .content-text p {
    color: var(--white) !important;
}

.project-goals-content .content-text h2 {
    color: var(--white) !important;
}

.project-goals-content .content-text ul {
    color: var(--white) !important;
}

.project-goals-content .content-text li {
    color: var(--white) !important;
}

/* Project Goals links */
.project-goals-content .content-text a {
    color: var(--primary-orange) !important;
    text-decoration: underline;
}

.project-goals-content .content-text a:hover {
    color: var(--primary-orange) !important;
    opacity: 0.8;
}

/* Project Goals contact section */
.project-goals-contact-section {
    margin-top: 3rem;
    padding: 2rem;
    border-radius: 10px;
    color: var(--white) !important;
}

.project-goals-contact-section p {
    color: var(--white) !important;
    margin-bottom: 1rem;
}

.project-goals-contact-section a {
    color: var(--primary-orange) !important;
    text-decoration: underline;
}

.project-goals-contact-section a:hover {
    color: var(--primary-orange) !important;
    opacity: 0.8;
}

/* Artletics hero section */
.artletics-hero .hero-title {
    font-size: clamp(3.75rem, 7.5vw, 6.75rem);
}

.artletics-hero .hero-subtitle {
    font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.artletics-hero {
    background-image: url('images/gallery/artleticsgallerij1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Artletics content section */
.artletics-content {
    background: var(--primary-purple) !important;
    padding: 4rem 0;
}

.artletics-text {
    color: var(--white) !important;
}

.artletics-text p {
    color: var(--white) !important;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.artletics-text h2 {
    color: var(--white) !important;
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    font-weight: 600;
}

.artletics-text ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
    list-style-type: disc;
}

.artletics-text li {
    margin-bottom: 0.75rem;
    color: var(--white) !important;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Artletics Gallery Section */
.artletics-gallery-section {
    background: var(--white);
    padding: 4rem 0;
}

.artletics-gallery {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    justify-content: center;
    flex-wrap: nowrap;
}

.artletics-gallery-item {
    flex: 1;
    min-width: 0;
    max-width: 400px;
    height: 400px;
    border-radius: 0 !important;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.artletics-gallery-item:hover {
    transform: translateY(-15px) scale(1.08);
    box-shadow: 0 12px 40px rgba(233, 140, 4, 0.7), 0 6px 20px rgba(233, 140, 4, 0.5), 0 0 30px rgba(233, 140, 4, 0.4);
    z-index: 100;
}

.artletics-gallery-item img {
    width: 100%;
    height: 100%;
    border-radius: 0 !important;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .artletics-gallery {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .artletics-gallery-item {
        flex: 0 0 calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem);
        height: 300px;
    }
}

/* ============================================
   Content Pages
   ============================================ */
.content-section {
    padding: 5rem 0;
    background: var(--white);
}

.content-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* ============================================
   Collaboration Banner
   ============================================ */
.collaboration-banner {
    background: var(--primary-purple);
    color: var(--white);
    padding: 4rem 0;
}

.collaboration-banner h2 {
    font-size: 2rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 1.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.collaboration-banner p,
.collaboration-banner ul {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 1200px;
    margin: 0 auto 1rem;
    text-align: center;
    color: var(--primary-orange);
}

.collaboration-banner ul {
    text-align: left;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.collaboration-banner li {
    margin-bottom: 0.5rem;
    color: var(--primary-orange);
}

.collaboration-banner h2.partners-contribute-title {
    color: var(--white) !important;
}

.collaboration-banner .partners-contribute-block {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.collaboration-banner .partners-contribute-block ul {
    display: inline-block;
    text-align: left;
    margin: 0 auto 1.5rem;
}

.collaboration-banner .partners-contribute-block p,
.collaboration-banner .partners-contribute-block li {
    color: var(--primary-orange) !important;
}

/* ============================================
   Partner Logos Gallery (moving / infinite scroll)
   ============================================ */
.partner-logos-section {
    background: var(--white);
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--medium-gray);
    overflow: hidden;
}

.partner-logos-track-wrap {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.partner-logos-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: max-content;
    animation: partner-logos-scroll 40s linear infinite;
}

.partner-logos-track:hover {
    animation-play-state: paused;
}

@keyframes partner-logos-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-logo-item {
    flex: 0 0 auto;
    width: 160px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    transition: transform 0.2s ease;
}

.partner-logo-item:hover {
    transform: scale(1.05);
}

.partner-logo-item--medium {
    width: 240px;
    height: 150px;
}

.partner-logo-item--medium:hover {
    transform: scale(1.05);
}

.partner-logo-item--large {
    width: 320px;
    height: 200px;
}

.partner-logo-item--large:hover {
    transform: scale(1.05);
}

.partner-logo-item--2xlarge {
    width: 400px;
    height: 250px;
}

.partner-logo-item--2xlarge:hover {
    transform: scale(1.05);
}

.partner-logo-item--xlarge {
    width: 480px;
    height: 300px;
}

.partner-logo-item--xlarge:hover {
    transform: scale(1.05);
}

.partner-logo-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(15%);
    transition: filter 0.2s ease;
}

.partner-logo-item:hover img {
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .partner-logos-section {
        padding: 2rem 0;
    }

    .partner-logos-track {
        gap: 2rem;
        animation-duration: 35s;
    }

    .partner-logo-item {
        width: 120px;
        height: 75px;
        padding: 0.5rem;
    }

    .partner-logo-item--medium {
        width: 180px;
        height: 113px;
    }

    .partner-logo-item--large {
        width: 240px;
        height: 150px;
    }

    .partner-logo-item--2xlarge {
        width: 300px;
        height: 188px;
    }

    .partner-logo-item--xlarge {
        width: 360px;
        height: 225px;
    }
}

/* ============================================
   Partner Section
   ============================================ */
.partner-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto 5rem;
}

.partner-section:last-of-type {
    margin-bottom: 2rem;
}

.partner-image {
    width: 100%;
}

.partner-image img {
    width: 100%;
    max-height: 400px;
    height: auto;
    border-radius: 0;
    object-fit: contain;
    object-position: center;
    display: block;
}

.partner-image .image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-orange) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
}

.partner-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.partner-content h2 {
    color: var(--primary-orange);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.partner-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-text h2 {
    color: var(--primary-purple);
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    font-weight: 600;
}

.content-text h3 {
    color: var(--primary-purple);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.content-text .content-spacer {
    margin: 1.5rem 0;
    height: 0;
    padding: 0;
    border: none;
}

.content-text ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content-text li {
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

/* ============================================
   Doelstellingen Page
   ============================================ */
.doelstellingen-header {
    background: var(--white) !important;
    padding: 8rem 0 2rem !important;
}

.doelstellingen-content {
    background: var(--primary-purple) !important;
    padding: 3rem 0 5rem !important;
}

.doelstellingen-text {
    color: var(--primary-orange) !important;
}

.doelstellingen-text h2 {
    color: var(--white) !important;
    font-size: 2rem !important;
    margin: 3rem 0 1.5rem !important;
    font-weight: 600 !important;
}

.doelstellingen-text h3 {
    color: var(--white) !important;
    font-size: 1.5rem !important;
    margin: 2rem 0 1rem !important;
    font-weight: 600 !important;
}

.doelstellingen-text p {
    color: var(--primary-orange) !important;
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
    margin-bottom: 1.5rem !important;
}

.doelstellingen-text ul,
.doelstellingen-text li {
    color: var(--white) !important;
}

/* ============================================
   RVT Page
   ============================================ */
.rvt-content-section {
    background: var(--primary-purple) !important;
    padding: 4rem 0;
    margin-top: 0;
}

.rvt-text {
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.rvt-text p {
    color: var(--white) !important;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.rvt-text h2 {
    color: var(--white) !important;
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    font-weight: 600;
}

.rvt-text ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
    list-style-type: disc;
}

.rvt-text li {
    margin-bottom: 0.75rem;
    color: var(--white) !important;
    font-size: 1.1rem;
    line-height: 1.8;
}

.rvt-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.rvt-contact p {
    color: var(--white) !important;
    font-size: 1.1rem;
}

.rvt-email {
    color: var(--primary-orange) !important;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.rvt-email:hover {
    text-decoration: underline;
    color: var(--primary-orange) !important;
}

/* ============================================
   Team Page
   ============================================ */
.team-member-section {
    padding: 4rem 0;
    background: var(--primary-purple) !important;
    margin-top: 70px;
}

.team-member-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.team-member-header,
.team-member-bio {
    text-align: center;
    width: 100%;
}

.team-member-header h2 {
    color: var(--white) !important;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.team-member-name {
    color: var(--white) !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    font-style: italic !important;
    margin: 0 0 1.5rem 0 !important;
}

.team-member-bio p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--primary-orange) !important;
    margin: 0 0 1.5rem 0;
}

.team-member-bio p:last-of-type {
    margin-bottom: 0;
}

.team-member-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.team-member-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .team-member-content {
        gap: 2rem;
    }
}

/* ============================================
   Gallery
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    padding: 3rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0 !important;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-orange) 100%);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    border-radius: 0 !important;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(65, 26, 68, 0.3);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
    z-index: 2;
}

/* ============================================
   Contact Form
   ============================================ */
.contact-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    color: var(--primary-purple);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--primary-purple);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--medium-gray);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(233, 140, 4, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group button {
    width: 100%;
    padding: 1.25rem;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.form-group button:hover {
    background: #D17C03;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(233, 140, 4, 0.4);
}

/* ============================================
   News List
   ============================================ */
.news-list {
    max-width: 900px;
    margin: 0 auto;
}

.news-article {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--primary-orange);
}

.news-article:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.news-article h2 {
    color: var(--primary-purple);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.news-article .meta {
    color: var(--primary-orange);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.news-article p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--primary-purple);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section p {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.footer-email,
.footer-phone {
    color: var(--primary-orange) !important;
}

.footer-leerbedrijf {
    margin-top: 1rem;
    font-style: italic;
    color: #FFB347;
    opacity: 1;
    text-shadow: 0 0 20px rgba(255, 179, 71, 0.4);
}

.footer-bottom .footer-credit {
    color: var(--primary-orange);
    text-decoration: none;
}

.footer-bottom .footer-credit:hover {
    text-decoration: underline;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--primary-orange);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

.social-media {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-media a:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

.slogan {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--primary-orange);
    margin-top: 1rem;
    font-weight: 500;
}

.hero-subtitle.slogan {
    color: var(--white);
    font-style: italic;
    opacity: 0.95;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    /* Mobile nav overlay – dimmed backdrop */
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0.35s ease;
    }
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    body.nav-open {
        overflow: hidden;
    }
    
    /* Mobile nav panel – purple, orange text, high-end design */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 5rem 1.5rem 2rem;
        gap: 0;
        background: linear-gradient(180deg, var(--primary-purple) 0%, #5A2A5D 50%, #4a1f4d 100%);
        box-shadow: -12px 0 48px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        overflow-y: auto;
        text-align: center;
    }
    
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(233, 140, 4, 0.4), transparent);
        opacity: 0.8;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        padding: 0.5rem 0;
    }
    
    .nav-menu .nav-link {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.85rem 1.25rem;
        font-size: 1.05rem;
        font-weight: 600;
        letter-spacing: 0.04em;
        color: var(--primary-orange);
        border-radius: 12px;
        transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    }
    
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: var(--white);
        background: rgba(233, 140, 4, 0.25);
        box-shadow: 0 0 0 1px rgba(233, 140, 4, 0.3);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-menu .dropdown .nav-link {
        justify-content: center;
    }
    
    .nav-menu .dropdown-arrow {
        margin-left: 0.4rem;
        color: inherit;
        opacity: 0.9;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.15);
        margin: 0.5rem 0.5rem 0.25rem;
        padding: 0 0 0.5rem;
        border-radius: 12px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(255, 255, 255, 0.06);
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 320px;
    }
    
    .nav-menu .dropdown-menu a {
        display: block;
        padding: 0.7rem 1rem;
        font-size: 0.95rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.9);
        text-align: center;
        border-radius: 10px;
        margin: 0.15rem 0.5rem;
        transition: color 0.25s ease, background 0.25s ease;
    }
    
    .nav-menu .dropdown-menu a:hover {
        color: var(--primary-orange);
        background: rgba(233, 140, 4, 0.2);
        padding-left: 1rem;
    }
    
    .about-content,
    .contact-content,
    .partner-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .projects-grid,
    .news-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .project-card {
        border-radius: 0;
    }
    
    .project-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .project-content h3,
    .project-content p {
        text-align: center;
    }
    
    .news-card {
        border-radius: 0;
        text-align: center;
    }
    
    .news-card h3,
    .news-card p {
        text-align: center;
    }
    
    .about-image,
    .contact-form,
    .news-article,
    .gallery-item {
        border-radius: 0 !important;
    }
    
    .hero {
        min-height: 500px;
        padding-top: max(calc(100px + 2rem), calc(100px + env(safe-area-inset-top, 0px) + 1.5rem));
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    body.page-samenwerkingen .page-header,
    body.page-samenwerkingen .collaboration-banner,
    body.page-samenwerkingen .partner-logos-section,
    body.page-samenwerkingen .content-section {
        margin-left: 2rem;
        margin-right: 2rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.25rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
}

