/* Reset & Base */
* { box-sizing: border-box; }
body { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    line-height: 1.6;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #333;
}

/* Header met krachtige donkere kleuren */
header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d4a5a 100%);
    color: #fff;
    padding: 3rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}
header h1 {
    margin: 0 0 0.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
header p {
    font-size: 1.2rem;
    margin: 0.5rem 0 1.5rem;
    opacity: 0.95;
}

/* Social links in header */
.social-links {
    margin-top: 1.5rem;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(188, 24, 136, 0.3);
}

.instagram-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(188, 24, 136, 0.5);
}

.instagram-link svg {
    width: 24px;
    height: 24px;
}

/* Donate knop - krachtig oranje/rood */
.donate-btn {
    display: inline-block;
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(211, 84, 0, 0.4);
    transition: all 0.3s ease;
    border: 2px solid #d35400;
    cursor: pointer;
}

.donate-btn-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.donate-photo-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    position: relative;
}

.donate-photo-strip img {
    width: 38px;
    height: 38px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    border: 2px solid rgba(255,255,255,0.9);
    transition: all 0.3s ease;
    position: relative;
}

.donate-photo-strip img:nth-child(1) {
    transform: rotate(-8deg);
    z-index: 1;
    margin-right: -8px;
}

.donate-photo-strip img:nth-child(2) {
    transform: rotate(5deg);
    z-index: 2;
    margin-right: -8px;
}

.donate-photo-strip img:nth-child(3) {
    transform: rotate(-3deg);
    z-index: 3;
    margin-right: -8px;
}

.donate-photo-strip img:nth-child(4) {
    transform: rotate(7deg);
    z-index: 4;
}

.donate-btn:hover .donate-photo-strip img {
    transform: rotate(0deg) scale(1.1);
    margin-right: 2px;
}

.donate-btn:hover .donate-photo-strip img:nth-child(1) {
    z-index: 5;
}

.donate-btn:hover .donate-photo-strip img:nth-child(2) {
    z-index: 6;
}

.donate-btn:hover .donate-photo-strip img:nth-child(3) {
    z-index: 7;
}

.donate-btn:hover .donate-photo-strip img:nth-child(4) {
    z-index: 8;
}

.donate-btn-text {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.donate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 84, 0, 0.6);
    background: linear-gradient(135deg, #d35400 0%, #c0392b 100%);
    border-color: #c0392b;
}

/* Donate Dialog */
.dialog-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.dialog-content {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    -webkit-overflow-scrolling: touch;
}

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

.dialog-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.dialog-close:hover {
    background: #f0f0f0;
    color: #333;
}

.dialog-content h3 {
    margin: 0 0 1.5rem 0;
    color: #2c3e50;
    font-size: 1.5rem;
}

.donate-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.donate-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.donate-option:hover {
    border-color: #e67e22;
    background: #fff5e6;
    transform: translateX(4px);
}

.option-icon {
    font-size: 2rem;
    width: 50px;
    text-align: center;
}

.option-content {
    flex: 1;
    text-align: left;
}

.option-content h4 {
    margin: 0 0 0.25rem 0;
    color: #2c3e50;
    font-size: 1.1rem;
}

.option-content p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.option-arrow {
    font-size: 1.5rem;
    color: #e67e22;
}

/* QR Code Section */
.qr-section {
    text-align: center;
    animation: slideUp 0.3s ease;
}

.qr-section h4 {
    margin: 0 0 1.5rem 0;
    color: #2c3e50;
    font-size: 1.2rem;
}

.back-btn {
    background: #f0f0f0;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: all 0.2s ease;
    color: #555;
}

.back-btn:hover {
    background: #e0e0e0;
}

