/* style.css
   Teaching Mumma - responsive, minimal animations, SEO-friendly
   No confetti (keeps pages lightweight)
*/

/* Google font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

:root{
  --bg-1: #fef9f9;
  --bg-2: #eef2ff;
  --primary: #6366f1;
  --accent: #10b981;
  --muted: #6b7280;
  --dark: #111827;
  --card-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body{
  font-family:'Poppins',sans-serif;
  background:linear-gradient(135deg,var(--bg-1) 0%,var(--bg-2) 100%);
  color:var(--dark);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.6;
  overflow-x:hidden;
}

/* NAV */
header.site-nav{
  background:#fff;
  box-shadow:0 4px 10px rgba(0,0,0,0.05);
  position:sticky;top:0;z-index:50;
}
.container{max-width:1100px;margin:0 auto;padding:0 1rem}
.nav-inner{display:flex;align-items:center;justify-content:space-between;padding:0.9rem 0}
.brand{display:flex;align-items:center;gap:0.75rem}
.brand img{width:56px;height:56px;border-radius:50%;object-fit:cover;box-shadow:0 6px 18px rgba(0,0,0,0.06)}
.brand .title{font-weight:700}
.nav-links{display:flex;gap:0.8rem;align-items:center}
.nav-links a{color:black;text-decoration:none;font-weight:600;padding:0.45rem 0.6rem;border-radius:8px;transition:.18s}
.nav-links a:hover{background:#f3f4ff;color:var(--primary)}
.cta-login{display:inline-flex;align-items:center;gap:0.5rem;background:var(--primary);color:#fff;padding:0.45rem 0.7rem;border-radius:8px;text-decoration:none}

/* mobile nav collapse */
.mobile-toggle{display:none}

/* HERO */
.hero{
  text-align:center;padding:3.5rem 1rem 2rem;background-repeat:no-repeat;background-position:center;background-size:contain;
}
.hero .eyebrow{display:inline-block;background:linear-gradient(90deg,#fbcfe8,#c7d2fe);padding:0.3rem 0.8rem;border-radius:999px;font-weight:600;margin-bottom:1rem}
.hero h1{font-size:2.2rem;margin-top:0.6rem}
.hero p{color:var(--muted);margin-top:0.8rem;max-width:760px;margin-left:auto;margin-right:auto}
.hero .actions{margin-top:1.4rem;display:flex;gap:0.8rem;justify-content:center;flex-wrap:wrap}
.btn{display:inline-block;padding:0.75rem 1.3rem;border-radius:10px;text-decoration:none;font-weight:600}
.btn-primary{background:var(--primary);color:#fff}
.btn-ghost{background:#fff;border:1px solid #e6e9ff;color:var(--dark)}

/* SECTIONS */
section{padding:2rem 1rem}
.section-title{text-align:center;margin-bottom:1rem;font-size:1.5rem;font-weight:700;color:var(--dark)}

/* GRID helpers */
.grid{display:grid;gap:1rem}
.features-grid{grid-template-columns:repeat(auto-fit,minmax(220px,1fr))}
.pricing-grid{grid-template-columns:repeat(auto-fit,minmax(220px,1fr))}

/* CARD */
.card{
  background:#fff;border-radius:14px;padding:1.25rem;box-shadow:var(--card-shadow);transition:transform .16s;
}
.card:hover{transform:translateY(-6px)}
.card h3{font-size:1.05rem;margin-bottom:0.4rem}
.card p{color:var(--muted);font-size:0.95rem}

/* feature tiny */
.feature-tiny{display:flex;gap:0.8rem;align-items:flex-start}
.feature-tiny .icon{width:44px;height:44px;border-radius:10px;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700}
.feature-tiny .meta{font-size:0.9rem}
.feature-tiny .meta .title{font-weight:600}

/* PRICING */
.pricing-card .price{font-size:1.6rem;font-weight:700;color:var(--primary);margin-top:0.4rem}
.pricing-card ul{margin:0.6rem 0;padding-left:1rem;color:#3f3f46}
.pricing-card .btn-buy{width:100%;padding:0.6rem;border-radius:10px;border:none;background:var(--primary);color:#fff;font-weight:700}

/* CONTACT */
.contact-grid{grid-template-columns:repeat(auto-fit,minmax(260px,1fr))}

/* FOOTER */
footer.site-foot{background:#0f1724;color:#e6eef9;padding:1.25rem 1rem;margin-top:2rem}
.footer-inner{max-width:1100px;margin:0 auto;display:flex;gap:1rem;align-items:center;justify-content:space-between;flex-wrap:wrap}

/* small helpers */
.badge{display:inline-block;padding:0.25rem 0.6rem;border-radius:999px;background:#fff7ed;color:#b45309;font-weight:700;font-size:0.8rem}
.meta-small{font-size:0.9rem;color:var(--muted)}

@media (min-width:900px){
  .hero{padding:4.5rem 1rem 2.5rem}
  .hero h1{font-size:2.8rem}
}

/* Mobile */
@media (max-width:768px){
  .nav-links{display:none}
  .mobile-toggle{display:block}
  .brand img{width:48px;height:48px}
  .hero h1{font-size:1.6rem}
  .hero p{font-size:0.95rem}
  .card{padding:1rem}
}

/* ✅ Mobile Navigation Toggle (CSS-only, no JS) */
.nav-toggle {
  display: none;
}

.mobile-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
  padding: 0.4rem;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Animate hamburger to cross */
.nav-toggle:checked + .mobile-toggle span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}
.nav-toggle:checked + .mobile-toggle span:nth-child(2) {
  opacity: 0;
}
.nav-toggle:checked + .mobile-toggle span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* Show nav links on toggle */
.nav-toggle:checked ~ .nav-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: absolute;
  top: 70px;
  right: 1rem;
  background: #fff;
  box-shadow: var(--card-shadow);
  padding: 1.2rem;
  border-radius: 12px;
  width: calc(100% - 2rem);
  max-width: 320px;
  text-align: center;
  animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width:768px) {
  .mobile-toggle { display: flex; }
  .nav-links { display: none; }
}

/* Layout Grid */
.home-section {
  padding:3.5rem 1.5rem 2rem;
}

.home-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .home-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Left Side */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  border-radius: 9999px;
  background: linear-gradient(to right, #fbcfe8, #c7d2fe);
  font-weight: 600;
  font-size: 0.9rem;
}

.headline {
  font-size: 2rem;
  font-weight: 800;
  margin-top: 0.75rem;
}

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

.subtext {
  color: #4b5563;
  line-height: 1.6;
  margin: 0.5rem 0 1rem;
}

/* Buttons */
.actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.btn-primary {
  background: #6366f1;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 2px 5px rgba(99, 102, 241, 0.3);
  text-decoration: none;
}

.btn-outline {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  color: #111;
  text-decoration: none;
}

/* Tiny Features Grid */
.tiny-features {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.tiny-card {
  background: #f9fafb;
  border-radius: 10px;
  padding: 0.75rem;
  text-align: left;
}

.tiny-card h4 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.tiny-card p {
  font-size: 0.9rem;
  color: #6b7280;
}

/* YouTube Link */
.youtube-link {
  margin-top: 1rem;
}

.youtube-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #111;
  text-decoration: none;
}

.yt-icon {
  width: 20px;
  height: 20px;
}

/* Right Side Demo Quiz */
.quiz-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.quiz-card h3 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.quiz-label {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.quiz-box {
  background: #f9fafb;
  padding: 1rem;
  border-radius: 10px;
  border: 1px dashed #e5e7eb;
}

.question {
  font-weight: 600;
  font-size: 1rem;
}

.options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.options button {
  padding: 0.5rem 0;
  border-radius: 8px;
  border: none;
  background: #fff;
  cursor: pointer;
  font-size: 0.95rem;
  border: 1px solid #e5e7eb;
}

.options button.correct {
  background: rgba(52, 211, 153, 0.1);
  border-color: #a7f3d0;
}

.btn-submit {
  margin-top: 0.75rem;
  background: #10b981;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

.note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: #6b7280;
}

/*END Home section*/

/*Feature section*/
/* Section Wrapper */
.features-section {
  padding: 2rem 1.5rem;
}

/* Heading */
.section-heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: left;
}

/* Grid Layout */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Feature Cards */
.feature-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.feature-card:hover {
  transform: scale(1.01);
}

.feature-card h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.5;
}

/* Match the Following Section */
.match-sample {
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(to right, #ffffff, #eef2ff);
  border-radius: 16px;
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.05);
}

.match-sample h3 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.match-desc {
  font-size: 0.9rem;
  color: #6b7280;
}

/* Match Grid */
.match-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.match-item {
  background: #ffffff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  font-size: 0.95rem;
  color: #111827;
}

/* Responsive for smaller devices */
@media (max-width: 640px) {
  .match-grid {
    grid-template-columns: 1fr;
  }
}

.feature-tiny {
  background-color: #fff;
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-tiny:hover {
  transform: scale(1.02);
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f0abfc, #a78bfa);
  color: white;
  font-weight: bold;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-content {
  display: flex;
  flex-direction: column;
}

.feature-title {
  font-weight: 600;
  font-size: 14px;
  color: #111;
}

.feature-desc {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.4;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .feature-tiny {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 10px;
  }

  .feature-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .feature-title {
    font-size: 13px;
  }

  .feature-desc {
    font-size: 11px;
  }
}

.about-section {
  padding: 3rem 1rem;
  background: #fff;
  color: #111827;
  font-family: 'Inter', sans-serif;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about-content p {
  margin-top: 1rem;
  color: #4b5563;
  line-height: 1.6;
}

.about-content ul {
  margin-top: 1rem;
  list-style: none;
  padding-left: 0;
  color: #374151;
  font-size: 0.95rem;
}

.about-content ul li {
  margin-bottom: 0.4rem;
}

.about-btn {
  margin-top: 1.5rem;
}

.yt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ff0000;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.yt-btn:hover {
  background: #e00000;
}

.yt-icon {
  font-size: 1.1rem;
}

/* Right-side Card */
.about-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.about-card h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about-card p {
  font-size: 0.9rem;
  color: #4b5563;
}

.about-grid-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.about-tile {
  padding: 0.8rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

.light-blue {
  background: #f8fafc;
}

.light-orange {
  background: #fff7ed;
}

.light-lavender {
  background: #eef2ff;
}

.light-green {
  background: #eefbf1;
}

/* ====== Contact Section ====== */
.contact-section {
  padding: 2rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
}

.contact-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: left;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

/* ====== Contact Card ====== */
.contact-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 1.5rem;
}

.contact-card h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-card p {
  font-size: 0.9rem;
  color: #555;
}

.contact-card a {
  color: #6366f1;
  text-decoration: none;
  font-weight: 500;
}

/* ====== WhatsApp Button ====== */
.whatsapp-btn {
  margin-top: 1rem;
}

.whatsapp-btn a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease;
}

.whatsapp-btn a:hover {
  background: #1ebe5a;
}

.whatsapp-icon {
  font-size: 1.2rem;
}

/* ====== Countries ====== */
.available {
  margin-top: 1.5rem;
}

.available h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.country-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.country-pill {
  background: #eef2ff;
  color: #333;
  padding: 0.4rem 0.8rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ====== Form ====== */
.contact-form {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 0.6rem;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s ease;
}

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

/* ====== Buttons ====== */
.form-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.btn-primary {
  background: #6366f1;
  color: #fff;
  border: none;
  border-radius: 0.6rem;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: #4f46e5;
}

.btn-secondary {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0.6rem;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-secondary:hover {
  background: #f9fafb;
}

/* ====== Responsive ====== */
@media (max-width: 768px) {
  .contact-section h2 {
    text-align: center;
  }

  .contact-card {
    padding: 1.2rem;
  }

  .form-actions {
    flex-direction: column;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
  }
}

/* ===== Header Base ===== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid #f1f1f1;
  font-family: 'Inter', sans-serif;
}

/* ===== Container ===== */
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== Logo ===== */
.logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo-text h1 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

.logo-text p {
  font-size: 0.7rem;
  color: #6b7280;
  margin: 0;
}

/* ===== Desktop Navigation ===== */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-link {
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #6366f1;
}

.nav-link.active {
  color: #6366f1;
  font-weight: 600;
}

/* ===== Login Button ===== */
.btn-login {
  margin-left: 0.5rem;
  background-color: #6366f1;
  color: white;
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(99, 102, 241, 0.3);
  transition: background 0.2s ease;
}

.btn-login:hover {
  background-color: #4f46e5;
}

/* ===== Mobile Menu ===== */
.nav-mobile {
  display: none;
}

#menu-toggle {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  border-bottom: 1px solid #eee;
  padding: 0.75rem 1rem;
}

.mobile-menu.show {
  display: flex;
}

.mobile-link,
.mobile-login {
  text-decoration: none;
  color: #333;
  padding: 0.5rem 0;
  font-size: 0.95rem;
}

.mobile-login {
  background: #6366f1;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 0.4rem;
  margin-top: 0.5rem;
  text-align: center;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .nav-mobile {
    display: block;
  }
}

/* ===== Footer Base ===== */
.site-footer {
  border-top: 1px solid #f1f1f1;
  padding: 1.5rem 1rem;
  margin-top: 3rem;
  background-color: #fff;
  font-family: 'Inter', sans-serif;
}

/* ===== Container ===== */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
  }
}

/* ===== Brand Section ===== */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.brand-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #111827;
}

.brand-tagline {
  font-size: 0.75rem;
  color: #6b7280;
}

/* ===== Social Links ===== */
.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-links a {
  color: #4b5563;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* ===== Copyright ===== */
.footer-copy {
  font-size: 0.8rem;
  color: #9ca3af;
  text-align: center;
}
