/* ============================================
   OVER ONS - STYLING
   ============================================ */

/* 1. Page Header (Subpagina Hero) */
.page-header {
    /* We halen de afbeelding en de gradient weg */
    /* background-image: ... */
    
    /* En vervangen dit door een vaste kleur */
    background-color: var(--primary-color); /* Gebruikt je standaard groene kleur */
    
    /* OF, als de variabele niet werkt, gebruik de hardcoded kleur: */
    /* background-color: #4a7c59; */

    /* Deze regels voor afbeeldingen zijn nu ook overbodig en mogen weg:
    background-size: cover;
    background-position: center; 
    */
    
    padding: 100px 20px;
    text-align: center;
    color: white; /* Tekst blijft wit voor goed contrast */
    margin-bottom: 0;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.page-header .subtitle {
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
}

/* 2. About Section (Grid) */
.about-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Foto Styling */
.profile-frame {
    position: relative;
    padding: 15px;
    border: 1px solid var(--border-medium);
    background: white;
    box-shadow: var(--shadow-md);
    transform: rotate(-2deg); /* Speels effect */
    transition: transform 0.3s ease;
}

.profile-frame:hover {
    transform: rotate(0deg);
}

.profile-img {
    width: 100%;
    height: auto;
    display: block;
    /* Sepia filter voor die ambachtelijke look */
    filter: sepia(10%) contrast(105%); 
}

/* Tekst Styling */
.text-col h2 {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.divider-small {
    width: 60px;
    height: 3px;
    background-color: #d4af37; /* Goud accent */
    margin-bottom: 25px;
}

.text-col p {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.signature-block {
    margin-top: 30px;
    font-family: 'Playfair Display', serif;
}

.signature-block .greeting {
    font-style: italic;
    margin-bottom: 5px;
    color: var(--text-light);
}

.signature-block h3 {
    color: var(--primary-dark);
    font-size: 1.4rem;
}

/* 3. Values Section (Icoontjes) */
.values-section {
    background-color: var(--primary-lighter); /* Heel lichtgroen */
    padding: 60px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.value-item .icon-box {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-sm);
    color: var(--primary-color);
    font-size: 1.8rem;
}

.value-item h4 {
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.value-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    max-width: 250px;
    margin: 0 auto;
}

/* 4. Mission Section */
.mission-section {
    padding: 80px 0;
    text-align: center;
    background: white;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.quote-icon {
    font-size: 2rem;
    color: #d4af37; /* Goud */
    margin-bottom: 20px;
    opacity: 0.5;
}

.mission-text {
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Mobiel aanpassingen */
@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
}