/* =============================================
   Nikki Fletcher SLT – Global Styles
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Open+Sans:wght@300;400;600&display=swap');

:root {
  --purple: #6b4c8a;
  --purple-light: #9b7bb5;
  --purple-dark: #4a2f6b;
  --green: #7aab6b;
  --cream: #faf8f5;
  --text: #333;
  --text-light: #666;
  --border: #e0d8ea;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: #fff;
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--purple-dark);
  line-height: 1.3;
}

a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; color: var(--purple-dark); }

img { max-width: 100%; height: auto; display: block; }

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

/* ── BANNER ── */
.banner {
  background: var(--purple-dark);
  color: #fff;
  text-align: center;
  font-size: 13px;
  padding: 8px 16px;
  font-style: italic;
}

/* ── HEADER / NAV ── */
header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-wrap img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.logo-text { font-family: 'Playfair Display', serif; color: var(--purple-dark); font-size: 15px; line-height: 1.3; }

nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  padding: 6px 10px;
  border-radius: 4px;
  white-space: nowrap;
  transition: background .2s, color .2s;
  text-decoration: none;
}
nav a:hover, nav a.active { background: var(--purple); color: #fff; text-decoration: none; }
nav .btn-support {
  background: var(--green);
  color: #fff;
  border-radius: 20px;
  padding: 6px 14px;
}
nav .btn-support:hover { background: #5d8f4e; }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--purple-dark); margin: 5px 0; transition: .3s; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 480px;
  overflow: hidden;
  background: #2a1a3e;
}
.hero img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.hero-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 24px;
}
.hero-text h1 { font-size: clamp(1.6rem, 4vw, 2.8rem); margin-bottom: 12px; color: #fff; }
.hero-text p { font-size: 1.1rem; max-width: 600px; margin: 0 auto 24px; opacity: .9; }
.hero-text .btn { background: var(--green); color: #fff; padding: 12px 28px; border-radius: 30px; font-weight: 600; display: inline-block; transition: background .2s; text-decoration: none; }
.hero-text .btn:hover { background: #5d8f4e; text-decoration: none; }

/* ── SECTIONS ── */
section { padding: 64px 0; }
section:nth-child(even) { background: var(--cream); }

.section-title {
  font-size: 2rem;
  margin-bottom: 8px;
  color: var(--purple-dark);
}
.section-sub {
  color: var(--text-light);
  margin-bottom: 40px;
  font-size: 1.05rem;
}

/* ── TWO-COL LAYOUT ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.two-col img { border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,.12); }

/* ── CARDS ── */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.1); }
.card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.card p { color: var(--text-light); font-size: .95rem; }
.card .btn-link { display: inline-block; margin-top: 16px; font-weight: 600; color: var(--purple); font-size: .9rem; }

/* ── TESTIMONIALS ── */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial {
  background: #fff;
  border-left: 4px solid var(--purple-light);
  border-radius: 0 8px 8px 0;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.testimonial blockquote { font-style: italic; color: var(--text); margin-bottom: 12px; font-size: .95rem; line-height: 1.7; }
.testimonial cite { font-size: .85rem; color: var(--purple); font-style: normal; font-weight: 600; }

/* ── PRICING TABLE ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.price-card {
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: border-color .2s, box-shadow .2s;
}
.price-card:hover { border-color: var(--purple-light); box-shadow: 0 4px 20px rgba(107,76,138,.12); }
.price-card .price { font-size: 2rem; font-weight: 700; color: var(--purple); margin: 12px 0; font-family: 'Playfair Display', serif; }
.price-card h3 { font-size: 1rem; margin-bottom: 4px; }
.price-card p { font-size: .88rem; color: var(--text-light); line-height: 1.6; margin-top: 12px; }
.price-card .tag { display: inline-block; background: var(--green); color: #fff; border-radius: 20px; font-size: .75rem; padding: 3px 10px; margin-bottom: 8px; }

/* ── LISTS ── */
.styled-list { list-style: none; padding: 0; }
.styled-list li { padding: 6px 0 6px 24px; position: relative; color: var(--text); font-size: .95rem; }
.styled-list li::before { content: '✦'; position: absolute; left: 0; color: var(--purple-light); font-size: .7rem; top: 10px; }

/* ── CONTACT ── */
.contact-box {
  background: var(--purple-dark);
  color: #fff;
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.contact-box h2 { color: #fff; margin-bottom: 16px; }
.contact-box p { opacity: .9; margin-bottom: 8px; }
.contact-box a { color: #d4c4e8; }
.contact-box a:hover { color: #fff; }

/* ── GROWING HOPE BANNER ── */
.growing-hope-banner {
  background: linear-gradient(135deg, var(--purple-dark) 0%, #2a1a3e 100%);
  color: #fff;
  padding: 48px 24px;
  text-align: center;
}
.growing-hope-banner h2 { color: #fff; font-size: 1.8rem; margin-bottom: 12px; }
.growing-hope-banner p { opacity: .9; max-width: 600px; margin: 0 auto 24px; }
.growing-hope-banner .btn-white { background: #fff; color: var(--purple-dark); padding: 12px 28px; border-radius: 30px; font-weight: 700; display: inline-block; transition: background .2s; text-decoration: none; }
.growing-hope-banner .btn-white:hover { background: #f0e8ff; text-decoration: none; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--purple-dark) 0%, #4a2f6b 100%);
  color: #fff;
  padding: 64px 24px 48px;
  text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 8px; }
.page-hero p { opacity: .85; font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ── USEFUL LINKS ── */
.links-section h3 { font-size: 1.1rem; margin: 32px 0 8px; }
.links-section p, .links-section a { font-size: .95rem; line-height: 1.7; color: var(--text); }
.links-section a { color: var(--purple); }
.links-section a:hover { text-decoration: underline; }
.links-section .link-group { margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }

/* ── REGISTRATION BADGES ── */
.badges { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 24px; }
.badge { background: var(--cream); border: 1px solid var(--border); border-radius: 8px; padding: 16px 20px; font-size: .85rem; color: var(--text-light); line-height: 1.5; max-width: 240px; }
.badge strong { display: block; color: var(--purple-dark); margin-bottom: 4px; font-size: .9rem; }

/* ── FOOTER ── */
footer {
  background: #1a0f2e;
  color: rgba(255,255,255,.7);
  text-align: center;
  padding: 32px 24px;
  font-size: .85rem;
}
footer a { color: rgba(255,255,255,.6); }
footer a:hover { color: #fff; }
footer .footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 12px; flex-wrap: wrap; }

/* ── MOBILE NAV ── */
@media (max-width: 900px) {
  nav { display: none; flex-direction: column; position: absolute; top: 84px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 16px; gap: 4px; box-shadow: 0 8px 24px rgba(0,0,0,.1); }
  nav.open { display: flex; }
  nav a { width: 100%; text-align: center; padding: 10px; }
  .hamburger { display: block; }
  header { position: relative; }
}

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse { direction: ltr; }
  .hero { height: 360px; }
  section { padding: 48px 0; }
  .contact-box { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .header-inner { padding: 10px 16px; }
  .logo-text { font-size: 13px; }
}
