/* ====================================
   NEPAL PAGE STYLES - Food2Grow
   Extra styling voor de Nepal-pagina.
   De algemene layout (page-hero, content-grid, etc.) komt uit waarom-we-dit-doen.css.
   ==================================== */

/* Schools Section */
.content-grid.reverse {
    margin-top: 40px;
}

/* Dividers op deze pagina net iets duidelijker zichtbaar */
main .info-divider {
    border-top-color: rgba(15, 23, 42, 0.14);
}

.schools-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-medium);
}

.schools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.school-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.school-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.school-image {
    background: linear-gradient(135deg, #e0e7ff 0%, #fae8ff 100%);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
    color: #94a3b8;
}

.school-info {
    padding: 2rem;
}

.school-info h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.school-location {
    color: var(--text-medium);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Location Icon Styling */
.location-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.school-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 12px;
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 1.75rem;
    color: var(--primary-green);
    margin-bottom: 0.25rem;
}

.stat-item span {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.school-info > p {
    color: var(--text-dark);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .schools-grid {
        grid-template-columns: 1fr;
    }
}
