/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Touch-friendly improvements for mobile */
@media (max-width: 768px) {
    .btn,
    .tab-btn,
    .nav-menu a,
    .read-more,
    .footer-links a,
    .footer-programs a,
    .footer-legal a,
    .social-links a {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hamburger {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        min-height: 44px;
    }
    
    /* Prevent zoom on input focus */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px;
    }
}

body {
    font-family: 'Fredoka', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    --yellow: #FFD700;
    --pink: #FF69B4;
    --purple: #8A2BE2;
    --blue: #00CED1;
    --green: #32CD32;
    --red: #FF4500;
    --orange: #FF8C00;
    --black: #000000;
    --white: #FFFFFF;
    --gray: #F5F5F5;
    --dark-gray: #666;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.logo-shapes {
    position: relative;
    width: 60px;
    height: 60px;
}

.logo-shapes .shape {
    position: absolute;
    border-radius: 50%;
}

.logo-shapes .yellow-circle {
    width: 40px;
    height: 40px;
    background: var(--yellow);
    top: 10px;
    left: 10px;
    z-index: 1;
}

.logo-shapes .pink-blob {
    width: 35px;
    height: 35px;
    background: var(--pink);
    top: 5px;
    left: 20px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    z-index: 2;
}

.logo-shapes .purple-triangle {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid var(--purple);
    top: 15px;
    left: 25px;
    z-index: 3;
}

.logo-shapes .blue-triangle {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 25px solid var(--blue);
    top: 20px;
    left: 15px;
    z-index: 4;
}

.logo-shapes .green-splatter {
    width: 20px;
    height: 20px;
    background: var(--green);
    top: 25px;
    left: 5px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    z-index: 5;
}

.logo-text {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--black);
    line-height: 1.2;
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.8);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--pink);
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--yellow), var(--pink), var(--purple));
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--black);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-shapes .shape {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.floating-shapes .yellow-circle {
    width: 120px;
    height: 120px;
    background: var(--yellow);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-shapes .pink-blob {
    width: 100px;
    height: 100px;
    background: var(--pink);
    top: 30%;
    right: 15%;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation-delay: 1s;
}

.floating-shapes .purple-triangle {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid var(--purple);
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.floating-shapes .blue-triangle {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid var(--blue);
    bottom: 20%;
    left: 20%;
    animation-delay: 3s;
}

.floating-shapes .green-splatter {
    width: 80px;
    height: 80px;
    background: var(--green);
    bottom: 30%;
    right: 10%;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation-delay: 4s;
}

.floating-shapes .red-semicircle {
    width: 60px;
    height: 30px;
    background: var(--red);
    top: 15%;
    right: 30%;
    border-radius: 60px 60px 0 0;
    animation-delay: 5s;
}

.floating-shapes .orange-streamer {
    width: 100px;
    height: 8px;
    background: var(--orange);
    top: 70%;
    left: 5%;
    border-radius: 4px;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 3px 3px 0px rgba(255, 255, 255, 0.8);
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-features .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--purple);
}

.hero-features .feature i {
    font-size: 2rem;
    color: var(--pink);
}

.hero-features .feature span {
    font-weight: 600;
    font-size: 1rem;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, var(--yellow), var(--pink));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--black);
    border: 3px solid var(--purple);
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.2);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--pink), var(--purple));
}

.btn-secondary:hover {
    background: var(--purple);
    color: var(--white);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.decorative-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow), var(--pink), var(--purple));
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--purple);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--gray) 0%, var(--white) 100%);
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 2rem;
    color: var(--pink);
    margin-bottom: 1rem;
}

.value-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.value-item p {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin: 0;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--gray) 0%, var(--white) 100%);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--dark-gray);
    font-weight: 600;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--yellow), var(--pink));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.image-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

/* Programs Section */
.programs {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--gray) 0%, var(--white) 100%);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.program-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--yellow), var(--pink), var(--purple));
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--blue), var(--green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.program-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
}

