/* Hero Section */
.hero-section {
    padding: 60px 20px 60px;
    text-align: center;
    /* max-width: 900px; */
    margin: 0 auto;
}

.hero-section h1 {
    font-size: 48px;
    margin-bottom: 24px;
    line-height: 1.1;
    color: #667eea;
}

/* Layout Sections */
.section-wrapper {
    padding: 0px 20px;
    width: 100%;
    position: relative;
    background-color: #fff;
    /* Witte achtergrond voor deze pagina */
}

.container-grid {
    padding-left: 15%;
    padding-right: 15%;
    padding-top: 40px;
    padding-bottom: 40px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    /* Tekst links, foto rechts */
    gap: 60px;
    align-items: start;
    /* Uitlijnen aan de bovenkant bij lange tekst */
}

/* Text Styling */
.text-col h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 30px;
    color: #667eea;
}

.text-col p {
    font-size: 17px;
    line-height: 1.8;
}

/* Image Styling */
.image-col {
    position: relative;
    z-index: 1;
}

.image-wrapper {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    width: 100%;
    transform: translateZ(0);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Zorgt dat de foto netjes vult */
    object-position: top center;
    /* Focus op het gezicht bij portret */
    transition: transform 0.1s linear;
}

/* Animation Classes */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-up.in-view {
    opacity: 1;
    transform: translateY(0);
}