/*
Theme Name: Blocksy School Child
Theme URI: https://example.com
Description: A colorful school child theme for Blocksy
Author: Your Name
Template: blocksy
Version: 1.0
*/

@import url("../blocksy/style.css");

/* GLOBAL SCHOOL STYLE */

body {
    font-family: 'Poppins', sans-serif;
    background: #f9fbff;
}

/* HERO SECTION */
.school-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* BUTTONS */
.school-btn {
    background: #ff6b6b;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.school-btn:hover {
    background: #ff3b3b;
}

/* CARDS */
.school-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.school-card:hover {
    transform: translateY(-5px);
}

/* COLORFUL FOOTER */
footer {
    background: linear-gradient(135deg, #ff9a9e, #fad0c4, #fbc2eb);
    color: #333;
    padding: 40px 20px;
    text-align: center;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
    .school-hero {
        padding: 80px 15px;
    }
}