.program-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.program-features {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.program-features li {
    padding: 0.3rem 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 1.5rem;
}

.program-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: bold;
}

.program-age {
    background: linear-gradient(45deg, var(--purple), var(--pink));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* Teachers Section */
.teachers {
    padding: 6rem 0;
    background: var(--white);
}

.teachers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.teacher-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.teacher-card:hover {
    transform: translateY(-10px);
    border-color: var(--pink);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.teacher-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--yellow), var(--pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 3rem;
}

.teacher-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.teacher-card h4 {
    font-size: 1rem;
    color: var(--pink);
    margin-bottom: 1rem;
    font-weight: 600;
}

.teacher-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.teacher-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.teacher-credentials span {
    font-size: 0.9rem;
    color: var(--purple);
    font-weight: 600;
}

.teacher-credentials i {
    margin-right: 0.5rem;
    color: var(--pink);
}

/* Schedule Section */
.schedule {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--gray) 0%, var(--white) 100%);
}

.schedule-content {
    max-width: 800px;
    margin: 0 auto;
}

.schedule-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2rem;
    border: 2px solid var(--purple);
    background: transparent;
    color: var(--purple);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--purple);
    color: var(--white);
}

.schedule-tab-content {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.schedule-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray);
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-item .time {
    font-weight: 600;
    color: var(--purple);
    min-width: 150px;
    font-size: 0.9rem;
}

.schedule-item .activity {
    color: var(--dark-gray);
    font-size: 1rem;
}

/* News Section */
.news {
    padding: 6rem 0;
    background: var(--white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.news-date {
    background: linear-gradient(45deg, var(--purple), var(--pink));
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

.news-date .day {
    font-size: 1.5rem;
    font-weight: 700;
}

.news-date .month {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.news-content {
    padding: 1.5rem;
    flex: 1;
}

.news-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
}

.news-content p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--pink);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--purple);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--purple);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--gray);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--pink);
    margin-top: 0.2rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--dark-gray);
    line-height: 1.5;
}

.contact-form h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--purple);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--pink);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--black) 0%, #333 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo .logo-shapes {
    width: 50px;
    height: 50px;
}

.footer-logo .logo-shapes .yellow-circle {
    width: 30px;
    height: 30px;
    top: 10px;
    left: 10px;
}

.footer-logo .logo-shapes .pink-blob {
    width: 25px;
    height: 25px;
    top: 5px;
    left: 15px;
}

.footer-logo .logo-shapes .purple-triangle {
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 25px solid var(--purple);
    top: 12px;
    left: 20px;
}

.footer-logo span {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
}

.footer-links h4,
.footer-programs h4,
.footer-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--yellow);
}

.footer-links ul,
.footer-programs ul {
    list-style: none;
}

.footer-links li,
.footer-programs li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-programs a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-programs a:hover {
    color: var(--pink);
}

.footer-info p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--pink);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #999;
}

