body {
    font-family: 'Poiret One', sans-serif;
    background-color: #ffffff;
    color: #000000;
    font-weight: 400;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

body.fade-in {
    opacity: 1;
}

body.fade-out {
    opacity: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.header {
    display: flex;
    justify-content: center; /* Changed from flex-end to center */
    align-items: center;
    padding-top: 1rem;
    padding-right: 2rem;
    font-size: 1.5rem; /* Adjusted font-size for navigation */
    opacity: 0.6;
}

.nav-link {
    margin: 0 1.25rem; /* Centering with a horizontal margin */
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    text-decoration: underline;
    opacity: 1;
}

.main-heading-image {
    display: block;
    margin: 0 auto;
    text-align: center;
    margin-top: 2rem; /* Reduced margin to bring it closer to the text */
    margin-bottom: 2rem;
}

.main-heading {
    font-family: 'Poiret One', sans-serif;
    font-size: 4rem;
    font-weight: 500;
    text-align: center;
    margin-top: 5rem;
    margin-bottom: 5rem;
    letter-spacing: -2px; /* Decreased letter spacing to bring text closer */
}

.index{
    background-color: #daecf7;
}

.content-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem; /* Reduced gap between the image and the text content */
    color: #1a426d;
}

h1{
    color: #1a426d;
}

/* Styles for the new "Wie zijn we?" page */
.content-section-who-we-are {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem; /* Spacing between the person cards */
}

.person-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.person-photo {
    width: 400px; /* Set a fixed size for the photos */
    height: auto;
    border-radius: 50%; /* Optional: for a circular photo */
    margin-bottom: 1rem;
}

.person-name-link {
    text-decoration: underline;
    color: red;
    font-weight: 500; /* Adjusted to be less bold */
    font-size: 1.8rem;
}

/* New styles for liesbeth.html */
.content-section-liesbeth {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Uitgelijnd naar links */
    justify-content: center;
    gap: 1rem; /* De gap van 4rem is veranderd naar 1rem */
    padding: 0 5rem;
}

.text-and-image-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: left;
    gap: 4rem;
}

.text-container-below-image {
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* Aangepaste kleine gap */
}

.paragraph-with-image {
    width: 50%;
}

.text-content-liesbeth {
    font-size: 1.2rem;
    line-height: 1.5;
}

.text-content-liesbeth-ul {
    font-size: 1.2rem;
    list-style: none; /* Removed default list style */
    padding: 0;
}

.text-content-liesbeth-ul li {
    position: relative;
    padding-left: 40px; /* Space for the custom bullet */
    margin-bottom: 0.5rem; /* Spacing between list items */
}

.text-content-liesbeth-ul li::before {
    content: "-"; /* Custom bullet character */
    position: absolute;
    left: 20px; /* Aangepast naar 20px om meer in te springen */
    color: #1a426d;
    font-weight: bold;
}

.image-container-liesbeth {
    width: 40%;
    text-align: center;
}

.person-photo-liesbeth {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    width: 480px; /* Width set to 480px */
    height: 340px; /* Height set to 340px */
}

.image-container {
    /* Adjusted the container to be the same size as the logo and align with text */
    width: 350px; 
    height: auto;
}

.image-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 50%;
    border: 2px solid #1a426d;
}

.logo {
    position: static; /* Changed to static to flow normally */
    transform: none; /* Removed transform */
    width: 100%;
    height: auto;
}

.text-content {
    width: 500px;
    font-size: 1.4rem; /* Adjusted font-size to make the text smaller */
    line-height: 1.2; /* Adjusted line-height to make the text lines closer */
}

.text-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.text-content li {
    margin-bottom: 0.8rem; /* Increased margin to create more space between bullet points */
    position: relative;
    padding-left: 0.5rem;
    font-weight: normal; /* Made the text in the list item normal */
}

.bold-text {
    font-weight: bold; /* Added a new class for bold text */
}

.text-content li::before {
    content: "•";
    position: absolute;
    left: -1rem; /* Adjusted to increase the space between the bullet and the text */
    top: 0;
    color: #1a426d;
    font-size: 1.4rem;
    line-height: 1;
    font-weight: bold; /* Make the bullet bold */
}

/* Added styles for the contact page */
.contact-info-section {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem;
    margin-top: 5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .contact-info-section {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-card {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    width: 100%;
    min-width: 250px;
    box-shadow: none;
    text-align: left; /* Kaartjes zijn links uitgelijnd */
}

/* De font-size van de kopjes is vergroot */
.contact-heading {
    font-size: 1.75rem; 
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #1a426d;
}

/* Nieuwe regel om de font-size van de tekst in de kaartjes te vergroten */
.contact-card p {
    font-size: 1.2rem;
}