/* Globale stijlen en lettertype */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f7f9fc;
    color: #333;
    margin: 0;
    padding: 20px;
}

/* Hoofdcontainer van de app */
.app-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header sectie */
.app-header {
    text-align: center;
    margin-bottom: 30px;
}

.app-header h1 {
    font-size: 2em;
    color: #1976d2;
}

.app-header p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
}

/* Flexbox container voor de kolommen */
.main-content {
    display: flex;
    gap: 30px; /* Ruimte tussen de kolommen */
    align-items: flex-start; /* Zorgt dat kolommen bovenaan uitlijnen */
}

/* Linker kolom (neemt 2/3 van de ruimte) */
.left-column {
    flex: 1; /* Geeft deze kolom meer breedte */
}

/* Rechter kolom (neemt 1/3 van de ruimte) */
.right-column {
    flex: 1;
}

/* Gedeelde stijl voor de blauwe informatieblokken */
.info-box {
    background: #eef3fa;
    border-radius: 10px;
    padding: 22px 28px;
    box-shadow: 0 1px 6px rgba(33, 150, 243, 0.08);
    margin-bottom: 30px;
    font-size: 0.9em; /* Iets kleiner lettertype */
    color: #333;
}

.info-box h2 {
    color: #0d47a1;
    margin-top: 0;
}

.info-box h3 {
    color: #1565c0;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 5px;
}

/* Stijl voor de antwoordenlijst */
.answers-list {
    margin: 18px 0;
    font-size: 0.9em;
    line-height: 1.8;
    list-style-type: none;
    padding-left: 0;
}

/* De stippellijn als scheiding in de lijst */
.divider-li {
    border-top: 1px dashed #ccc;
    padding-top: 10px;
    margin-top: 10px;
}

/* De geneste lijst met input van de vrouwen */
.nested-list {
    font-size: 0.9em;
    color: #555;
    margin-top: 8px;
    list-style-type: circle;
    padding-left: 25px;
}

/* Sectie met locaties */
.locations-section {
    margin: 24px 0 18px 0;
}

.locations-section ul {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 0.9em;
    list-style-type: '📍'; /* Leuke emoji als list-style */
    padding-left: 25px;
}

.locations-section li {
    padding-left: 10px;
    margin-bottom: 5px;
}

/* Footer-sectie onderaan */
.app-footer {
    text-align: center;
    margin-top: 24px;
    line-height: 1.7;
}

.highlight-red {
    color: red;
    font-weight: 600;
}

.highlight-blue {
    color: #1976d2;
    font-weight: 600;
}

/* --- Stijlen voor de Modal --- */

/* De knop die eruitziet als een link */
.button-link {
    background: none;
    border: none;
    color: #1976d2;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    padding: 0;
    text-decoration: underline;
    font-family: 'Poppins', sans-serif; /* Zorgt voor hetzelfde lettertype */
}

/* De modal achtergrond (overlay) - GECORRIGEERD */
.modal {
    display: none; /* BELANGRIJK: Zorgt dat de modal standaard verborgen is */
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; 
    background-color: rgba(0, 0, 0, 0.85); 
    /* De flexbox-eigenschappen blijven behouden voor wanneer de modal zichtbaar wordt */
    align-items: center;
    justify-content: center;
}

/* De afbeelding in de modal */
.modal-content {
    display: block;
    margin: auto;
    max-width: 80%;
    max-height: 90vh; /* Maximale hoogte is 90% van de vensterhoogte */
    /* Animatie voor een subtiel zoom-effect */
    animation: zoomIn 0.3s ease-out;
}

/* De sluitknop (het kruisje) */
.close-button {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close-button:hover {
    color: #bbb;
}

/* Animatie keyframes */
@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* --- Stijlen voor Mobiele Apparaten --- */

/* Dit geldt voor alle schermen die 768px of smaller zijn (de meeste tablets en telefoons) */
@media (max-width: 768px) {
  
  /* We passen de flex-richting van de hoofdcontainer aan */
  .main-content {
    /* Standaard is de richting 'row' (naast elkaar), we veranderen dit naar 'column' (onder elkaar) */
    flex-direction: column;
  }

  /* Optioneel: iets minder grote titel op mobiel voor een betere balans */
  .app-header h1 {
    font-size: 1.6em;
  }

}