
/* Custom CSS */
:root {
    --primary-color: #ff6b6b;
    --secondary-color: #4ecdc4;
    --accent-color: #45b7d1;
    --warm-orange: #a8e6cf;
    --soft-yellow: #fff176;
    --light-bg: #fdf6f0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, var(--light-bg) 0%, #fff 100%);
    overflow-x: hidden;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--warm-orange) 50%, var(--soft-yellow) 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.logo-placeholder {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 5px solid var(--secondary-color);
}

.main-title {
    font-size: 3.5rem;
    font-weight: bold;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.7), 1px 1px 3px rgba(0,0,0,0.8);
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
    color: #ffffff;
    -webkit-text-stroke: 1px rgba(0,0,0,0.3);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7), 1px 1px 3px rgba(0,0,0,0.5);
    color: #ffffff;
    font-weight: 600;
}

.hours-badge {
    background: rgba(255,255,255,0.9);
    color: #333;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    display: inline-block;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.language-section {
    background: var(--secondary-color);
    color: white;
    padding: 60px 0;
    position: relative;
}

.language-card {
    background: white;
    color: var(--secondary-color);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    margin: 20px 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.language-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.language-flag {
    font-size: 3rem;
    margin-bottom: 15px;
}

.programs-section {
    padding: 80px 0;
    background: white;
}

.program-card {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: white;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    margin: 20px 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: sparkle 4s linear infinite;
}

@keyframes sparkle {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.program-card:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.program-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.program-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.contact-section {
    background: linear-gradient(135deg, var(--primary-color), var(--warm-orange));
    color: white;
    padding: 80px 0;
}

.contact-card {
    background: rgba(255,255,255,0.15);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
    margin: 20px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin: 20px 0;
    font-size: 1.2rem;
}

.contact-icon {
    font-size: 2rem;
    margin-right: 20px;
    color: var(--soft-yellow);
}

.cta-button {
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 20px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    margin: 30px 10px;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    filter: brightness(1.1);
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float-shapes 8s ease-in-out infinite;
}

.shape:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float-shapes {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    margin: 20px auto;
    border-radius: 3px;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 1.6rem;
    }
    
    .hours-badge {
        font-size: 1.4rem;
        padding: 18px 25px;
    }
    
    .program-card {
        margin: 10px 0;
    }
    
    .program-title {
        font-size: 2rem;
    }
    
    .contact-item {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .cta-button {
        font-size: 1.6rem;
        padding: 18px 35px;
    }
}
