/* assets/css/styles.css */

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: #f9f9f9;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Comic Neue', cursive;
    font-weight: 700;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #FFEAA7 0%, #FFF6D5 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.fun-text {
    font-size: 2rem;
    color: #FF6B6B;
    display: block;
}

.main-title {
    font-size: 4rem;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4, #45B7D1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    animation: titleFloat 3s ease-in-out infinite;
}

.hero-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.hero-buttons .btn-fun {
    margin-right: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.hero-buttons .btn-fun:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FF6B6B, #4ECDC4);
    border-radius: 2px;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card:before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.2;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card:hover:before {
    transform: scale(3);
}

.kids-card:before { background: #FF6B6B; }
.parents-card:before { background: #4ECDC4; }
.teachers-card:before { background: #45B7D1; }

.feature-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background: linear-gradient(45deg, #FF6B6B, #FF8E8E);
    border-radius: 50%;
    margin-bottom: 20px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(255,107,107,0.3);
}

.parents-card .feature-icon {
    background: linear-gradient(45deg, #4ECDC4, #6EE7E7);
    box-shadow: 0 10px 20px rgba(78,205,196,0.3);
}

.teachers-card .feature-icon {
    background: linear-gradient(45deg, #45B7D1, #6EC8E7);
    box-shadow: 0 10px 20px rgba(69,183,209,0.3);
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.feature-list li {
    padding: 8px 0;
    color: #666;
}

.feature-list li i {
    margin-right: 10px;
    color: #FF6B6B;
}

.btn-explore {
    background: linear-gradient(45deg, #FF6B6B, #FF8E8E);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-explore:hover {
    transform: translateX(5px);
    color: white;
    box-shadow: 0 5px 15px rgba(255,107,107,0.4);
}

/* Activities Section */
.activities-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.activity-item {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    transition: all 0.3s;
    cursor: pointer;
}

.activity-item:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
}

.activity-item i {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #FFD700;
}

.activity-item h4 {
    font-size: 1.2rem;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

.testimonial-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.testimonial-card h4 {
    margin-bottom: 5px;
    color: #333;
}

.testimonial-card .role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: #555;
    font-style: italic;
    margin-bottom: 15px;
}

.stars {
    color: #FFD700;
}

/* Page Hero */
.page-hero {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Page */
.our-story {
    padding: 80px 0;
}

.story-highlights {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.highlight {
    text-align: center;
}

.highlight .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #FF6B6B;
}

.highlight .label {
    color: #666;
}

.our-values {
    padding: 60px 0;
    background: #f5f5f5;
}

.value-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 3rem;
    color: #FF6B6B;
    margin-bottom: 15px;
}

.team-section {
    padding: 80px 0;
}

.team-card {
    text-align: center;
    margin-bottom: 30px;
}

.team-card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 5px solid white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.team-card:hover img {
    transform: scale(1.05);
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-info {
    padding-right: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.info-item i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: linear-gradient(45deg, #FF6B6B, #FF8E8E);
    color: white;
    border-radius: 50%;
    margin-right: 20px;
    font-size: 1.2rem;
}

.info-item h4 {
    margin-bottom: 5px;
    color: #333;
}

.info-item p {
    color: #666;
    margin: 0;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: #FF6B6B;
    box-shadow: 0 0 0 0.2rem rgba(255,107,107,0.25);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.btn-send {
    background: linear-gradient(45deg, #FF6B6B, #FF8E8E);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
}

.btn-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,107,0.4);
    color: white;
}

.map-section iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Animations */
@keyframes titleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .fun-text {
        font-size: 1.5rem;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .hero-buttons .btn-fun {
        display: block;
        margin: 10px 0;
    }
    
    .story-highlights {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 40px;
    }
}