/* Schools Section Styles */

.schools-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.schools-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.schools-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.schools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.school-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.school-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.school-image {
    height: 200px;
    overflow: hidden;
}

.school-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.school-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.school-placeholder span {
    font-size: 4rem;
    color: white;
    font-weight: bold;
}

.school-content {
    padding: 1.5rem;
}

.school-content h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 0.75rem;
}

.school-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.school-location,
.school-curriculum,
.school-ages {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.school-location .icon,
.school-curriculum .icon,
.school-ages .icon {
    font-size: 1rem;
}

.school-link {
    display: inline-block;
    margin-top: 1rem;
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.school-link:hover {
    color: #764ba2;
}

.no-schools {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.no-schools p {
    color: #666;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .schools-section h2 {
        font-size: 2rem;
    }

    .schools-grid {
        grid-template-columns: 1fr;
    }

    .school-image {
        height: 180px;
    }
}
