/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
}

h1 {
    font-size: 2.8rem;
    color: #2E8B57;
}

h2 {
    font-size: 2.2rem;
    color: #4ECDC4;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.8rem;
    color: #4ECDC4;
    margin-bottom: 0.8rem;
}

h4 {
    font-size: 1.4rem;
    color: #FFB74D;
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    color: white;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    color: white;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
}

/* Header */
.header {
    background: #2c3e50;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.logo i {
    font-size: 2rem;
    color: #4ECDC4;
}

.logo h1 {
    font-size: 1.8rem;
    color: white;
    margin: 0;
}

.logo span {
    font-size: 0.9rem;
    color: #E8F4FD;
    font-weight: 300;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    white-space: nowrap;
}

.hero-text h2 {
    font-size: 2rem;
    color: #FFD93D;
    margin-bottom: 1.5rem;
}

.countdown-text {
    font-size: 1.4rem;
    color: #E8F4FD;
    margin-bottom: 2rem;
    font-weight: 600;
}

.announcement {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.announcement i {
    font-size: 2rem;
    color: #4ECDC4;
    margin-bottom: 1rem;
}

.announcement p {
    color: white;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Interest Form */
.interest-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.interest-form h3 {
    color: #4ECDC4;
    text-align: center;
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

.interest-form > p {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row.full-width {
    grid-template-columns: 1fr;
}

.form-row input,
.form-row select {
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-row input:focus,
.form-row select:focus {
    outline: none;
    border-color: #4ECDC4;
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

.interest-form .btn {
    width: 100%;
    margin-top: 1rem;
    font-size: 1.2rem;
    padding: 15px;
}

.interest-form .btn i {
    margin-right: 10px;
}

/* Hero Image */
.hero-image {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #FFD93D, #FF9800);
    bottom: 20%;
    left: 10%;
    animation-delay: 4s;
}

.shape-4 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9C27B0, #673AB7);
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

.shape-5 {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #FF9800, #F57C00);
    top: 50%;
    left: 50%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    margin-top: 0.5rem;
}

/* What to Expect Section */
.what-to-expect {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature-icon {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature h4 {
    color: #333;
    margin-bottom: 1rem;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* Local Community Section */
.local-community {
    padding: 80px 0;
    background: white;
}

.community-content {
    max-width: 900px;
    margin: 0 auto;
}

.location-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.location-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.location-card:hover {
    border-color: #4ECDC4;
    transform: translateY(-5px);
}

.location-icon {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.location-icon i {
    font-size: 1.5rem;
    color: white;
}

.location-card h4 {
    color: #333;
    margin-bottom: 1rem;
}

.location-card p {
    color: #666;
    line-height: 1.6;
}

/* Programs Preview */
.programs-preview {
    padding: 80px 0;
    background: white;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.program-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    border-radius: 20px;
    color: white;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.program-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.program-icon i {
    font-size: 2rem;
    color: white;
}

.program-card h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.age-range {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.program-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-item i {
    font-size: 1.5rem;
    color: #4ECDC4;
    margin-top: 0.2rem;
}

.contact-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.quick-message {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 20px;
}

.quick-message h3 {
    color: #2E8B57;
    margin-bottom: 1.5rem;
}

.quick-message form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-message input,
.quick-message textarea {
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.quick-message input:focus,
.quick-message textarea:focus {
    outline: none;
    border-color: #4ECDC4;
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section .logo {
    margin-bottom: 1rem;
}

.footer-section .logo h4 {
    color: white;
    margin: 0;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 1.5rem;
}

.footer-info {
    margin: 1.5rem 0;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #bdc3c7;
}

.footer-item i {
    color: #4ECDC4;
    font-size: 1rem;
}

.service-keywords {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #34495e;
}

.service-keywords p {
    color: #95a5a6;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.service-keywords strong {
    color: #4ECDC4;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding-top: 80px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        min-height: calc(100vh - 80px);
        justify-content: center;
        align-items: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text h2 {
        font-size: 1.5rem;
    }

    .announcement {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .announcement p {
        font-size: 1rem;
    }

    .countdown-text {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .hero-image {
        height: auto;
        min-height: auto;
    }

    .interest-form {
        padding: 2rem 1.5rem;
        margin-top: 1rem;
    }

    .interest-form h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .community-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .location-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: calc(100vh - 80px);
        gap: 1.5rem;
    }

    .hero-text {
        flex-shrink: 1;
    }

    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.1;
    }

    .hero-text h2 {
        font-size: 1.2rem;
    }

    .countdown-text {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .announcement {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .announcement p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .hero-image {
        flex-shrink: 0;
        height: auto;
    }

    .interest-form {
        padding: 1.5rem;
        margin: 0;
    }

    .interest-form h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }    /* Hide floating shapes on very small screens to save space */
    .floating-shapes {
        display: none;
    }
}

/* Extra small devices (phones in portrait mode) */
@media (max-width: 375px) and (max-height: 667px) {
    .hero {
        min-height: 100vh;
    }

    .hero-content {
        min-height: calc(100vh - 80px);
        padding: 1rem 0;
    }

    .hero-text h1 {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }

    .countdown-text {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .announcement {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .announcement p {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .interest-form {
        padding: 1.2rem;
    }

    .interest-form h3 {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }

    .interest-form p {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for better UX */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header,
.feature,
.program-card,
.contact-item {
    animation: fadeInUp 0.6s ease forwards;
}
