/* Over-ons pagina specifieke stijlen */

.about-blob {
    position: absolute;
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background-color: #2D5F3F;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
}

.about-grid {
    position: relative;
    z-index: 10;
    display: grid;
    gap: 6rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-image-container {
    position: relative;
}

.about-image {
    width: 120%;
    margin-left: -15%;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(45, 95, 63, 0.2);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 5;
}

.about-image:hover {
    transform: scale(1.03) translateX(5px);
}

.about-image img {
    width: 100%;
    height: 32rem;
    object-fit: cover;
    display: block;
}

.about-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: linear-gradient(to bottom right, #2D5F3F, #3A6B4F);
    color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-badge-number {
    font-size: 2.25rem;
    font-weight: 700;
}

.about-badge-text {
    font-size: 0.875rem;
    opacity: 0.9;
}

.about-title {
    color: #171717;
    margin-bottom: 1.5rem;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.125rem;
    color: #404040;
    line-height: 1.625;
}

/* Team Sectie Styling */
.team-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    margin-top: 4rem;
}

.team-row {
    display: grid;
    grid-template-columns: 1fr 3fr; /* Foto ~25%, Tekst ~75% */
    gap: 3rem;
    align-items: center;
}

.team-row-reverse {
    grid-template-columns: 3fr 1fr; /* Tekst ~75%, Foto ~25% */
}

.profile-placeholder {
    width: 200px;
    height: 200px;
    background-color: #e5e5e5;
    border-radius: 50%;
    border: 4px solid #2D5F3F;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.profile-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-text-col h3 {
    font-size: 1.75rem;
    color: #2D5F3F;
    margin-bottom: 1rem;
}

.team-text-col p {
    font-size: 1.1rem;
    color: #525252;
    line-height: 1.7;
}

/* Mobiele weergave: alles onder elkaar */
@media (max-width: 768px) {
    .team-row, .team-row-reverse {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .team-row-reverse .team-text-col {
        order: 2; /* Tekst komt onder de foto op mobiel */
    }
    
    .team-row-reverse .team-image-col {
        order: 1;
    }
}