* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  background: #E8F4FD;
  color: #333;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Fredoka One', cursive;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Clouds Background ---- */
.clouds-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.cloud {
  position: absolute;
  background: white;
  border-radius: 50%;
  opacity: 0.7;
}

.cloud::before,
.cloud::after {
  content: '';
  position: absolute;
  background: white;
  border-radius: 50%;
}

.cloud-1 {
  width: 200px;
  height: 60px;
  top: 8%;
  left: -200px;
  animation: drift 25s linear infinite;
}
.cloud-1::before {
  width: 80px;
  height: 80px;
  top: -40px;
  left: 20px;
}
.cloud-1::after {
  width: 100px;
  height: 60px;
  top: -30px;
  left: 60px;
}

.cloud-2 {
  width: 160px;
  height: 50px;
  top: 20%;
  left: -160px;
  animation: drift 30s linear infinite 5s;
}
.cloud-2::before {
  width: 70px;
  height: 70px;
  top: -35px;
  left: 15px;
}
.cloud-2::after {
  width: 80px;
  height: 55px;
  top: -25px;
  left: 50px;
}

.cloud-3 {
  width: 240px;
  height: 65px;
  top: 5%;
  left: -240px;
  animation: drift 35s linear infinite 10s;
}
.cloud-3::before {
  width: 90px;
  height: 90px;
  top: -45px;
  left: 30px;
}
.cloud-3::after {
  width: 110px;
  height: 70px;
  top: -35px;
  left: 70px;
}

.cloud-4 {
  width: 140px;
  height: 45px;
  top: 30%;
  left: -140px;
  animation: drift 22s linear infinite 15s;
}
.cloud-4::before {
  width: 60px;
  height: 60px;
  top: -30px;
  left: 10px;
}
.cloud-4::after {
  width: 70px;
  height: 50px;
  top: -20px;
  left: 40px;
}

@keyframes drift {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(100vw + 400px)); }
}

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  border-bottom: 3px solid #FFD93D;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  font-size: 28px;
  color: #FFD93D;
  text-shadow: 0 2px 4px rgba(255, 217, 61, 0.4);
}

.logo-text {
  font-family: 'Fredoka One', cursive;
  font-size: 26px;
  background: linear-gradient(135deg, #FF6B6B, #FFD93D, #6BCB77, #4D96FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 5px;
}

.nav-menu a {
  text-decoration: none;
  color: #555;
  font-weight: 700;
  font-size: 16px;
  padding: 8px 18px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: linear-gradient(135deg, #FF6B6B, #FFD93D);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 5px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #555;
  border-radius: 3px;
  transition: 0.3s;
}

/* ---- Hero Section ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  position: relative;
  background: linear-gradient(180deg, #E8F4FD 0%, #FFF0F5 100%);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-text h1 {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #333;
}

.highlight {
  background: linear-gradient(135deg, #FF6B6B, #FFD93D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: 'Fredoka One', cursive;
  font-size: 22px;
  color: #6BCB77;
  margin-bottom: 15px;
}

.hero-desc {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #FF6B6B, #FF8E53);
  color: white;
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.45);
}

.btn-secondary {
  background: white;
  color: #FF6B6B;
  border: 2px solid #FF6B6B;
}

.btn-secondary:hover {
  background: #FFF0F0;
  transform: translateY(-3px);
}

.hero-illustration {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero-main-img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  display: block;
  border: 4px solid white;
}

.hero-img-badge {
  position: absolute;
  bottom: -12px;
  right: -10px;
  background: linear-gradient(135deg, #FF6B6B, #FF8E53);
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-family: 'Fredoka One', cursive;
  font-size: 16px;
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
  white-space: nowrap;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.float-el {
  position: absolute;
  font-size: 30px;
  animation: float 3s ease-in-out infinite;
}

.el-1 { top: -20px; right: -30px; animation-delay: 0s; font-size: 40px; }
.el-2 { top: 30px; left: -30px; animation-delay: 0.8s; font-size: 35px; }
.el-3 { bottom: 40px; left: -20px; animation-delay: 1.5s; font-size: 28px; }
.el-4 { bottom: 80px; right: -20px; animation-delay: 2s; font-size: 32px; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(8deg); }
}

.wave-divider {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  line-height: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ---- Section Headers ---- */
section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 40px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #FF6B6B, #FFD93D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 18px;
  color: #888;
  font-weight: 600;
}

/* ---- About Section ---- */
.about {
  background: #FFF0F5;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.about-image {
  position: sticky;
  top: 100px;
}

.about-main-img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  display: block;
  border: 4px solid white;
}

.about-image-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 15px;
}

.about-image-strip img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
  border: 3px solid white;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.about-image-strip img:hover {
  transform: scale(1.05);
}

