
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

li {
    line-height: 1.5;
    margin-bottom: 0.6rem;
}

blockquote {
    background: #f6faf8;
    padding: 1rem 1.25rem;
    border-left: 4px solid #3D9970;
    border-radius: 10px;
    margin: 1.25rem 0;
    font-style: italic;
}
/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #3D9970;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: #3D9970;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #3D9970;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active {
    color: #3D9970;
}

.nav-menu a.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}
/* Dropdown basic styling */
.navbar .dropdown {
    position: relative;
}

.navbar .dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #3D9970; /* donkergroen SK Lokaal */
    padding: 10px 0;
    border-radius: 8px;
    min-width: 200px;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar .dropdown:hover .dropdown-menu {
    display: block;
}

.navbar .dropdown-menu li {
    position: relative;
}

.navbar .dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: 500;
}

.navbar .dropdown-menu li a:hover {
    background-color: #FF6600; /* SK Lokaal oranje hover */
    color: white;
}

/* Main Content Area */
.main-content {
    margin-top: 80px; /* Navbar height compensation */
    min-height: calc(100vh - 80px);
}

/* Page Header */
.page-header {
    background: url("img/headerfoto.jpg") center center / cover no-repeat;
    color: rgb(255, 255, 255);
    padding: 4rem 0;
    text-align: center;
    position: relative;
}


.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

/* Content Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 4rem 0;
}

.section:nth-child(even) {
    background: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #3D9970;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 3px;
    background: #FF6600;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Content Grid System */
.content-grid {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.grid-2 {
    grid-template-columns: 1fr 1fr;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Cards */
.card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card-title {
    font-size: 1.5rem;
    color: #3D9970;
    margin-bottom: 1rem;
}

.card-content {
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: #FF6600;
    color: white;
}

.btn-primary:hover {
    background: #3D9970;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #FF6600;
    border: 2px solid #FF6600;
}

.btn-secondary:hover {
    background: #FF6600;
    color: white;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #FF6600;
}

/* Image Placeholder */
.image-placeholder {
    background: #f0f0f0;
    border: 2px dashed #ccc;
    border-radius: 10px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.1rem;
    margin: 1rem 0;
}

/* Footer */
.footer {
    background: #3D9970;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    color: #cbd5e0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .page-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .page-header-content {
        padding: 0 1rem;
    }
}






/* CSS Styling */
.content-flex {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
}

/* Foto sectie met visuele effecten */
.image-section {
    flex: 1;
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(61, 153, 112, 0.15);
    transition: all 0.4s ease;
    width:100%;
    height: 100%;
}

.image-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(61, 153, 112, 0.25);
}

