/* ═══════════════════════════════════════════════
   HoneyBee Learning — Pages CSS
   Shared styles for: about.html, faq.html,
   write-review.html and other inner pages
   ═══════════════════════════════════════════════ */

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 12px 28px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fafaf7;
  border-bottom: 1px solid #f0ead8;
  margin-top: 70px; /* push below fixed nav */
}
.breadcrumb a {
  color: var(--green);
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { opacity: 0.5; }

/* ── PAGE HERO ── */
.page-hero {
  color: white;
  text-align: center;
  padding: 52px 28px 48px;
}
.page-hero-emoji {
  font-size: 2.8rem;
  display: block;
  margin-bottom: 14px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.18));
}
.page-hero h1 {
  font-family: 'Fredoka One', cursive;
  font-size: 2.2rem;
  margin: 0 0 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.page-hero p {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.92;
  max-width: 560px;
  margin: 0 auto 22px;
  line-height: 1.6;
}
.page-hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-white {
  background: white;
  color: var(--green);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.8);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }

/* ── PAGE SECTION (content area) ── */
.page-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 44px 24px 60px;
}

/* ── INDIA FIRST BADGE ── */
.india-first-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #FF9933, #FFFFFF, #138808);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  margin-bottom: 12px;
}

.india-banner {
  background: linear-gradient(135deg, #fff8e1, #f0f9e8);
  border: 1.5px solid #ffe082;
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 24px;
}
.india-banner .flag { font-size: 1.4rem; flex-shrink: 0; }

@media (max-width: 600px) {
  .page-hero h1 { font-size: 1.7rem; }
  .page-hero { padding: 40px 20px 36px; }
  .breadcrumb { margin-top: 62px; }
}
