/* ============================================================
   The Adventures of Buddy & DeeDee — Main Stylesheet
   Brand colors pulled from the Veterans Honor patch logo:
   Deep navy blue, warm red, gold/yellow accents, cream white
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1a2a4a;
  --navy-dark:  #0f1c33;
  --navy-mid:   #243660;
  --red:        #c0392b;
  --red-light:  #e74c3c;
  --gold:       #f0a500;
  --gold-light: #f7c44a;
  --cream:      #fdf8f0;
  --cream-dark: #f3eada;
  --white:      #ffffff;
  --text-dark:  #1a2a4a;
  --text-mid:   #3a4a6a;
  --text-light: #6a7a9a;
  --border:     #dde3f0;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 20px rgba(26,42,74,0.10);
  --shadow-lg:  0 8px 40px rgba(26,42,74,0.16);
  --transition: all 0.25s ease;
}

html { scroll-behavior: smooth; }

/* ============================================================
   FUN ANIMATIONS — Buddy & DeeDee Homepage
   ============================================================ */

/* --- Keyframes --- */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes popIn {
  0%   { opacity: 0; transform: scale(0.6) rotate(-4deg); }
  70%  { opacity: 1; transform: scale(1.08) rotate(2deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes floatBob {
  0%, 100% { transform: translateY(0px) rotate(-3deg); }
  50%       { transform: translateY(-18px) rotate(3deg); }
}
@keyframes spinIn {
  from { opacity: 0; transform: rotate(-180deg) scale(0.3); }
  to   { opacity: 1; transform: rotate(0deg) scale(1); }
}
@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  20%       { transform: rotate(-6deg); }
  40%       { transform: rotate(6deg); }
  60%       { transform: rotate(-4deg); }
  80%       { transform: rotate(4deg); }
}
@keyframes pawFloat {
  0%   { opacity: 0; transform: translateY(0) rotate(0deg) scale(0.5); }
  10%  { opacity: 0.35; }
  90%  { opacity: 0.15; }
  100% { opacity: 0; transform: translateY(-120px) rotate(40deg) scale(1.2); }
}
@keyframes starTwinkle {
  0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
  50%       { opacity: 1; transform: scale(1.2) rotate(180deg); }
}
@keyframes bounceIn {
  0%   { opacity: 0; transform: translateY(60px) scale(0.8); }
  60%  { opacity: 1; transform: translateY(-10px) scale(1.04); }
  80%  { transform: translateY(4px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  14%       { transform: scale(1.12); }
  28%       { transform: scale(1); }
  42%       { transform: scale(1.08); }
  70%       { transform: scale(1); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* --- Hero Animations --- */
.hero-eyebrow {
  animation: fadeSlideDown 0.7s ease both;
  animation-delay: 0.1s;
}
.hero-content h1 {
  animation: fadeSlideUp 0.8s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.25s;
}
.hero-content p {
  animation: fadeSlideUp 0.8s ease both;
  animation-delay: 0.45s;
}
.hero-btns {
  animation: fadeSlideUp 0.8s ease both;
  animation-delay: 0.65s;
}
.hero-badge {
  animation: spinIn 1s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.5s;
}
.hero-badge img {
  animation: floatBob 4s ease-in-out infinite;
  animation-delay: 1.5s;
}

/* Paw print floaters in hero */
.hero {
  overflow: hidden;
}
.paw-float {
  position: absolute;
  font-size: 1.8rem;
  pointer-events: none;
  animation: pawFloat linear infinite;
  z-index: 1;
}

/* Star sparkles in hero */
.star-sparkle {
  position: absolute;
  pointer-events: none;
  animation: starTwinkle ease-in-out infinite;
  z-index: 1;
  font-size: 1.2rem;
}

/* --- Scroll-reveal base state --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-pop {
  opacity: 0;
  transform: scale(0.75) rotate(-3deg);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.reveal-pop.visible {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* --- Button wiggle on hover --- */
.btn:hover {
  animation: wiggle 0.5s ease;
}

/* --- Character images bounce on hover --- */
.mascot-img-row img {
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.mascot-img-row img:hover {
  transform: scale(1.12) translateY(-8px) rotate(-3deg);
  animation: wiggle 0.5s ease;
}

/* --- Featured card pop hover --- */
.featured-card {
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease !important;
}
.featured-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 16px 48px rgba(26,42,74,0.18) !important;
}

/* --- Story card lift hover --- */
.story-card {
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease !important;
}
.story-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 14px 40px rgba(26,42,74,0.16) !important;
}

/* --- Tier card fun hover --- */
.tier-card {
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease !important;
}
.tier-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 16px 48px rgba(26,42,74,0.2) !important;
}

/* --- Tier emoji pulse --- */
.tier-emoji {
  display: inline-block;
  animation: heartbeat 2.5s ease-in-out infinite;
}

/* --- Section header shimmer on h2 --- */
.section-header h2 {
  background: linear-gradient(90deg, var(--navy) 30%, var(--gold) 50%, var(--red) 60%, var(--navy) 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* --- Parents callout card heartbeat icon --- */
.parents-callout-card-icon {
  display: inline-block;
  animation: heartbeat 2s ease-in-out infinite;
  font-size: 2.5rem;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--red); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: 'Fredoka', 'Nunito', Arial, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(240,165,0,0.12);
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 12px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 99px;
  font-family: 'Fredoka', 'Nunito', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240,165,0,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 9px 20px;
  font-size: 0.9rem;
}

/* --- Navigation --- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
  overflow: hidden;
}
.nav-logo img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: 'Fredoka', 'Nunito', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-logo-text span { color: var(--gold-light); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.nav-links a {
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  padding: 7px 13px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold-light);
  background: rgba(255,255,255,0.08);
}
.nav-auth {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-auth a, .nav-auth button {
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  padding: 7px 13px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-auth a:hover, .nav-auth button:hover {
  color: var(--gold-light);
  background: rgba(255,255,255,0.08);
}
.nav-auth .btn-join {
  background: var(--gold);
  color: var(--navy-dark);
  padding: 7px 18px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.9rem;
}
.nav-auth .btn-join:hover {
  background: var(--gold-light);
  color: var(--navy-dark);
}
#userArea {
  display: none;
  align-items: center;
  gap: 8px;
}
#userMenu {
  display: none;
  align-items: center;
  gap: 8px;
}
.user-greeting {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}
#loginBtn { display: inline-block; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  flex-shrink: 0;
}
.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  display: block;
  transition: var(--transition);
}

/* --- Mobile Nav --- */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--navy-dark);
  padding: 12px 0 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a, .mobile-nav button {
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  padding: 12px 24px;
  text-decoration: none;
  transition: var(--transition);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav button:hover {
  background: rgba(255,255,255,0.06);
  color: var(--gold-light);
}
.mobile-nav-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 8px 0;
}

/* --- Footer --- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 32px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  margin-bottom: 14px;
}
.footer-brand h3 {
  font-family: 'Fredoka', 'Nunito', Arial, sans-serif;
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.footer-brand p { font-size: 0.92rem; line-height: 1.6; }
.footer-col h4 {
  font-family: 'Fredoka', 'Nunito', Arial, sans-serif;
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  transition: var(--transition);
  text-decoration: none;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.88rem; margin: 0; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  transition: var(--transition);
  text-decoration: none;
}
.social-links a:hover { background: var(--gold); color: var(--navy-dark); }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/buddy-deedee-children-book-cover.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.65;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,28,51,0.60) 0%, rgba(26,42,74,0.45) 60%, rgba(192,57,43,0.15) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 640px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,165,0,0.15);
  border: 1px solid rgba(240,165,0,0.35);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 99px;
  margin-bottom: 20px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 span { color: var(--gold-light); }
.hero p {
  color: rgba(255,255,255,0.82);
  font-size: 1.12rem;
  margin-bottom: 32px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-badge {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 280px;
}
.hero-badge img {
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  border: 4px solid var(--gold);
}

/* --- Section Styles --- */
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--text-mid); font-size: 1.05rem; }

/* --- Featured Cards (Homepage) --- */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.featured-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.featured-card-img {
  height: 220px;
  overflow: hidden;
  background: var(--navy);
  position: relative;
}
.featured-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.featured-card:hover .featured-card-img img { transform: scale(1.05); }
.featured-card-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
}
.featured-card-body {
  padding: 28px 28px 24px;
}
.featured-card-body h3 { margin-bottom: 10px; }
.featured-card-body p { color: var(--text-mid); font-size: 0.95rem; margin-bottom: 20px; }

/* --- Story Cards --- */
.stories-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  justify-content: center;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 99px;
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  transition: var(--transition);
  cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.story-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.story-card-img {
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
}
.story-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.story-category-tag {
  position: absolute;
  bottom: 10px; left: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 99px;
}
.cat-books { background: var(--navy); color: var(--gold-light); }
.cat-specials { background: var(--red); color: var(--white); }
.cat-campfire { background: #6b3a2a; color: var(--gold-light); }
.story-card-body { padding: 20px; }
.story-card-body h4 {
  font-family: 'Fredoka', 'Nunito', Arial, sans-serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.story-card-body p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin-bottom: 14px;
}
.story-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-light);
}

