/* Basis instellingen */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: #fdfaf5;
    color: #4a3728;
}

/* Nieuwsbalk met Animatie */
.news-bar {
    background-color: #c19a6b;
    color: #3d2b1f;
    padding: 12px 0;
    font-size: 1rem;
    font-weight: 600;
    overflow: hidden; 
    white-space: nowrap;
    border-bottom: 2px solid rgba(61, 43, 31, 0.2);
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
}

.news-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 60s linear infinite;
}

.news-content span {
    padding-right: 50px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.news-bar strong {
    background: #3d2b1f;
    color: #c19a6b;
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

header {
    background-color: #3d2b1f;
    color: #fdfaf5;
    padding: 1.5rem 2rem;
    border-bottom: 5px solid #c19a6b;
}

.header-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.site-logo { height: 140px; width: auto; display: block; }

.header-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin: 0;
}

.tagline { font-style: italic; color: #c19a6b; }

/* Kaartjes (Grid) */
.welcome-section { max-width: 1100px; margin: 4rem auto; padding: 0 1rem; }

.card-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 25px;
    justify-content: center;
}

.card { 
    background: white; 
    border-radius: 12px; 
    overflow: hidden; 
    box-shadow: 0 8px 25px rgba(0,0,0,0.08); 
    transition: transform 0.3s; 
    cursor: pointer; 
    border: 1px solid #eee; 
    display: flex;
    flex-direction: column;
}

.card:hover { transform: translateY(-5px); }
.card-image { height: 180px; background-size: cover; background-position: center; }

/* Achtergronden kaartjes - Controleer of dit .jpg of .png is! */
.dart-bg { background-image: url('img_darten/foto.png'); } /* Aangepast naar .jpg voor consistentie */
.terras-bg { background-image: url('img_terras/foto.jpg'); }
.muziek-bg { background-image: url('img_muziek/foto.jpg'); }
.avonden-bg { background-image: url('img_avonden/foto.jpg'); }
.klaverjas-bg { background-image: url('img_klaverjassen/foto.jpg'); }
.menu-bg { background-image: url('img_menukaart/foto.jpg'); }

.card-content { padding: 1.5rem; text-align: center; flex-grow: 1; }
.card-content h3 { font-family: 'Playfair Display', serif; margin: 0 0 10px; }

/* Contact Sectie & Maps */
.info-section { background-color: #fff; padding: 4rem 1rem; }
.info-grid { max-width: 900px; margin: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }

.info-card h3 { 
    border-bottom: 2px solid #c19a6b; 
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem; 
    padding-bottom: 5px;
    width: fit-content;
}

.info-card h3 i { color: #c19a6b; }
.info-card p { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.info-card i { color: #c19a6b; width: 25px; text-align: center; font-size: 1.1rem; flex-shrink: 0; }

.full-width-map { max-width: 900px; margin: 40px auto 0; padding: 0 1rem; transition: transform 0.3s ease; }
.full-width-map:hover { transform: scale(1.01); }

/* De Tabel */
.tijden-table { width: 100%; border-collapse: collapse; }
.tijden-table td { padding: 12px 0; border-bottom: 1px solid #f4f4f4; vertical-align: middle; }
.tijden-table td.tijd { text-align: right; font-weight: 600; color: #3d2b1f; white-space: nowrap; }

/* Links & Footer Credits */
a { color: #8b5e3c; text-decoration: none; font-weight: 600; transition: color 0.3s; }
a:hover { color: #3d2b1f; }

.designer-credits { margin-top: 15px; display: block; }

footer {
    text-align: center;
    padding: 1.5rem 1rem 70px !important; 
    background-color: #3d2b1f;
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    line-height: 1.5;
}

/* WhatsApp Zwevende Knop */
.whatsapp-sticky {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    background-color: #25D366 !important;
    color: #fff !important;
    padding: 8px 16px !important;
    border-radius: 30px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    z-index: 9999 !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}
.whatsapp-sticky i { font-size: 24px !important; }
.whatsapp-sticky:hover { transform: scale(1.08) !important; background-color: #1ebe57 !important; }

/* Lightbox Styles (Popup) */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    background: white;
    margin: 5% auto;
    padding: 20px; /* Iets minder padding voor meer fotoruimte op mobiel */
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    position: relative;
    text-align: center;
    animation: slideUp 0.3s ease-out;
}

/* Animatie voor de pop-up */
@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Mobiele aanpassingen */
@media (max-width: 768px) {
    .header-container { flex-direction: column; text-align: center; gap: 15px; }
    .info-grid { grid-template-columns: 1fr; gap: 30px; }
    .site-logo { 
        height: 120px; 
        width: auto; 
        border-radius: 15px; 
        box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
    }
}