:root {
  --primary: #0a7d3b;
  --primary-dark: #055226;

  /* Extra playful colours */
  --yellow: #ffd53d;
  --purple: #7c3aed;
  --pink: #ff6ea8;
  --blue: #22a2ff;

  --bg: #fdf7ff;
  --bg-soft: #f5f7fa;
  --text: #222;
  --text-muted: #666;
  --radius: 12px;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 18px 40px rgba(0, 0, 0, 0.16);
  --transition: 0.25s ease;
  --max-width: 1120px;
  --header-height: 70px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top left, #fff7e3 0, transparent 50%),
    radial-gradient(circle at top right, #e6f4ff 0, transparent 55%),
    radial-gradient(circle at bottom left, #ffe6f3 0, transparent 55%),
    var(--bg-soft);
  color: var(--text);
}

/* HEADER / NAVBAR  */
.header {
  position: sticky;
  top: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.1rem;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(24, 40, 32, 0.08);
}

.logo a {
  text-decoration: none;
  font-weight: 800;
  color: var(--text);
  font-size: 1.3rem;
}
.logo span {
  color: var(--primary);
}

.nav {
  display: flex;
  gap: 1.5rem;
}
.nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}
.nav a.active {
  color: var(--primary);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--blue));
  transition: var(--transition);
}
.nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  border: none;
  background: none;
  font-size: 1.6rem;
}

/* MAIN LAYOUT */
main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.2rem 1.1rem 3.5rem;
}

/* HERO  */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(10, 125, 59, 0.08),
    rgba(34, 162, 255, 0.09),
    rgba(255, 109, 168, 0.08)
  );
  border-radius: 22px;
  padding: 2.1rem 1.8rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.tagline {
  display: inline-flex;
  align-items: center;          /* center logo + text vertically */
  gap: 0.45rem;                 /* little space between logo and text */
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 700;
  background: #e7f9ee;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
}