/* --- Kids Club --- */
.kids-club-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.kids-club-hero::before {
  content: '';
  position: absolute;
  top: -40%; left: -20%;
  width: 80%; height: 200%;
  background: radial-gradient(circle, rgba(240,165,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.kids-club-hero h1 { color: var(--white); margin-bottom: 16px; }
.kids-club-hero h1 span { color: var(--gold-light); }
.kids-club-hero p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 32px; font-size: 1.08rem; }

.club-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.club-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.club-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.club-card-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}
.club-card h3 { margin-bottom: 10px; }
.club-card p { font-size: 0.92rem; color: var(--text-mid); }
.coming-soon-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 99px;
}

/* --- About Page --- */
.about-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 72px 0;
}
.about-hero h1 { color: var(--white); margin-bottom: 16px; }
.about-hero h1 span { color: var(--gold-light); }
.about-hero p { color: rgba(255,255,255,0.8); }

.about-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
}
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--text-mid); line-height: 1.75; margin-bottom: 16px; }
.about-image {
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--gold);
}
.about-image img { width: 100%; }

.character-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.character-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  gap: 20px;
  align-items: center;
}
.character-card-img {
  width: 90px; height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  flex-shrink: 0;
}
.character-card-img img { width: 100%; height: 100%; object-fit: cover; }
.character-card-info h4 {
  font-family: 'Fredoka', 'Nunito', Arial, sans-serif;
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.character-card-info p { font-size: 0.88rem; color: var(--text-mid); }

/* --- Characters Full Grid (Meet the Characters) --- */
.characters-full-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.char-full-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.char-full-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--gold);
  background: var(--white);
  box-shadow: var(--shadow);
  margin-bottom: 10px;
}
.char-full-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.char-full-name {
  font-family: 'Fredoka', 'Nunito', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin: 0;
}
@media (max-width: 1024px) {
  .characters-full-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .characters-full-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .char-full-name { font-size: 0.82rem; }
}

