
        /* Reset en basisstijlen */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary-color: #1a5fb4;
            --secondary-color: #e31e24;
            --accent-color: #e5a50a;
            --dark-color: #1c1c1c;
            --light-color: #f8f8f8;
            --text-color: #333;
            --section-bg: #f5f9ff;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--light-color);
            color: var(--text-color);
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        section {
            padding: 80px 0;
        }

        h1, h2, h3, h4 {
            margin-bottom: 20px;
            color: var(--dark-color);
            line-height: 1.3;
        }

        h1 {
            font-size: 3rem;
            font-weight: 700;
        }

        h2 {
            font-size: 2.5rem;
            position: relative;
            margin-bottom: 50px;
            text-align: center;
        }

        h2:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 2px;
        }

        h3 {
            font-size: 1.8rem;
        }

        p {
            margin-bottom: 20px;
        }

        a {
            text-decoration: none;
            color: var(--primary-color);
            transition: var(--transition);
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--primary-color);
            color: white;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            text-align: center;
            box-shadow: var(--shadow);
        }

        .btn:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        }

        .btn-secondary {
            background: var(--secondary-color);
        }

        .btn-secondary:hover {
            background: var(--primary-color);
        }

        .text-center {
            text-align: center;
        }

        /* Header en navigatie - TRANSPARANTE ACHTERGROND */
        header {
            background-color: transparent;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: var(--transition);
        }

        header.scrolled {
            background-color: rgba(238, 238, 238, 0.95);
            box-shadow: var(--shadow);
            padding: 10px 0;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            position: absolute;
            left: 20px;
            top: 15px;
        }

        .logo img {
            height: 50px;
        }

        .logo-text {
            display: none; /* Verborgen op kleine schermen */
        }

        nav {
            margin-left: auto;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            color: white;
            font-weight: 500;
            position: relative;
            padding: 8px 0;
        }

        header.scrolled nav ul li a {
            color: var(--dark-color);
        }

        nav ul li a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: white;
            transition: var(--transition);
        }

        header.scrolled nav ul li a:after {
            background: var(--primary-color);
        }

        nav ul li a:hover {
            color: white;
        }

        header.scrolled nav ul li a:hover {
            color: var(--primary-color);
        }

        nav ul li a:hover:after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: white;
            z-index: 1001;
        }

        header.scrolled .mobile-menu-btn {
            color: var(--dark-color);
        }

        /* Hero sectie - EXTENDED HEADER ACHTERGROND */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://www.ossulumoskee.nl/uploads/1/6/7/4/16743084/background-images/1800730148.jpg');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-top: -80px; /* Compenseer voor fixed header */
            padding-top: 80px; /* Voeg padding toe voor header ruimte */
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            animation: fadeInUp 1s ease;
        }

        .hero h1 {
            font-size: 3.5rem;
            color: white;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            animation: fadeInUp 1s ease 0.6s both;
        }

        /* Over ons sectie */
        .about {
            background-color: var(--section-bg);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
        }

        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            animation: fadeInRight 1s ease;
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        /* Project sectie */
        .project {
            background-color: white;
        }

        .project-steps {
            display: flex;
            justify-content: space-between;
            margin-top: 50px;
            flex-wrap: wrap;
        }

        .step {
            flex: 1;
            min-width: 250px;
            margin: 0 15px 30px;
            text-align: center;
            padding: 30px 20px;
            background: var(--section-bg);
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .step:hover {
            transform: translateY(-10px);
        }

        .step-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
        }

        /* Donatie sectie */
        .donation {
            background: white;
            color: var(--text-color);
            text-align: center;
        }

        .donation-container {
            display: flex;
            gap: 40px;
            align-items: flex-start;
        }

        .donation-form-container {
            flex: 2;
        }

        .recent-donations {
            flex: 1;
            background: var(--section-bg);
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        .recent-donations h3 {
            text-align: center;
            margin-bottom: 25px;
            color: var(--primary-color);
        }

        .donation-list {
            list-style: none;
        }

        .donation-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .donation-item:last-child {
            border-bottom: none;
        }

        .donor-info {
            display: flex;
            align-items: center;
        }

        .donor-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--primary-color);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-weight: bold;
        }

        .donor-details h4 {
            margin-bottom: 5px;
            font-size: 1rem;
        }

        .donor-details p {
            margin-bottom: 0;
            font-size: 0.8rem;
            color: #666;
        }

        .donation-amount {
            font-weight: bold;
            color: var(--primary-color);
            font-size: 1.2rem;
        }

        .donation-form {
            max-width: 100%;
            margin: 0 auto;
            background: var(--section-bg);
            padding: 40px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        .form-group {
            margin-bottom: 20px;
            text-align: left;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            background: white;
        }

        .radio-group {
            display: flex;
            gap: 20px;
            margin-bottom: 15px;
        }

        .radio-option {
            display: flex;
            align-items: center;
        }

        .radio-option input {
            width: auto;
            margin-right: 8px;
        }

        /* Nieuws sectie */
        .news {
            background-color: var(--section-bg);
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .news-item {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .news-item:hover {
            transform: translateY(-10px);
        }

        .news-image {
            height: 200px;
            overflow: hidden;
        }

        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .news-item:hover .news-image img {
            transform: scale(1.1);
        }

        .news-content {
            padding: 20px;
        }

        .news-date {
            color: var(--primary-color);
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        /* Contact sectie */
        .contact {
            background-color: white;
        }

        .contact-container {
            display: flex;
            gap: 50px;
        }

        .contact-info {
            flex: 1;
        }

        .contact-details {
            margin-top: 30px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .contact-form {
            flex: 1;
            background: var(--section-bg);
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        /* Footer */
footer {
  background: var(--dark-color);
  color: #fff;

  width: 100vw;
  margin-left: calc(50% - 50vw);

  /* 🔽 DIT is wat je zoekt */
  margin-top: 120px;

  padding: 120px 0 50px;
}

        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }

        .footer-column h3 {
            color: white;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--secondary-color);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #bbb;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #bbb;
        }

        /* Animaties */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Mollie betaling modal */
        .mollie-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .mollie-modal-content {
            background: white;
            padding: 30px;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            box-shadow: var(--shadow);
        }

        .mollie-modal h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .mollie-modal p {
            margin-bottom: 20px;
        }

        .payment-methods {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin: 20px 0;
        }

        .payment-method {
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 10px 15px;
            cursor: pointer;
            transition: var(--transition);
        }

        .payment-method:hover {
            border-color: var(--primary-color);
            background: var(--section-bg);
        }

        .payment-method.selected {
            border-color: var(--primary-color);
            background: var(--primary-color);
            color: white;
        }

        .payment-details {
            margin-top: 20px;
            text-align: left;
        }

        .payment-summary {
            background: var(--section-bg);
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
        }

        .close-modal {
            background: #ddd;
            color: #333;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 20px;
        }

        .close-modal:hover {
            background: #ccc;
        }

        /* Responsive design */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .contact-container {
                flex-direction: column;
            }
            
            .donation-container {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(0, 0, 0, 0.9);
                flex-direction: column;
                padding: 20px;
                box-shadow: var(--shadow);
            }
            
            header.scrolled nav ul {
                background: white;
            }
            
            nav ul.active {
                display: flex;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero-btns {
                flex-direction: column;
                align-items: center;
            }
            
            .project-steps {
                flex-direction: column;
            }
            
            .logo {
                position: static;
                margin-right: auto;
            }
            
            .header-container {
                justify-content: space-between;
            }
        }

        @media (min-width: 769px) {
            .logo-text {
                display: block;
                margin-left: 15px;
            }
            
            .logo h1 {
                font-size: 1.8rem;
                margin-bottom: 0;
                color: white;
            }
            
            header.scrolled .logo h1 {
                color: var(--primary-color);
            }
            
            .logo p {
                font-size: 0.9rem;
                color: white;
                margin-bottom: 0;
            }
            
            header.scrolled .logo p {
                color: var(--text-color);
            }
        }
    
        .donation-container{
  display:flex;
  gap:30px;
  align-items:flex-start;
  flex-wrap:wrap;
}

.donation-form-container{
  flex:1 1 520px;
}

.recent-donations{
  flex:0 1 360px;
  background:#f6f9ff;
  border-radius:16px;
  padding:22px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.donation-list{
  list-style:none;
  padding:0;
  margin:0;
}

.donation-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  border-bottom:1px solid rgba(0,0,0,.08);
}

.donation-item:last-child{ border-bottom:none; }

.donor-info{
  display:flex;
  align-items:center;
  gap:12px;
}

.donor-avatar{
  width:40px;height:40px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  background:#1e3a8a;
  color:#fff;
}

.donor-details h4{
  margin:0;
  font-size:15px;
}
.donor-details p{
  margin:2px 0 0;
  font-size:12px;
  opacity:.75;
}

.donation-amount{
  font-weight:800;
  color:#1e3a8a;
}

/* Reset en basisstijlen */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
  --primary-color: #1a5fb4;
  --secondary-color: #e31e24;
  --accent-color: #e5a50a;
  --dark-color: #1c1c1c;
  --light-color: #f8f8f8;
  --text-color: #333;
  --section-bg: #f5f9ff;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--light-color);
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

section { padding: 80px 0; }

h1, h2, h3, h4 {
  margin-bottom: 20px;
  color: var(--dark-color);
  line-height: 1.3;
}

h1 { font-size: 3rem; font-weight: 700; }

h2 {
  font-size: 2.5rem;
  position: relative;
  margin-bottom: 50px;
  text-align: center;
}

h2:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

h3 { font-size: 1.8rem; }
p { margin-bottom: 20px; }

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
  box-shadow: var(--shadow);
}

.btn:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.btn-secondary { background: var(--secondary-color); }
.btn-secondary:hover { background: var(--primary-color); }

.text-center { text-align: center; }

/* Header en navigatie */
header {
  background-color: transparent;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  padding: 10px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  position: absolute;
  left: 20px;
  top: 15px;
}

.logo img { height: 50px; }
.logo-text { display: none; }

nav { margin-left: auto; }

nav ul {
  display: flex;
  list-style: none;
}

nav ul li { margin-left: 30px; }

nav ul li a {
  color: white;
  font-weight: 700;
  letter-spacing: .2px;
  position: relative;
  padding: 8px 0;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

header.scrolled nav ul li a {
  color: var(--dark-color);
  text-shadow: none;
}

nav ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: white;
  transition: var(--transition);
}

header.scrolled nav ul li a:after { background: var(--primary-color); }

nav ul li a:hover { color: white; }
header.scrolled nav ul li a:hover { color: var(--primary-color); }
nav ul li a:hover:after { width: 100%; }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
  z-index: 1001;
}

header.scrolled .mobile-menu-btn { color: var(--dark-color); }

/* Hero */
.hero {
  background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url('https://www.ossulumoskee.nl/uploads/1/6/7/4/16743084/background-images/1800730148.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: -80px;
  padding-top: 80px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease;
}

.hero h1 {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  animation: fadeInUp 1s ease 0.6s both;
}

/* About */
.about { background-color: var(--section-bg); }

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-text { flex: 1; }

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  animation: fadeInRight 1s ease;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.about-image:hover img { transform: scale(1.05); }

/* Project */
.project { background-color: white; }

.project-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 250px;
  margin: 0 15px 30px;
  text-align: center;
  padding: 30px 20px;
  background: var(--section-bg);
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.step:hover { transform: translateY(-10px); }

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}

/* Donation */
.donation { background: white; color: var(--text-color); text-align: center; }

.donation-container{
  display:flex;
  gap:30px;
  align-items:flex-start;
  flex-wrap:wrap;
}

.donation-form-container{ flex:1 1 520px; }

.donation-form {
  max-width: 100%;
  margin: 0 auto;
  background: var(--section-bg);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: 20px; text-align: left; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
}

.radio-group { display: flex; gap: 20px; margin-bottom: 15px; }
.radio-option { display: flex; align-items: center; }
.radio-option input { width: auto; margin-right: 8px; }

/* Recente donaties vak */
.recent-donations{
  flex:0 1 360px;
  background:#f6f9ff;
  border-radius:16px;
  padding:22px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.recent-donations h3{
  text-align:center;
  margin-bottom:18px;
  color: var(--primary-color);
}

.donation-list{ list-style:none; padding:0; margin:0; }

.donation-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  border-bottom:1px solid rgba(0,0,0,.08);
}
.donation-item:last-child{ border-bottom:none; }

.donor-info{ display:flex; align-items:center; gap:12px; }
.donor-avatar{
  width:40px;height:40px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-weight:700;background:#1e3a8a;color:#fff;
}

.donor-details h4{ margin:0; font-size:15px; }
.donor-details p{ margin:2px 0 0; font-size:12px; opacity:.75; }

.donation-amount{ font-weight:800; color:#1e3a8a; }

/* Contact */
.contact { background-color: white; }

.contact-container { display: flex; gap: 50px; }
.contact-info { flex: 1; }

.contact-details { margin-top: 30px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-form {
  flex: 1;
  background: var(--section-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* Footer - full width */
footer{
  background: var(--dark-color);
  color:#fff;
  width:100%;
  margin:0;
  padding:80px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
}

.footer-column h3 {
  color: white;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--secondary-color);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #bbb;
}

/* Animaties */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 992px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  .about-content { flex-direction: column; }
  .contact-container { flex-direction: column; }
  .donation-container { flex-direction: column; }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow);
  }

  header.scrolled nav ul { background: white; }
  nav ul.active { display: flex; }
  nav ul li { margin: 10px 0; }

  .mobile-menu-btn { display: block; }

  .hero h1 { font-size: 2.5rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .project-steps { flex-direction: column; }

  .logo { position: static; margin-right: auto; }
  .header-container { justify-content: space-between; }
}

@media (min-width: 769px) {
  .logo-text { display: block; margin-left: 15px; }

  .logo h1 { font-size: 1.8rem; margin-bottom: 0; color: white; }
  header.scrolled .logo h1 { color: var(--primary-color); }

  .logo p { font-size: 0.9rem; color: white; margin-bottom: 0; }
  header.scrolled .logo p { color: var(--text-color); }
}

/* =========================
   ✅ LAND POPUP (NIEUW)
========================= */
.country-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0,0,0,.65);
  padding: 16px;
}

.country-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.country-modal .panel {
  width: 100%;
  max-width: 560px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  overflow: hidden;
}

.country-modal .panel-header {
  background: var(--section-bg);
  padding: 18px 20px;
}

.country-modal .panel-header h3 {
  margin: 0;
  color: var(--primary-color);
  font-size: 1.35rem;
}

.country-modal .panel-body {
  padding: 18px 20px;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

@media (max-width: 520px) {
  .country-grid { grid-template-columns: 1fr; }
}

.country-card {
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.country-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,.08);
  border-color: rgba(26,95,180,.35);
}

.country-card.active {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(26,95,180,.15);
}

.country-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.flag {
  width: 34px;
  height: 24px;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,.08);
  object-fit: cover;
}

.country-name {
  font-weight: 700;
  color: #111;
}

.country-sub {
  font-size: 12px;
  opacity: .7;
  margin-top: 2px;
}

.country-modal .panel-footer {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid rgba(0,0,0,.08);
}

.btn-muted {
  background: #e5e7eb;
  color: #111;
}
.btn-muted:hover {
  background: #d1d5db;
  transform: translateY(-2px);
}