/* ================= Global Styles ================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  height: 100%;
  font-family: 'Roboto', sans-serif;
  background: #fceabb;
  color: #333;
}

/* ================= Coming Soon Container ================= */
.coming-soon {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(to right, #fceabb, #f8b500);
}

.coming-soon .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}

.coming-soon .content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px 30px;
}

/* ================= Brand & Headings ================= */
h1.brand {
  font-size: 3em;
  color: #d6336c;
  margin-bottom: 10px;
  animation: fadeInDown 1s ease forwards;
}

.tagline {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #fff;
}

h2.soon {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #fff;
  animation: pop 0.8s ease forwards;
}

.desc {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #fff;
}

/* ================= Sections ================= */
.courses, .why-choose {
  margin: 30px 0;
  color: #fff;
  text-align: left;
}

.courses h3, .why-choose h3 {
  font-size: 1.8em;
  margin-bottom: 10px;
  color: #ffd700;
}

.courses ul, .why-choose ul {
  list-style: disc;
  padding-left: 20px;
  font-size: 1.1em;
}

.courses ul li, .why-choose ul li {
  margin-bottom: 8px;
}

/* ================= Buttons ================= */
.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

a.btn {
  color: #fff;
}

.btn:hover {
  opacity: 0.9;
}

/* WhatsApp button */
a.btn[href*="wa.me"] {
  background-color: #25d366;
}

a.btn[href*="wa.me"]:hover {
  background-color: #1da851;
}

/* Social Media Updates */
.social-updates {
  margin: 30px 0;
  text-align: center;
}

.social-updates h3 {
  font-size: 1.8em;
  margin-bottom: 10px;
  color: #ffd700;
}

.social-updates p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.social-updates .social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-updates .social-links a.btn {
  background-color: #d6336c;
}

.social-updates .social-links a.btn:hover {
  background-color: #a52850;
}

/* Bottom Social Icons */
.social-icons {
  margin-top: 40px;
  text-align: center;
}

.social-icons p {
  margin-bottom: 10px;
  color: #fff;
  font-weight: bold;
}

.social-icons a {
  margin: 0 10px;
  color: #fff;
  font-size: 1.3em;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #d6336c;
}

/* ================= Animations ================= */
@keyframes pop {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ================= Responsive ================= */
@media (max-width: 768px) {
  h1.brand { font-size: 2.5em; }
  h2.soon { font-size: 2em; }
  .desc { font-size: 1em; }
  .courses h3, .why-choose h3 { font-size: 1.5em; }
  .courses ul li, .why-choose ul li { font-size: 1em; }
}

@media (max-width: 480px) {
  h1.brand { font-size: 2em; }
  h2.soon { font-size: 1.5em; }
  .desc { font-size: 0.95em; }
  .btn { padding: 10px 20px; }
  .courses, .why-choose { text-align: center; }
  .courses ul, .why-choose ul { padding-left: 0; list-style: none; }
  .social-updates .social-links { flex-direction: column; gap: 10px; }
}