/* --- Contact Page --- */
.contact-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 72px 0;
}
.contact-hero h1 { color: var(--white); margin-bottom: 16px; }
.contact-hero h1 span { color: var(--gold-light); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-form-wrap h2 { margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--text-mid); margin-bottom: 28px; }
.contact-info {
  padding-top: 12px;
}
.contact-info h3 { margin-bottom: 20px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-item h4 { font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; color: var(--text-light); }
.contact-info-item p { font-size: 0.95rem; color: var(--text-dark); }

/* --- Forms --- */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,42,74,0.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-error {
  color: var(--red);
  font-size: 0.85rem;
  margin-top: 8px;
  font-weight: 600;
}
.form-success {
  color: #167c3d;
  background: #e8f5ee;
  border: 1px solid #b8ddc8;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-weight: 600;
  margin-top: 12px;
}

/* --- Auth Modal --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,18,35,0.7);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 440px;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--text-mid);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.modal-close:hover { background: var(--border); color: var(--navy); }
.modal-logo {
  text-align: center;
  margin-bottom: 24px;
}
.modal-logo img {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  margin: 0 auto 10px;
  object-fit: cover;
}
.modal-logo h2 { font-size: 1.4rem; margin-bottom: 4px; }
.modal-logo p { font-size: 0.9rem; color: var(--text-mid); }
.modal-tabs {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: 24px;
  gap: 0;
}
.modal-tab {
  flex: 1;
  padding: 10px;
  text-align: center;
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-mid);
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
}
.modal-tab.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}
.modal-panel { display: none; }
.modal-panel.active { display: block; }
.modal-footer {
  text-align: center;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-light);
}
.modal-footer a {
  color: var(--navy);
  font-weight: 700;
}
.modal-footer a:hover { color: var(--red); }

/* Forgot password */
#forgotView { display: none; }
#forgotView.active { display: block; }
#loginFormFields {}

/* Verify message */
.verify-message {
  text-align: center;
  padding: 16px 0;
  display: none;
}
.verify-message.active { display: block; }
.verify-message p { color: var(--text-mid); margin-bottom: 14px; }

/* --- Membership Tiers --- */
.membership-tiers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 760px;
  margin: 0 auto;
}
.membership-tiers-5 {
  grid-template-columns: repeat(5, 1fr);
  max-width: 1200px;
  gap: 20px;
}
.tier-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  text-align: center;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.tier-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tier-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(240,165,0,0.1), var(--shadow-lg);
}
.tier-card.tier-premium {
  border-color: #b8860b;
  box-shadow: 0 0 0 4px rgba(184,134,11,0.12), var(--shadow-lg);
}
.tier-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 16px;
  border-radius: 99px;
  white-space: nowrap;
}
.tier-emoji {
  font-size: 2rem;
  margin-bottom: 6px;
  margin-top: 8px;
}
.tier-level {
  font-size: 0.75rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 10px;
  line-height: 1.3;
}
.tier-name {
  font-family: 'Fredoka', 'Nunito', Arial, sans-serif;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.tier-price {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 2px;
}
.tier-price span { font-size: 0.82rem; font-weight: 500; color: var(--text-light); }
.tier-price-alt {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 10px;
}
.tier-desc { font-size: 0.85rem; color: var(--text-mid); margin-bottom: 16px; }
.tier-features { text-align: left; margin-bottom: 20px; flex: 1; }
.tier-launch-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.92rem;
  color: var(--text-mid);
  background: var(--cream-dark);
  border-radius: var(--radius);
  padding: 12px 20px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.tier-features li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 5px 0;
  font-size: 0.8rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}
