/* ======================================================
   COMING SOON – KINDERGARTEN ANIMATED
====================================================== */

.coming-wrapper {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(to top, #fefcea, #f1daff);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

/* =============================
   CLOUDS
============================= */

.cloud {
  position: absolute;
  width: 200px;
  height: 60px;
  background: white;
  border-radius: 50px;
  opacity: 0.6;
  animation: floatCloud 25s linear infinite;
}

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

.cloud::before {
  width: 80px;
  height: 80px;
  top: -40px;
  left: 30px;
}

.cloud::after {
  width: 60px;
  height: 60px;
  top: -30px;
  right: 30px;
}

.cloud1 { top: 15%; left: -200px; }
.cloud2 { bottom: 20%; left: -250px; animation-delay: 12s; }

@keyframes floatCloud {
  from { transform: translateX(0); }
  to { transform: translateX(120vw); }
}

/* =============================
   BALLOONS
============================= */

.balloon {
  position: absolute;
  width: 50px;
  height: 70px;
  border-radius: 50% 50% 50% 50%;
  animation: floatBalloon 8s ease-in-out infinite;
}

.balloon::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 60px;
  background: #666;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
}

.b1 { background: #ff6b6b; left: 10%; bottom: 0; animation-delay: 0s; }
.b2 { background: #6bc5ff; left: 50%; bottom: 0; animation-delay: 2s; }
.b3 { background: #ffd93d; right: 10%; bottom: 0; animation-delay: 4s; }

@keyframes floatBalloon {
  0% { transform: translateY(0); }
  50% { transform: translateY(-150px); }
  100% { transform: translateY(0); }
}

/* =============================
   CONTENT
============================= */

.coming-content {
  position: relative;
  z-index: 5;
  max-width: 500px;
  animation: fadeIn 1.2s ease forwards;
}

/* Logo */
.coming-logo img {
  width: 90px;
  margin-bottom: 1rem;
  animation: pulseLogo 3s infinite ease-in-out;
}

@keyframes pulseLogo {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* =============================
   SCHOOL ILLUSTRATION
============================= */

.school {
  margin: 1.5rem auto;
  width: 140px;
  animation: bounce 3s infinite ease-in-out;
}

.roof {
  width: 0;
  height: 0;
  border-left: 70px solid transparent;
  border-right: 70px solid transparent;
  border-bottom: 60px solid #ff8fab;
  margin: 0 auto;
}

.building {
  width: 140px;
  height: 100px;
  background: #ffffff;
  border-radius: 0 0 12px 12px;
  position: relative;
  border: 2px solid #eee;
}

.door {
  width: 30px;
  height: 50px;
  background: #6bc5ff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 6px 6px 0 0;
}

.window {
  width: 25px;
  height: 25px;
  background: #ffd93d;
  position: absolute;
  top: 20px;
  border-radius: 4px;
}

.w1 { left: 20px; }
.w2 { right: 20px; }

@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* =============================
   TEXT
============================= */

.coming-title {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 1rem;
}

.coming-subtitle {
  opacity: 0.8;
  margin-top: 0.5rem;
}

.dots::after {
  content: "";
  animation: dots 1.5s infinite;
}

@keyframes dots {
  0% { content: ""; }
  33% { content: "."; }
  66% { content: ".."; }
  100% { content: "..."; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */

@media (min-width: 768px) {
  .coming-title { font-size: 2.5rem; }
}

@media (min-width: 1024px) {
  .coming-title { font-size: 3rem; }
}
