/**


 _____          _           
|_   _|        | |          
  | | _ __   __| | _____  __
  | || '_ \ / _` |/ _ \ \/ /
 _| || | | | (_| |  __/>  < 
 \___/_| |_|\__,_|\___/_/\_\
                            
                            
*/
/* ----------------------------------------------------------------- SECTION 1 */
.section-1 {
    background-color: #22333b00;
    color: white;
    padding: 10% 0;
    text-align: center;
}

.section-1 blockquote {
    font-size: 5em;
    font-style: italic;
    margin-bottom: 0%;
}

.section-1 p {
    color: white;
    padding-bottom: 10%;
}

/* ----------------------------------------------------------------- SECTION 2 */
.image-row {
    display: flex;
    justify-content: center;
    gap: 5%;
    flex-wrap: wrap;
}

.image-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.image-row img {
    width: 300px;
    height: 100%;
    object-fit: cover;
    border-radius: 1%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: block;
}

/* Animatie */
.section-2 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.section-2.visible {
    opacity: 1;
    transform: translateY(0);
}

/* galerij hover */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    color: black;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    border-radius: 1%;
}

.image-container:hover .overlay {
    opacity: 1;
}


/* ----------------------------------------------------------------- SECTION 3 */
.section-3 {
    background-color: #f4f4f4;
    padding: 5% 0;
    border-radius: 1%;
    margin: 5%;
}

.container {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.row {
    display: flex;
    justify-content: center;
    gap: 10%;
    margin-bottom: 0%;
}

.col {
    flex: 1;
    text-align: center;
    max-width: 50%;
    margin: 0 auto;
}

.spacer {
    height: 50px;
}

/* Animatie */
.section-3 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.section-3.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ------------------------------ MOBILE-FRIENDLY STYLES ------------------------------ */

/* Als het scherm kleiner is dan 768px (tablet/telefoon) */
@media (max-width: 768px) {

    /* Section 1 */
    .section-1 {
        margin-top: 30%;
    }

    .section-1 blockquote {
        font-size: 3em;
    }

    .section-1 p {
        font-size: 1em;
        padding-bottom: 5%;
    }

    /* Section 2 */
    .image-row {
        flex-direction: column;
        gap: 2%;
    }

    .image-row img {
        width: 80% !important;
        height: auto;
    }

    /* Section 3 */
    .container {
        width: 90%;
    }

    .row {
        flex-direction: column;
        gap: 2%;
    }

    .col {
        max-width: 100%; 
        margin: 0 0 10px 0;
    }
}

/* Als het scherm kleiner is dan 480px (mobiel) */
@media (max-width: 480px) {

    /* Section 1 */
    .section-1 blockquote {
        font-size: 2.5em;
    }

    .section-1 p {
        font-size: 0.9em;
    }

    /* Section 2 */
    .image-row img {
        width: 100%;
        height: auto;
    }

    /* Section 3 */
    .container {
        width: 95%;
    }

    .row {
        gap: 5%; 
    }
}