.tier-features li:last-child { border-bottom: none; }
.tier-features li .check { color: #167c3d; font-weight: 700; flex-shrink: 0; }

/* --- Mascot section --- */
.mascot-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 64px 0;
  text-align: center;
  color: var(--white);
}
.mascot-section h2 { color: var(--white); margin-bottom: 12px; }
.mascot-section h2 span { color: var(--gold-light); }
.mascot-section p { color: rgba(255,255,255,0.8); max-width: 520px; margin: 0 auto 28px; }
.mascot-img-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}
.mascot-img-row img {
  width: 140px; height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* --- Characters row on homepage --- */
.characters-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 48px;
}
.char-item {
  text-align: center;
}
.char-item img {
  width: 90px; height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.char-item:hover img { transform: scale(1.06); box-shadow: var(--shadow-lg); }
.char-item p {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-mid);
  margin-top: 6px;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.bg-cream { background: var(--cream-dark); }
.bg-navy { background: var(--navy); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4 { margin-bottom: 16px; }
.gap-top { margin-top: 56px; }

/* --- Responsive --- */

/* ============================================================
   Mr. Bobby Chatbot Widget
   ============================================================ */

@keyframes bobbyBounce {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-8px) rotate(2deg); }
}
@keyframes chatSlideUp {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes msgPop {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Launcher button */
.bobby-launcher {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}
.bobby-launcher-img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 0 6px 24px rgba(26,42,74,0.30), 0 0 0 4px rgba(240,165,0,0.18);
  animation: bobbyBounce 3s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bobby-launcher:hover .bobby-launcher-img {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(26,42,74,0.40), 0 0 0 6px rgba(240,165,0,0.28);
}
.bobby-launcher-label {
  margin-top: 6px;
  background: var(--navy);
  color: var(--gold-light);
  font-family: 'Fredoka', 'Nunito', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 99px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  border: 1px solid rgba(240,165,0,0.25);
}
.bobby-launcher-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: var(--red);
  border-radius: 50%;
  border: 2px solid #fff;
  display: none;
}
.bobby-launcher-badge.show { display: block; }

/* Chat window */
.bobby-chat-window {
  position: fixed;
  bottom: 116px;
  right: 28px;
  z-index: 9001;
  width: 340px;
  max-width: calc(100vw - 40px);
  background: var(--cream);
  border-radius: 20px;
  box-shadow: 0 12px 48px rgba(26,42,74,0.22), 0 2px 8px rgba(0,0,0,0.10);
  border: 2px solid var(--gold);
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: chatSlideUp 0.3s cubic-bezier(0.22,1,0.36,1) both;
}
.bobby-chat-window.open { display: flex; }

/* Chat header */
.bobby-chat-header {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.bobby-chat-header-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.bobby-chat-header-info { flex: 1; min-width: 0; }
.bobby-chat-header-name {
  font-family: 'Fredoka', 'Nunito', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.bobby-chat-header-status {
  font-size: 0.75rem;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 5px;
}
.bobby-status-dot {
  width: 7px;
  height: 7px;
  background: #4caf50;
  border-radius: 50%;
  display: inline-block;
}
.bobby-chat-close {
  background: rgba(255,255,255,0.12);
  border: none;
  color: rgba(255,255,255,0.8);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
.bobby-chat-close:hover { background: rgba(255,255,255,0.22); color: #fff; }

/* Messages area */
.bobby-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 300px;
  min-height: 180px;
}
.bobby-chat-messages::-webkit-scrollbar { width: 4px; }
.bobby-chat-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

/* Message bubbles */
.bobby-msg {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  animation: msgPop 0.25s ease both;
}
.bobby-msg.user { flex-direction: row-reverse; }
.bobby-msg-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold);
  flex-shrink: 0;
}
.bobby-msg-bubble {
  max-width: 78%;
  padding: 9px 13px;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.5;
  font-family: 'Nunito', Arial, sans-serif;
}
.bobby-msg.bot .bobby-msg-bubble {
  background: var(--white);
  color: var(--text-dark);
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 4px rgba(26,42,74,0.08);
  border: 1px solid var(--border);
}
.bobby-msg.user .bobby-msg-bubble {
  background: var(--navy);
  color: var(--white);
  border-bottom-right-radius: 4px;
}

/* Quick reply chips */
.bobby-quick-replies {
  padding: 8px 14px 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.bobby-chip {
  background: var(--white);
  border: 1.5px solid var(--gold);
  color: var(--navy);
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 99px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}
.bobby-chip:hover {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}

/* Input area */
.bobby-chat-input-row {
  display: flex;
  gap: 8px;
  padding: 10px 12px 14px;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.bobby-chat-input {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: 99px;
  padding: 8px 14px;
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 0.88rem;
  color: var(--text-dark);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}
.bobby-chat-input:focus { border-color: var(--navy); background: #fff; }
.bobby-chat-input::placeholder { color: var(--text-light); }
.bobby-chat-send {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  color: var(--navy-dark);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.18s, transform 0.18s;
}
.bobby-chat-send:hover { background: var(--gold-light); transform: scale(1.08); }

@media (max-width: 480px) {
  .bobby-launcher { bottom: 16px; right: 16px; }
  .bobby-chat-window { bottom: 100px; right: 12px; width: calc(100vw - 24px); }
}

/* ============================================================
   For Parents — Homepage Callout
   ============================================================ */
.parents-callout {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f1c33 0%, #1a2a4a 60%, #243660 100%);
  position: relative;
  overflow: hidden;
}
.parents-callout::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(240,165,0,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.parents-callout-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}
.parents-callout-label {
  display: inline-block;
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(240,165,0,0.14);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.parents-callout-text h2 { color: var(--white); margin-bottom: 16px; line-height: 1.25; }
.parents-callout-text h2 span { color: var(--gold-light); }
.parents-callout-text > p {
  color: rgba(255,255,255,0.80);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 540px;
}
.parents-callout-list { list-style: none; margin-bottom: 32px; }
.parents-callout-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.97rem;
  padding: 6px 0;
}
.parents-callout-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: rgba(240,165,0,0.20);
  color: var(--gold-light);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.parents-callout-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
}
.parents-callout-card-icon { font-size: 2.4rem; margin-bottom: 14px; }
.parents-callout-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 12px; }
.parents-callout-card p {
  color: rgba(255,255,255,0.70);
  font-size: 0.95rem;
  line-height: 1.65;
  font-style: italic;
}
.parents-callout-divider {
  width: 40px; height: 2px;
  background: var(--gold);
  margin: 20px auto;
  border-radius: 2px;
}
.parents-callout-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.parents-callout-tags span {
  background: rgba(240,165,0,0.15);
  color: var(--gold-light);
  border: 1px solid rgba(240,165,0,0.25);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ============================================================
   For Parents — Dedicated Page
   ============================================================ */
.parents-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 80px 0 60px;
}
.parents-hero-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: center;
}
.parents-hero-text .section-label { margin-bottom: 16px; }
.parents-hero-text h1 { color: var(--white); margin-bottom: 20px; line-height: 1.2; }
.parents-hero-text h1 span { color: var(--gold-light); }
.parents-hero-text p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 14px;
  max-width: 540px;
}
.parents-hero-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.parents-content-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  align-items: flex-start;
  max-width: 860px;
  margin: 0 auto;
}
.parents-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  background: rgba(240,165,0,0.12);
  border: 2px solid rgba(240,165,0,0.25);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.parents-icon { font-size: 1.6rem; line-height: 1; }
