@charset "utf-8";

.project-container {
    width: 100%;
    margin-top: 100px;    /* Ruimte boven het blok */
    margin-bottom: 100px; /* Ruimte onder het blok */
    margin-left: auto;   /* Centreren */
    margin-right: auto;  /* Centreren */
    font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
}

.project-card {
    display: flex;
    flex-direction: row;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 5px 5px 5px 0px rgba(198,189,189,0.75);
}

.project-image-side {
    flex: 1;
    display: flex;
    min-height: 500px; /* Iets hoger gemaakt voor de extra witruimte */
}

.project-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-text-side {
    flex: 1;
    padding: 30px 40px; /* 30px boven/onder, 40px links/rechts */
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Zorgt dat de titel bovenaan begint */
}

.project-text-side h2 {
    font-family: Verdana, Geneva, sans-serif;
    color: #58b15d;
    margin-top: 0; /* Geen marge boven de titel */
    margin-bottom: 30px; /* Witruimte onder de titel */
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
    border-bottom: 2px solid #58b15d;
    padding-bottom: 10px;
}

.project-quote {
    font-family: Verdana, Geneva, sans-serif;
    font-style: italic;
    font-weight: 800;
    font-size: 22px; /* Iets groter gemaakt */
    color: #8c7373;
    margin-bottom: 25px; /* Witruimte onder de quote */
    line-height: 1.4;
    text-transform: uppercase;
}

.project-bestemming {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}

.project-voordelen {
    font-size: 15px;
    color: #58b15d;
    margin-bottom: 40px; /* Extra witruimte voor de knop */
    padding-left: 20px;
    line-height: 1.8;
    list-style-type: disc;
}

.button-container {
    text-align: center;
    margin-top: auto; /* Duwt de knop naar de bodem van de beschikbare ruimte */
    padding-bottom: 10px;
}

.steun-knop {
    background-color: #58b15d;
    color: #FFFFFF !important;
    padding: 18px 50px; /* Iets grotere knop */
    text-decoration: none;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 10px;
    display: inline-block;
    transition: background 0.3s;
}

.steun-knop:hover {
    background-color: #8c7373;
}

@media (max-width: 900px) {
    .project-card { flex-direction: column; }
    .project-image-side { min-height: 300px; }
}