.about-cards-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-card {
  background: white;
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  border-top: 5px solid transparent;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.card-1 { border-top-color: #FF6B6B; }
.card-2 { border-top-color: #FFD93D; }
.card-3 { border-top-color: #6BCB77; }
.card-4 { border-top-color: #4D96FF; }

.card-icon {
  font-size: 42px;
  margin-bottom: 12px;
}

.about-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #444;
}

.about-card p {
  font-size: 14px;
  color: #777;
  line-height: 1.7;
}

/* ---- Programs Section ---- */
.programs {
  background: #E8F4FD;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.program-card {
  background: white;
  border-radius: 24px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #FF6B6B, #FFD93D, #6BCB77, #4D96FF);
}

.program-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.program-card.featured {
  transform: scale(1.05);
  border: 3px solid #FFD93D;
  box-shadow: 0 12px 40px rgba(255, 217, 61, 0.25);
}

.program-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.program-badge {
  position: absolute;
  top: 15px;
  right: -30px;
  background: linear-gradient(135deg, #FF6B6B, #FF8E53);
  color: white;
  padding: 5px 35px;
  font-size: 12px;
  font-weight: 800;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.program-age {
  display: inline-block;
  background: #FFE4E8;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  color: #FF8E53;
  margin-bottom: 15px;
}

.program-icon {
  font-size: 50px;
  margin-bottom: 10px;
}

.program-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #444;
}

.program-card p {
  font-size: 14px;
  color: #888;
  margin-bottom: 20px;
  line-height: 1.7;
}

.program-features {
  list-style: none;
  text-align: left;
  padding: 0;
}

.program-features li {
  padding: 5px 0;
  font-size: 14px;
  color: #666;
  font-weight: 600;
}



/* ---- Contact Section ---- */
.contact {
  background: #FFF0F5;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  transition: transform 0.3s ease;
}

.info-item:hover {
  transform: translateX(5px);
}

.info-icon {
  font-size: 28px;
  min-width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFE4E8;
  border-radius: 12px;
}

.info-item h4 {
  font-size: 16px;
  margin-bottom: 4px;
  color: #444;
}

.info-item p {
  font-size: 15px;
  color: #888;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 5px;
}

.social-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: white;
  color: #555;
  text-decoration: none;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: linear-gradient(135deg, #FF6B6B, #FFD93D);
  color: white;
  transform: translateY(-3px);
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #eee;
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  color: #444;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #FFD93D;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn {
  align-self: flex-start;
}

/* ---- Moments Section ---- */
.moments {
  background: #E8F4FD;
}

.moments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.moment-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: all 0.4s ease;
}

.moment-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.moment-item:hover img {
  transform: scale(1.1);
}

.moment-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: white;
  padding: 30px 15px 15px;
  font-family: 'Fredoka One', cursive;
  font-size: 16px;
  text-align: center;
}

/* ---- Floating WhatsApp ---- */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float span {
  font-size: 32px;
  color: white;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 6px 35px rgba(37, 211, 102, 0.7); }
  100% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4); }
}

/* ---- Footer ---- */
.footer {
  background: #333;
  color: white;
  padding: 60px 0 0;
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.footer-brand .logo-icon {
  font-size: 24px;
}

.footer-brand p {
  color: #aaa;
  font-size: 15px;
}

.footer-links h4,
.footer-newsletter h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #FFD93D;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #FFD93D;
}

.footer-newsletter p {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  outline: none;
}

.newsletter-form button {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #FFD93D, #FFB347);
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.newsletter-form button:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding: 25px 0;
  color: #888;
  font-size: 14px;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .about-content { grid-template-columns: 1fr; }
  .about-image { position: static; max-width: 500px; margin: 0 auto; }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .moments-grid { grid-template-columns: repeat(2, 1fr); }
  .program-card.featured { transform: none; }
  .program-card.featured:hover { transform: translateY(-10px); }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    flex-direction: column;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    padding: 20px;
    gap: 5px;
    transition: left 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  .nav-menu.active { left: 0; }

  .nav-menu a {
    display: block;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 18px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .hero-text h1 { font-size: 36px; }
  .hero-desc { margin: 0 auto 30px; }
  .hero-buttons { justify-content: center; }

  .section-header h2 { font-size: 30px; }
  .about-content { grid-template-columns: 1fr; }
  .about-image { max-width: 100%; }
  .about-cards-wrapper { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .moments-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
  .whatsapp-float { width: 50px; height: 50px; bottom: 15px; right: 15px; }
  .whatsapp-float span { font-size: 26px; }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 28px; }
  .hero-subtitle { font-size: 18px; }
  .hero-desc { font-size: 16px; }
  .hero-image-wrapper { max-width: 300px; margin: 0 auto; }
  .hero-img-badge { font-size: 13px; padding: 6px 14px; }
  .moments-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .about-image-strip img { height: 120px; }
}