.parents-text-wrap h2 { margin-bottom: 18px; line-height: 1.3; }
.parents-text-wrap h2 span { color: var(--gold); }
.parents-text-wrap p {
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: 1.02rem;
}
.parents-list {
  list-style: none;
  margin: 12px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.parents-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-mid);
  font-size: 0.97rem;
  padding-left: 4px;
}
.parents-list li::before {
  content: '\2713';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: rgba(240,165,0,0.14);
  color: var(--gold);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}
.parents-quote {
  border-left: 4px solid var(--gold);
  background: rgba(240,165,0,0.07);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 20px 0;
}
.parents-quote p {
  color: var(--navy) !important;
  font-style: italic;
  font-size: 0.97rem !important;
  margin-bottom: 8px !important;
}
.parents-quote p:last-child { margin-bottom: 0 !important; }
.parents-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 20px 0;
}
.parents-pillar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
  box-shadow: var(--shadow);
}
.parents-pillar span { font-size: 1.6rem; display: block; margin-bottom: 6px; }
.parents-pillar p {
  font-size: 0.82rem !important;
  font-weight: 700;
  color: var(--navy) !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}
.parents-tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 20px 0;
}
.parents-tool-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.parents-tool-icon { font-size: 1.5rem; display: block; margin-bottom: 8px; }
.parents-tool-card h4 {
  font-family: 'Fredoka', 'Nunito', Arial, sans-serif;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.parents-tool-card p {
  font-size: 0.88rem !important;
  color: var(--text-mid) !important;
  margin: 0 !important;
  line-height: 1.55 !important;
}
.parents-hope-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  padding: 80px 0;
  text-align: center;
}
.parents-hope-inner { max-width: 640px; margin: 0 auto; }
.parents-hope-label {
  display: inline-block;
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(240,165,0,0.14);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.parents-hope-section h2 { color: var(--white); margin-bottom: 20px; }
.parents-hope-section p {
  color: rgba(255,255,255,0.80);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.parents-hope-closing {
  font-style: italic;
  color: rgba(255,255,255,0.65) !important;
  font-size: 0.97rem !important;
  margin-bottom: 32px !important;
}
.parents-hope-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .hero-badge { display: none; }
  .about-content, .contact-layout { grid-template-columns: 1fr; }
  .membership-tiers-5 { grid-template-columns: repeat(3, 1fr); max-width: 860px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .parents-callout-inner { grid-template-columns: 1fr; gap: 40px; }
  .parents-callout-accent { max-width: 480px; }
  .parents-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .parents-hero-img { max-width: 340px; }
}
@media (max-width: 768px) {
  .parents-content-block { grid-template-columns: 1fr; gap: 20px; }
  .parents-icon-wrap { width: 52px; height: 52px; }
  .membership-tiers-5 { grid-template-columns: repeat(2, 1fr); max-width: 580px; }
  .parents-pillars { grid-template-columns: repeat(2, 1fr); }
  .parents-tools-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-auth { display: none; }
  .nav-toggle { display: flex; }
  .stories-grid { grid-template-columns: repeat(2, 1fr); }
  .club-grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .character-cards { grid-template-columns: 1fr; }
  .membership-tiers { grid-template-columns: 1fr; }
  .membership-tiers-5 { grid-template-columns: 1fr; max-width: 480px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .mascot-img-row { gap: 12px; }
  .mascot-img-row img { width: 100px; height: 100px; }
  .hero { min-height: auto; }
  .hero-content { padding: 60px 0; }
}
@media (max-width: 480px) {
  .stories-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.9rem; }
  .btn { padding: 11px 22px; font-size: 0.95rem; }
  .modal { padding: 28px 20px; }
  .contact-form-wrap { padding: 24px; }
  .club-card { padding: 24px 20px; }
}