.hero-text h1 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  margin: 0.7rem 0 0.4rem;
}
.hero-text h1 span {
  background: linear-gradient(90deg, var(--primary), var(--blue));
  -webkit-background-clip: text;
  color: transparent;
}
.verse {
  color: var(--text-muted);
  max-width: 30rem;
}
.event-info {
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-chips {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

/* Colourful chips under hero */
.chip {
  font-size: 0.75rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-weight: 600;
  color: #222;
}
.chip-faith {
  background: #e7f9ee;
  border: 1px solid rgba(10, 125, 59, 0.25);
}
.chip-fun {
  background: #fff3d6;
  border: 1px solid rgba(255, 213, 61, 0.4);
}
.chip-friends {
  background: #efe0ff;
  border: 1px solid rgba(124, 58, 237, 0.4);
}
.chip-future {
  background: #e0f1ff;
  border: 1px solid rgba(34, 162, 255, 0.4);
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-strong);
  object-fit: cover;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.75rem 1.6rem;
  border: 2px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease, border 0.2s ease;
}

.btn.primary {
  background: linear-gradient(120deg, var(--primary), var(--blue));
  color: #fff;
  box-shadow: 0 12px 30px rgba(10, 125, 59, 0.3);
}
.btn.primary:hover {
  background: linear-gradient(120deg, var(--primary-dark), var(--blue));
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(10, 125, 59, 0.35);
}

.btn.outline {
  background: #fff;
  color: var(--primary);
  border-color: var(--primary);
}
.btn.outline:hover {
  background: linear-gradient(120deg, #ffffff, #e8fdf3);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn.full-width {
  width: 100%;
}

/* Highlights */
.highlights {
  margin-top: 3rem;
}
.highlights h2 {
  text-align: center;
  margin-bottom: 0.6rem;
}
.section-subtitle {
  text-align: center;
  margin-top: 0;
  margin-bottom: 1.6rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, translate 0.2s ease;
}
.card h3 {
  margin-top: 0;
}

/* Colour variants for cards */
.card-yellow {
  border-top: 4px solid var(--yellow);
}
.card-purple {
  border-top: 4px solid var(--purple);
}
.card-blue {
  border-top: 4px solid var(--blue);
}
.card-pink {
  border-top: 4px solid var(--pink);
}

/* Card hover animation */
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

/* TEENS EXPERIENCE SECTION */
.teens-experience {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.experience-text h2 {
  margin-top: 0;
}
.experience-text p {
  color: var(--text-muted);
}

.pill-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}
.pill-faith {
  background: #e7f9ee;
  border: 1px solid rgba(10, 125, 59, 0.3);
}
.pill-fun {
  background: #fff3d6;
  border: 1px solid rgba(255, 213, 61, 0.4);
}
.pill-friends {
  background: #efe0ff;
  border: 1px solid rgba(124, 58, 237, 0.35);
}
.pill-future {
  background: #e0f1ff;
  border: 1px solid rgba(34, 162, 255, 0.4);
}

/* Colour bubbles for teens feelings */
.experience-bubbles {
  position: relative;
  min-height: 220px;
}
.bubble {
  position: absolute;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1a1a1a;
  box-shadow: var(--shadow);
}
.bubble-1 {
  top: 8%;
  left: 5%;
  background: #e7f9ee;
}
.bubble-2 {
  top: 45%;
  right: 4%;
  background: #efe0ff;
}
.bubble-3 {
  bottom: 10%;
  left: 10%;
  background: #fff3d6;
}
.bubble-4 {
  bottom: 5%;
  right: 12%;
  background: #e0f1ff;
}

/* CTA STRIP */
.cta-strip {
  margin-top: 3rem;
  padding: 1.5rem 1.6rem;
  border-radius: 20px;
  background: linear-gradient(
    120deg,
    rgba(10, 125, 59, 0.97),
    rgba(34, 162, 255, 0.96)
  );
  color: #ffffff;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
  gap: 1.2rem;
  align-items: center;
}
.cta-text h2 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}
.cta-text p {
  margin: 0;
  font-size: 0.94rem;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}
.cta-strip .btn.primary {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}
.cta-strip .btn.outline {
  border-color: #ffffff;
  color: #ffffff;
  background: transparent;
}
.cta-strip .btn.outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* SIMPLE ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Apply animation on load */
.hero-text {
  animation: fadeUp 0.7s ease-out both;
}
.hero-image {
  animation: fadeUp 0.8s ease-out both;
  animation-delay: 0.15s;
}
.highlight-grid .card:nth-child(1) {
  animation: fadeInScale 0.6s ease-out both;
  animation-delay: 0.1s;
}
.highlight-grid .card:nth-child(2) {
  animation: fadeInScale 0.6s ease-out both;
  animation-delay: 0.2s;
}
.highlight-grid .card:nth-child(3) {
  animation: fadeInScale 0.6s ease-out both;
  animation-delay: 0.3s;
}
.highlight-grid .card:nth-child(4) {
  animation: fadeInScale 0.6s ease-out both;
  animation-delay: 0.4s;
}
.teens-experience {
  animation: fadeUp 0.7s ease-out both;
  animation-delay: 0.25s;
}
.cta-strip {
  animation: fadeUp 0.7s ease-out both;
  animation-delay: 0.35s;
}

/* RESPONSIVE  */
@media (max-width: 900px) {
  main {
    padding: 2rem 1rem 3rem;
  }

  .hero {
    grid-template-columns: 1fr;
  }
  .hero-image {
    order: -1;
  }
  .highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .teens-experience {
    grid-template-columns: 1fr;
  }
  .experience-bubbles {
    margin-top: 0.5rem;
  }

  .cta-strip {
    grid-template-columns: 1fr;
  }
  .cta-buttons {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .header {
    padding: 0 1rem;
  }

  .hero {
    gap: 1.4rem;
    padding: 1.6rem 1.3rem;
  }

  .hero-text h1 {
    font-size: 1.9rem;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .experience-bubbles {
    min-height: 180px;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    background: #fff;
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .nav.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle {
    display: block;
  }
}

/* ===== SUCCESS MODAL (used by forms) ===== */

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
}

.modal.show {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
}

.modal-content {
  position: relative;
  z-index: 1;
  max-width: 380px;
  width: 90%;
  background: #ffffff;
  border-radius: 18px;
  padding: 1.7rem 1.5rem 1.3rem;
  box-shadow: var(--shadow-strong);
  text-align: center;
  animation: fadeInScale 0.35s ease-out;
}

.modal-content h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.modal-content .modal-message {
  margin-bottom: 1.1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Make the OK button a bit wider inside modal */
.modal-content .btn {
  min-width: 120px;
  justify-content: center;
}
/* NAVBAR LOGO */
.logo img {
  height: 55px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo2 {
  height: 26px;                 /* much smaller so it fits inside pill */
  width: auto;
  object-fit: contain;
  display: block;
}


/* HERO LOGO */
.hero-logo {
  text-align: center;
  margin-bottom: 1.5rem;
}

.hero-logo img {
  height: 140px;
  width: auto;
  animation: fadeInScale 0.8s ease-out both;
}

@media (max-width: 700px) {
  .hero-logo img {
    height: 100px;
  }
}

/* FOOTER LOGO */
.footer-logo {
  display: block;
  height: 55px;
  margin: 0 auto 0.5rem;
}

