/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2D3748;
    background-color: #FAFAFA;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #4A5568;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 127, 127, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo .logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FF7F7F;
    display: block;
}

.nav-logo .logo-subtitle {
    font-size: 0.75rem;
    color: #B19CD9;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #4A5568;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF7F7F, #B19CD9);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #FF7F7F;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #FF7F7F;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #FF7F7F, #FFB6C1);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 127, 127, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 127, 127, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #FFF5F5 0%, #F0E6FF 100%);
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 1rem;
}

.hero-title .highlight {
    color: #FF7F7F;
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #B19CD9;
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-cta {
    margin-bottom: 2rem;
}

.cta-note {
    margin-top: 1rem;
    font-size: 1rem;
    color: #FF7F7F;
    font-weight: 600;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 2rem 0;
}

.hero-logo-image {
  width: 200%;
  height: auto;
  object-fit: contain;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.logo-container {
  position: relative;
  width: 200px;
  height: 200px;
}

@media (max-width: 768px) {
  .logo-container {
    width: 150px;
    height: 150px;
  }

  .logo-text-hero {
    right: -70px;
    font-size: 0.7rem;
  }
}
@media (max-width: 480px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .logo-container {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }

  .logo-text-hero {
    position: static;
    transform: none;
    margin-top: 1rem;
  }
}

.logo-figure {
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.figure-body {
    width: 35px;
    height: 45px;
    background: linear-gradient(135deg, #B19CD9, #DDD6FE);
    border-radius: 18px;
    position: relative;
}

.figure-head {
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, #B19CD9, #DDD6FE);
    border-radius: 50%;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.figure-arms {
    position: absolute;
    top: 6px;
    left: -9px;
    right: -9px;
    height: 18px;
    background: linear-gradient(135deg, #B19CD9, #DDD6FE);
    border-radius: 9px;
}

.logo-star {
    position: absolute;
    top: 15px;
    right: 25px;
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: twinkle 2s ease-in-out infinite alternate;
    z-index: 4;
}

.logo-book {
    position: absolute;
    top: 40px;
    right: 15px;
    width: 22px;
    height: 16px;
    background: linear-gradient(135deg, #FF7F7F, #FFB6C1);
    border-radius: 3px;
    z-index: 2;
}

.logo-book::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: white;
    border-radius: 2px;
}

.logo-ball {
    position: absolute;
    bottom: 50px;
    left: 15px;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #98E4D6, #BEE3F8);
    border-radius: 50%;
    z-index: 2;
}

.logo-ball::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 5px;
    height: 5px;
    background: white;
    border-radius: 50%;
}

.logo-laptop {
    position: absolute;
    bottom: 25px;
    right: 20px;
    width: 25px;
    height: 16px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 3px;
    z-index: 2;
}

.logo-laptop::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 5px;
    background: #2D3748;
    border-radius: 2px;
}

.logo-text-hero {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
    z-index: 1;
}

.logo-text-hero .logo-main {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #FF7F7F;
    line-height: 1.1;
    margin-bottom: 2px;
}

.logo-text-hero .logo-sub {
    display: block;
    font-size: 0.5rem;
    color: #B19CD9;
    font-weight: 500;
    line-height: 1.1;
}

@keyframes twinkle {
    0% { transform: scale(1) rotate(0deg); opacity: 0.8; }
    100% { transform: scale(1.1) rotate(10deg); opacity: 1; }
}
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2D3748;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #FF7F7F, #B19CD9);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* About Section */
.about {
    background: white;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4A5568;
}

/* Activities Section */
.activities {
    background: #F7FAFC;
}

.activities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.activity-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 127, 127, 0.1);
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.activity-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.activity-card h3 {
    color: #2D3748;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.activity-card p {
    color: #718096;
    line-height: 1.6;
}

/* Schedule Section */
.schedule {
    background: white;
}

.schedule-header {
    text-align: center;
    margin-bottom: 3rem;
}

.schedule-header h3 {
    color: #B19CD9;
    font-size: 1.5rem;
}

.schedule-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.week-card {
    background: linear-gradient(135deg, #FFF5F5, #F0E6FF);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 127, 127, 0.2);
    text-align: center;
}

.week-card h4 {
    font-size: 1.5rem;
    color: #B19CD9;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.week-card .date {
    color: #718096;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.activities-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.activity-tag {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.tag-art { background: linear-gradient(135deg, #FFE5E5, #FFB6C1); color: #D53F8C; }
.tag-math { background: linear-gradient(135deg, #E5E5FF, #C6C6FF); color: #553C9A; }
.tag-sport { background: linear-gradient(135deg, #E5F8F5, #A7F3D0); color: #047857; }
.tag-english { background: linear-gradient(135deg, #FFF5E5, #FBBF24); color: #D97706; }
.tag-sensory { background: linear-gradient(135deg, #F0E6FF, #DDD6FE); color: #7C3AED; }
.tag-tech { background: linear-gradient(135deg, #E5F8FF, #BAE6FD); color: #0369A1; }
.tag-mindfulness { background: linear-gradient(135deg, #E6FFFA, #A7F3D0); color: #065F46; }

/* Pricing Section */
.pricing {
    background: #F7FAFC;
}

.pricing-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
}

.pricing-header {
    background: linear-gradient(135deg, #FF7F7F, #FFB6C1);
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    font-weight: 600;
}

.pricing-row {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    border-bottom: 1px solid #E2E8F0;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-cell {
    padding: 1.5rem 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-cell.price {
    font-weight: 700;
    color: #FF7F7F;
    font-size: 1.2rem;
}

.pricing-mobile {
    display: none;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 127, 127, 0.1);
}

.pricing-card h4 {
    color: #FF7F7F;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.pricing-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #F7FAFC;
}

.pricing-detail:last-child {
    border-bottom: none;
}

.pricing-label {
    font-weight: 500;
    color: #4A5568;
}

.pricing-value {
    font-weight: 600;
    color: #2D3748;
}

.pricing-value.price {
    color: #FF7F7F;
    font-size: 1.2rem;
}

/* Gallery Section */
.gallery {
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    aspect-ratio: 4/3;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item.placeholder {
    background: linear-gradient(135deg, #F7FAFC, #E2E8F0);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #CBD5E0;
}

.placeholder-content {
    text-align: center;
    color: #A0AEC0;
}

.placeholder-content span {
    display: block;
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* --- Special Section --- */
.special {
  .special {
  padding: 80px 20px;
  padding-top: 100px; 
  background-color: #f9f9f9;
  text-align: center;
}

}

.special .section-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

.special-content {
  max-width: 800px;
  margin: 0 auto;
}

.special-content h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #444;
}

.special-content p {
  font-size: 1rem;
  color: #555;
  margin-top: 20px;
  line-height: 1.6;
}

.special-img {
  width: 100%;   
  max-width: 800px;  
  height: auto;
  display: block;
  margin: 0 auto; 
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease-in-out;
}



/* Contact Section */
.contact {
    background: #F7FAFC;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.contact-info h3 {
    color: #2D3748;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    color: #4A5568;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin: 0;
    color: #718096;
}

.contact-item a {
    color: #FF7F7F;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    color: #2D3748;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #4A5568;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF7F7F;
    box-shadow: 0 0 0 3px rgba(255, 127, 127, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #E2E8F0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #FF7F7F;
    border-color: #FF7F7F;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #2D3748;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-logo .logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FF7F7F;
    display: block;
}

.footer-logo .logo-subtitle {
    font-size: 0.9rem;
    color: #B19CD9;
    margin-bottom: 1rem;
}

.footer p {
    color: #A0AEC0;
    margin: 0;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    margin: 5% auto;
    max-width: 90%;
    max-height: 90%;
}

.modal-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        gap: 0;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        margin: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Hero adjustments */
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

/* Pricing table responsive */
    .pricing-table {
        display: none;
    }
    
    .pricing-mobile {
        display: block !important;
    }

    /* Form adjustments */
    .contact-content {
        gap: 2rem;
    }
}

/* Tablet */
@media (min-width: 768px) {
    .hero-visual {
        height: 280px;
    }
    
    .logo-container {
        width: 150px;
        height: 150px;
    }
    
    .logo-text-hero {
        right: -85px;
    }
    
    .logo-text-hero .logo-main {
        font-size: 0.9rem;
    }
    
    .logo-text-hero .logo-sub {
        font-size: 0.55rem;
    }

    .container {
        padding: 0 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .hero-visual {
        height: 300px;
    }
    
    .hero .container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .logo-container {
        width: 250px;
        height: 250px;
    }
    
    .logo-text-hero .logo-main {
        font-size: 1rem;
    }
    
    .logo-text-hero .logo-sub {
        font-size: 0.6rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }

    .activities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus states for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #FF7F7F;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .nav-toggle,
    .hero-visual,
    .modal {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section-title::after {
        background: black;
    }
}