.qr-placeholder {
    display: inline-block;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.qr-placeholder svg {
    display: block;
    border: 2px solid #e0e0e0;
}

.qr-info {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
}

.qr-info small {
    display: block;
    color: #666;
    font-weight: normal;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Mobile responsiveness for dialog */
@media (max-width: 600px) {
    .dialog-content {
        padding: 1.5rem;
        margin: 0.5rem;
        max-height: 95vh;
    }
    
    .dialog-content h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        padding-right: 2rem;
    }
    
    .donate-option {
        padding: 1rem;
    }
    
    .option-icon {
        font-size: 1.5rem;
        width: 40px;
    }
    
    .qr-placeholder svg {
        width: 180px;
        height: 180px;
    }
}

/* Main content */
main {
    max-width: 1000px;
    margin: -2rem auto 2rem;
    padding: 0 1.5rem 1.5rem;
}

/* Sections met mooie kaarten */
section {
    background: #fff;
    padding: 2rem 2.5rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
section:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

h2 {
    margin-top: 0;
    color: #2c3e50;
    font-size: 1.8rem;
    border-bottom: 3px solid #e67e22;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

/* Hero sectie voor Koens verhaal */
.hero-section {
    background: linear-gradient(135deg, #fff5e6 0%, #fff 100%);
    border-left: 5px solid #e67e22;
}

.verhaal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.verhaal-header h2 {
    margin: 0;
    flex: 1;
}

.toggle-verhaal {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.toggle-verhaal:hover {
    color: #e67e22;
    text-decoration: underline;
}

.toggle-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.verhaal-content {
    transition: all 0.3s ease;
}

.verhaal-content p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

.kosten-info {
    background: #fff9f0;
    border-left: 4px solid #e67e22;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
}

.kosten-info p {
    margin: 0.5rem 0;
}

.kosten-info strong {
    color: #d35400;
    font-size: 1.1rem;
}

.doel-statement {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e67e22;
    color: #2c3e50;
    font-size: 1.15rem;
}

.hoofddoel {
    font-size: 1.25rem;
    color: #d35400;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.koen-beschrijving {
    font-style: italic;
    background: #f8f9fa;
    padding: 1.2rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.call-to-action {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 500;
    margin: 1.5rem 0;
}

.samen-tekst {
    text-align: center;
    font-size: 1.3rem;
    color: #e67e22;
    margin: 2rem 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dank {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e0e0e0;
    color: #555;
    font-size: 1.05rem;
}

.dank em {
    color: #e67e22;
    font-weight: 600;
}

/* Foto Gallerij - Mobile First - Compact */
.foto-gallerij {
    background: #fff;
    padding: 1.5rem 1rem;
}

.foto-gallerij h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.gallerij-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.5rem;
    max-height: 400px;
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 8px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    /* iOS Safari scroll fix */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Desktop scrollbar */
.gallerij-grid::-webkit-scrollbar {
    width: 10px;
}

.gallerij-grid::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 5px;
}

.gallerij-grid::-webkit-scrollbar-thumb {
    background: #e67e22;
    border-radius: 5px;
}

.gallerij-grid::-webkit-scrollbar-thumb:hover {
    background: #d35400;
}

/* Scroll indicator voor mobile */
.foto-gallerij::after {
    content: '↓ Scroll voor meer foto\'s ↓';
    display: block;
    text-align: center;
    color: #999;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-style: italic;
}

@media (min-width: 600px) {
    .foto-gallerij::after {
        display: none;
    }
}

.foto-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: #f5f5f5;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    /* Fixed height voor iPhone compatibiliteit */
    width: 100%;
    height: 0;
    padding-bottom: 100%;
}

.foto-item-big {
    grid-column: span 2;
    grid-row: span 2;
    padding-bottom: 100%;
}

.foto-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.foto-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.foto-item:hover img {
    transform: scale(1.05);
}

/* Extra kleine schermen (iPhone SE, etc) */
@media (max-width: 380px) {
    .gallerij-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        max-height: 350px;
        gap: 0.4rem;
        padding: 0.75rem;
    }
}

/* Tablet en groter: meer kolommen */
@media (min-width: 600px) {
    .gallerij-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        max-height: 600px;
    }
    
    .foto-gallerij {
        padding: 2rem 1.5rem;
    }
}

/* Desktop: nog meer kolommen */
@media (min-width: 900px) {
    .gallerij-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .foto-gallerij {
        padding: 2rem 2rem;
    }
}

/* Eigen acties grid */
.intro-text {
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.eigen-acties-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.eigen-actie-card {
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

@media (max-width: 599px) {
    .eigen-acties-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .eigen-actie-card {
        padding: 1rem;
    }
    
    .actie-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .eigen-actie-card h3 {
        font-size: 1.1rem;
    }
    
    .datum-badge {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
}

.eigen-actie-card:hover {
    border-color: #e67e22;
    box-shadow: 0 6px 16px rgba(230, 126, 34, 0.2);
    transform: translateY(-4px);
}

.eigen-actie-card.expanded {
    border-color: #e67e22;
    background: #fff;
}

.actie-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.eigen-actie-card h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 700;
}

.datum-badge {
    background: #e67e22;
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.locatie {
    color: #555;
    margin: 0.5rem 0 1rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.actie-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px dashed #e0e0e0;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

.actie-details p {
    margin: 0.6rem 0;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
}

.actie-details strong {
    color: #2c3e50;
    font-weight: 600;
}

.actie-details a {
    color: #e67e22;
    font-weight: 600;
    text-decoration: none;
}

.actie-details a:hover {
    text-decoration: underline;
}

.meer-info {
    display: block;
    text-align: center;
    color: #e67e22;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e0e0e0;
}

/* Forms */
form label {
    display: block;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #555;
}
form input, form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font: inherit;
    transition: border-color 0.3s ease;
    margin-top: 0.25rem;
}
form input:focus, form textarea:focus {
    outline: none;
    border-color: #e67e22;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}
form button {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: #fff;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}
form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(230, 126, 34, 0.5);
    background: linear-gradient(135deg, #d35400 0%, #c0392b 100%);
}

/* Actie items (externe acties) */
.actie-item {
    border: 2px solid #e8e8e8;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.25rem;
    border-radius: 10px;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    transition: all 0.3s ease;
    position: relative;
}
.actie-item:hover {
    border-color: #e67e22;
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.2);
    transform: translateX(4px);
}

.actie-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: #fff;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(230, 126, 34, 0.3);
}

.actie-item h3 {
    margin: 0 0 0.75rem;
    font-size: 1.3rem;
    color: #2c3e50;
    font-weight: 700;
}
.actie-item h3 small {
    font-size: 0.85rem;
    color: #666;
    font-weight: normal;
}
.actie-item p {
    margin: 0.5rem 0;
    color: #555;
}
.contact {
    font-size: 0.85rem;
    color: #667eea;
    margin-top: 0.75rem;
}
.contact a {
    color: #e67e22;
    text-decoration: none;
    font-weight: 600;
}
.contact a:hover {
    text-decoration: underline;
}

/* Transparantie sectie highlight */
#transparantie {
    background: #ffffff;
    border-left: 5px solid #e67e22;
}
#transparantie #totaal-bedrag {
    font-size: 1.5rem;
    font-weight: bold;
    color: #c0392b;
}

/* Hints & states */
.hint {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
    margin-top: 0.5rem;
}
.loading {
    color: #7f8c8d;
    font-style: italic;
    text-align: center;
    padding: 1rem;
}
.error {
    color: #c0392b;
    background: #ffeaea;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #c0392b;
}
.form-toggle-card {
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin: 1.5rem 0;
}

.form-toggle-card:hover {
    border-color: #e67e22;
    box-shadow: 0 6px 16px rgba(230, 126, 34, 0.2);
    transform: translateY(-2px);
}

.form-toggle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-toggle-card h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 700;
    flex: 1 1 auto;
    min-width: 200px;
}

.form-status {
    color: #e67e22;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 599px) {
    .form-toggle-card {
        padding: 1rem;
    }
    
    .form-toggle-card h3 {
        font-size: 1.1rem;
    }
    
    .form-status {
        font-size: 0.8rem;
    }
}

.form-intro {
    color: #555;
    margin: 0.5rem 0 0;
    font-size: 0.95rem;
}

.form-embed {
    margin: 1.5rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    animation: slideDown 0.3s ease;
}

.form-embed iframe {
    display: block;
}

/* Kalender */
.calendar-container {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calendar-header h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.3rem;
}

.calendar-nav {
    background: #e67e22;
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.calendar-nav:hover {
    background: #d35400;
    transform: scale(1.1);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-day-header {
    text-align: center;
    font-weight: 600;
    color: #2c3e50;
    padding: 0.5rem;
    font-size: 0.85rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    position: relative;
    padding: 0.25rem;
    background: #fafafa;
    transition: all 0.2s ease;
}

.calendar-day.empty {
    border: none;
    background: transparent;
}

.calendar-day.has-event {
    background: #fff;
    border-color: #e67e22;
    cursor: pointer;
}

.calendar-day.has-event:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(230, 126, 34, 0.3);
}

.day-number {
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}

.event-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin: 2px 1px;
    display: inline-block;
}

.event-indicator.onze-actie {
    background: #e67e22;
}

.event-indicator.externe-actie {
    background: #3498db;
}

.calendar-legend {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
    font-size: 0.85rem;
    color: #555;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.5rem;
}

.legend-dot.onze-actie {
    background: #e67e22;
}

.legend-dot.externe-actie {
    background: #3498db;
}

.lijst-titel {
    color: #2c3e50;
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e67e22;
}

/* Footer Donate Section */
.footer-donate-section {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: #fff;
    text-align: center;
    padding: 3rem 2rem;
    margin-bottom: 0;
    border-radius: 12px;
}

.footer-donate-section h2 {
    color: #fff;
    border-bottom: none;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.footer-donate-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.footer-donate-section .donate-btn {
    background: #fff;
    color: #d35400;
    border-color: #fff;
}

.footer-donate-section .donate-btn:hover {
    background: #f0f0f0;
    border-color: #f0f0f0;
    transform: translateY(-3px);
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #bdc3c7;
    padding: 3rem 1.5rem 1.5rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.footer-section h4 {
    color: #fff;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-section p {
    margin: 0;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-section a:not(.footer-instagram) {
    color: #e67e22;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section a:not(.footer-instagram):hover {
    color: #d35400;
    text-decoration: underline;
}

.footer-social {
    margin-top: 0.5rem;
}

.footer-social .footer-instagram,
.footer-instagram {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff !important;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(188, 24, 136, 0.3);
}

.footer-social .footer-instagram:hover,
.footer-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(188, 24, 136, 0.5);
    color: #fff !important;
    text-decoration: none !important;
}

.footer-instagram svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.8;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }
}

/* Responsive */
@media (max-width: 768px) {
    header h1 { font-size: 2rem; }
    header p { font-size: 1rem; }
    section { padding: 1.5rem 1.25rem; }
    h2 { font-size: 1.5rem; }
    .donate-btn { padding: 0.8rem 1.8rem; font-size: 1rem; }
    .eigen-acties-grid { grid-template-columns: 1fr; }
    .calendar-container { padding: 1rem; }
    .calendar-day-header, .day-number { font-size: 0.75rem; }
    .calendar-grid { gap: 0.25rem; }
}
@media (min-width:800px) { .grid { display:grid; gap:1rem; grid-template-columns:repeat(2,1fr); } }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    cursor: default;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    color: #e67e22;
}