.feature-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}
.feature-image1 {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.image-container:hover .feature-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width:100%;
    background: linear-gradient(135deg, rgba(61, 153, 112, 0.1), rgba(255, 102, 0, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

/* Tekst sectie met animaties */
.text-section {
    flex: 1;
    padding-left: 1rem;
}

.text-content h3 {
    font-size: 1.8rem;
    color: #3D9970;
    margin-bottom: 1.5rem;
    position: relative;
    font-weight: 600;
}

.text-content h3::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(to bottom, #3D9970, #FF6600);
    border-radius: 2px;
}

.text-content p {
    margin-bottom: 1.5rem;
    color: #555;
    text-align: justify;
}

.feature-list {
    margin-top: 2rem;
}

.feature-item {
    padding: 0.5rem 0;
    color: #3D9970;
    font-weight: 500;
    position: relative;
    padding-left: 1.5rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
    color: #FF6600;
}

/* Responsive design */
@media (max-width: 768px) {
    .content-flex {
        flex-direction: column;
        gap: 2rem;
    }
    
    .text-section {
        padding-left: 0;
    }
    
    .text-content h3::before {
        left: -15px;
    }
}

/* Content Section 3 - Twee Kolommen */
.content-flex {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.col-left {
    flex: 1;
}

.col-right {
    flex: 1;
}

.section-title-alt {
    color: #3D9970;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.section-paragraphs p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: left;
}

.section-paragraphs .highlight-text {
    color: #3D9970;
    font-weight: 600;
}

.btn-primary {
    background-color: #FF6600;
    border: none;
    padding: 12px 24px;
    font-size: 1.1rem;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #e55b00;
}

/* Rechter kolom - Video / Afbeelding */
.video-container-alt {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
}

.video-responsive {
    position: relative;
    width: 100%;
    max-width: 640px;
    padding-top: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: #000;
}

.video-responsive iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-content .play-button {
    width: 80px;
    height: 80px;
    background-color: rgba(61, 153, 112, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.video-content .play-icon {
    width: 0;
    height: 0;
    border-left: 20px solid #3D9970;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 5px;
}

.video-caption {
    color: #3D9970;
    font-weight: 500;
}

.cta-below-video {
    text-align: center;
    margin-top: 1rem;
}

.cta-below-video a {
    background-color: #FF6600;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.cta-below-video a:hover {
    background-color: #e55b00;
}

/* Responsive */
@media (max-width: 768px) {
    .content-flex {
        flex-direction: column;
    }
}

/* Navigatie Footer Cards */
.nav-footer-links {
    background-color: #f5f5f5;
    padding-bottom: 4rem;
}

.nav-card {
    text-align: center;
    padding: 2rem;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.nav-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.nav-card-img {
    height: 60px;
    margin-bottom: 1rem;
}

.nav-card .btn {
    margin-top: 1rem;
}

/* Responsive fallback */
@media (max-width: 768px) {
    .content-grid.grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Bestuur Card Styling */
.bestuur-card {
    text-align: center;
    padding-top: 2rem;
}

.bestuur-foto {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #3D9970;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.bestuur-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.bestuur-email {
    margin-top: 0.5rem;
}

.bestuur-email a {
    color: #3D9970;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bestuur-email a:hover {
    color: #FF6600;
}

#betaalpas-uitleg .feature-image {
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);

  }
  

  .content-grid.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  
  .card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
  .card .btn {
    margin-top: auto;
  }

  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .footer-section h3 {
    margin-bottom: 1rem;
    color: #fff;
  }
  
  .footer-section a {
    color: #cbd5e0;
    text-decoration: none;
  }
  
  .footer-section a:hover {
    color: #fff;
    text-decoration: underline;
  }

  
  .qr-image {
    max-width: 120px;
    height: auto;
    border-radius: 8px;
  }

.uitleg-blok {
  background-color: #f8f9fa;
  padding: 4rem 0;
  text-align: center;
}

.uitleg-tekst {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: #333;
  line-height: 1.6;
}

.uitleg-afbeelding img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.uitleg-afbeelding img:hover {
  transform: scale(1.02);
}


/* Tabellen & kaarten in beleid.html */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
  }
  table td {
    padding: 0.8rem;
    border-bottom: 1px solid #eee;
  }
  
  .card-content ul { list-style: none; padding-left: 0; }
  .card-content li { margin-bottom: 0.6rem; }
  .card-content a {
    color: #3D9970;
    text-decoration: none;
  }
  .card-content a:hover {
    color: #FF6600;
    text-decoration: underline;
  }
  
  ul, ol { margin-left: 1.25rem; }
  ul li { margin-bottom: 0.4rem; }
  
  
  
  .disabled-download {
    color: #999;
    font-style: italic;
    cursor: not-allowed;
    opacity: 0.7;
    padding: 0.3rem 0;
  }

/* Grid voor de 2 CTA-kaarten (alleen dit blok is nieuw) */
.cta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;           /* 20px */
  margin-top: 1rem;
}

/* Kaart-stijl (zacht groen accent, passend bij huisstijl) */
.cta-card {
  background: #f3fbf7;           /* zacht groen */
  border: 1px solid #d4efe3;
  border-left: 6px solid #3D9970; /* accentbalk links */
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
  padding: 1rem 1.1rem;
}

.cta-title {
  margin: 0 0 .35rem;
  font-size: 1.1rem;
  line-height: 1.3;
}

/* Statement onder de boxen */
.cta-statement {
  margin-top: 1.25rem;
  font-weight: 700;
  color: #FF6600;
}

/* Hoe werkt het section */
.how-works-media {
  margin-right: 2rem;
}

.how-works-media .feature-image1 {
  border-radius: 12px;
  margin-bottom: 1rem;
}

.how-works-text .text-content {
  max-width: 600px;
}

.steps-list {
  margin-top: 1rem;
  padding-left: 1.25rem;
}

.steps-list li {
  margin-bottom: 0.75rem;
}

.quote-card {
  margin: 0;
}

.quote-card strong {
  display: block;
}

.quote-card small {
  display: block;
  color: #555;
  margin-top: 0.35rem;
}

/* Responsief: stacken op mobiel */
@media (max-width: 768px) {
  .cta-grid {
    grid-template-columns: 1fr;
  }
  .how-works-media {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
}

.qr-wrapper {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}

.qr-promo {
  width: 100%;
  max-width: 220px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .qr-wrapper {
    justify-content: flex-start;
  }
}

    
  