.footer-legal {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--pink);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-features {
        gap: 2rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .program-card {
        padding: 2rem 1.5rem;
    }
    
    .teachers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .teacher-card {
        padding: 1.5rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .news-card {
        flex-direction: column;
    }
    
    .news-date {
        min-width: auto;
        padding: 1rem;
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .schedule-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 200px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .schedule-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1.5rem 0;
    }
    
    .schedule-item .time {
        min-width: auto;
        font-size: 1rem;
    }
    
    .schedule-tab-content {
        padding: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal {
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .contact-item i {
        font-size: 1.2rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .about,
    .programs,
    .teachers,
    .schedule,
    .news,
    .contact {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .floating-shapes .shape {
        display: none;
    }
    
    .floating-shapes .yellow-circle,
    .floating-shapes .pink-blob {
        display: block;
        width: 60px;
        height: 60px;
    }
    
    .floating-shapes .pink-blob {
        width: 50px;
        height: 50px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-features .feature {
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .hero-features .feature i {
        font-size: 1.5rem;
    }
    
    .hero-features .feature span {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        max-width: 250px;
    }
    
    .program-card {
        padding: 1.5rem 1rem;
    }
    
    .program-card h3 {
        font-size: 1.3rem;
    }
    
    .program-card p {
        font-size: 0.9rem;
    }
    
    .program-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .teacher-card {
        padding: 1rem;
    }
    
    .teacher-card h3 {
        font-size: 1.1rem;
    }
    
    .teacher-card p {
        font-size: 0.9rem;
    }
    
    .teacher-image {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .news-card {
        flex-direction: column;
    }
    
    .news-date {
        min-width: auto;
        padding: 1rem;
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .news-date .day {
        font-size: 1.2rem;
    }
    
    .news-date .month {
        font-size: 0.8rem;
    }
    
    .news-content {
        padding: 1rem;
    }
    
    .news-content h3 {
        font-size: 1.1rem;
    }
    
    .news-content p {
        font-size: 0.9rem;
    }
    
    .tab-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        max-width: 150px;
    }
    
    .schedule-tab-content {
        padding: 1rem;
    }
    
    .schedule-item {
        padding: 1rem 0;
    }
    
    .schedule-item .time {
        font-size: 0.9rem;
    }
    
    .schedule-item .activity {
        font-size: 0.9rem;
    }
    
    .contact-item {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-item h4 {
        font-size: 1rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    .about,
    .programs,
    .teachers,
    .schedule,
    .news,
    .contact {
        padding: 3rem 0;
    }
    
    .about-content,
    .contact-content {
        gap: 1.5rem;
    }
    
    .values-grid {
        gap: 1rem;
    }
    
    .value-item {
        padding: 1rem;
    }
    
    .value-item h4 {
        font-size: 1rem;
    }
    
    .value-item p {
        font-size: 0.8rem;
    }
    
    .stats {
        gap: 1rem;
    }
    
    .stat {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-links h4,
    .footer-programs h4,
    .footer-info h4 {
        font-size: 1rem;
    }
    
    .footer-links a,
    .footer-programs a {
        font-size: 0.9rem;
    }
    
    .footer-info p {
        font-size: 0.9rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
    }
    
    .footer-legal {
        gap: 1rem;
    }
    
    .footer-legal a {
        font-size: 0.8rem;
    }
}

/* Extra Small Devices */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        max-width: 200px;
    }
    
    .program-card {
        padding: 1rem 0.8rem;
    }
    
    .program-card h3 {
        font-size: 1.1rem;
    }
    
    .program-card p {
        font-size: 0.8rem;
    }
    
    .program-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .teacher-card {
        padding: 0.8rem;
    }
    
    .teacher-card h3 {
        font-size: 1rem;
    }
    
    .teacher-card p {
        font-size: 0.8rem;
    }
    
    .teacher-image {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .news-content {
        padding: 0.8rem;
    }
    
    .news-content h3 {
        font-size: 1rem;
    }
    
    .news-content p {
        font-size: 0.8rem;
    }
    
    .tab-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
        max-width: 120px;
    }
    
    .schedule-tab-content {
        padding: 0.8rem;
    }
    
    .contact-item {
        padding: 0.6rem;
    }
    
    .contact-item h4 {
        font-size: 0.9rem;
    }
    
    .contact-item p {
        font-size: 0.8rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
    
    .about,
    .programs,
    .teachers,
    .schedule,
    .news,
    .contact {
        padding: 2rem 0;
    }
    
    .value-item {
        padding: 0.8rem;
    }
    
    .value-item h4 {
        font-size: 0.9rem;
    }
    
    .value-item p {
        font-size: 0.7rem;
    }
    
    .stat {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .footer-links h4,
    .footer-programs h4,
    .footer-info h4 {
        font-size: 0.9rem;
    }
    
    .footer-links a,
    .footer-programs a {
        font-size: 0.8rem;
    }
    
    .footer-info p {
        font-size: 0.8rem;
    }
    
    .social-links a {
        width: 30px;
        height: 30px;
    }
    
    .footer-legal a {
        font-size: 0.7rem;
    }
}
