/* ════════════════════════════════════════════
   Parks Youth — Landing Page Styles
   Font: Poppins (Google Fonts)
   ════════════════════════════════════════════ */

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

:root {
  --navy:        #0D1B2A;
  --navy-deep:   #060f1a;
  --teal:        #2DD4BF;
  --teal-dim:    rgba(45, 212, 191, 0.12);
  --teal-light:  #E6FFFE;
  --coral:       #F05941;
  --coral-dark:  #C9402B;
  --white:       #ffffff;
  --off-white:   #F8FFFE;
  --grey:        #6B7280;
  --text:        #1A1A2E;
  --font:        'Poppins', sans-serif;
  --radius-lg:   1.5rem;
  --radius-md:   1rem;
  --shadow-sm:   0 4px 16px rgba(13, 27, 42, 0.08);
  --shadow-md:   0 12px 40px rgba(13, 27, 42, 0.12);
  --shadow-lg:   0 24px 72px rgba(13, 27, 42, 0.18);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  background: var(--white);
}

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

a {
  color: inherit;
}

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

/* ── Labels ── */
.label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.6rem;
}

.label.light {
  color: rgba(45, 212, 191, 0.9);
}

/* ── Section titles ── */
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.section-title.light { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--grey);
  margin-bottom: 2.75rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.section-sub.light { color: rgba(255,255,255,0.7); }

/* ── Scroll-in animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.35s; }


/* ════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════ */

.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(6, 15, 26, 0.88) 0%,
    rgba(13, 27, 42, 0.72) 55%,
    rgba(13, 27, 42, 0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem 5rem;
  max-width: 720px;
}

.event-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(45, 212, 191, 0.12);
  border: 1px solid rgba(45, 212, 191, 0.35);
  color: var(--teal);
  padding: 0.45rem 1.25rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeDrop 0.9s ease both;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero-content h1 {
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  animation: fadeDrop 0.9s 0.15s ease both;
}

.hero-content h1 .teal { color: var(--teal); }

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.25rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  animation: fadeDrop 0.9s 0.3s ease both;
}

.btn-primary {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 100px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 28px rgba(240, 89, 65, 0.45);
  animation: fadeDrop 0.9s 0.45s ease both;
}

.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(240, 89, 65, 0.55);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  z-index: 2;
  animation: bob 2.5s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

@keyframes fadeDrop {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}


/* ════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════ */

.about {
  padding: 6rem 0 5rem;
  background: var(--off-white);
}

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

.about-text .label { display: block; }

.about-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.about-text p {
  color: #4a4a5a;
  font-size: 1rem;
  margin-bottom: 0.9rem;
}

.about-text p:last-child { margin-bottom: 0; }

.about-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-blob-1 {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 62% 38% 46% 54% / 60% 44% 56% 40%;
  box-shadow: var(--shadow-lg);
}


/* ════════════════════════════════════════════
   PURPOSE
   ════════════════════════════════════════════ */

.purpose {
  background: var(--navy);
  padding: 6rem 0;
  text-align: center;
}

.purpose-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.75rem 0 5rem;
}

.purpose-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(45, 212, 191, 0.18);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  text-align: left;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.purpose-card:hover {
  background: rgba(45, 212, 191, 0.07);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}

.purpose-icon {
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.purpose-card h3 {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.purpose-card p {
  color: rgba(255,255,255,0.68);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* JY Section */
.jy-section {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4rem;
  align-items: center;
  text-align: left;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 4rem;
}

.jy-img { display: flex; justify-content: center; }

.img-blob-2 {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 42% 58% 55% 45% / 56% 42% 58% 44%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.jy-text .label { margin-bottom: 0.4rem; }

.jy-text h3 {
  color: var(--white);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1.1rem;
  letter-spacing: -0.01em;
}

.jy-text p {
  color: rgba(255,255,255,0.7);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 0.9rem;
}

.jy-text p:last-child { margin-bottom: 0; }

/* Friendship Block */
.friendship-block {
  background: var(--teal-dim);
  border: 1px solid rgba(45, 212, 191, 0.22);
  border-radius: var(--radius-lg);
  padding: 2.75rem 3rem;
  text-align: left;
  max-width: 820px;
  margin: 0 auto;
}

.friendship-icon {
  font-size: 2.2rem;
  margin-bottom: 0.85rem;
}

.friendship-block h3 {
  color: var(--white);
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.friendship-block p {
  color: rgba(255,255,255,0.72);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 0.9rem;
}

.friendship-block p:last-child {
  margin-bottom: 0;
  color: rgba(255,255,255,0.92);
}


/* ════════════════════════════════════════════
   WHAT HAPPENS
   ════════════════════════════════════════════ */

.what-happens {
  padding: 6rem 0;
  background: var(--white);
}

.what-happens .label { display: block; }

.activities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.activity-card {
  background: var(--teal-light);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(45, 212, 191, 0.2);
}

.activity-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 0.8rem;
}

.activity-card h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.activity-card p {
  font-size: 0.86rem;
  color: #556;
  line-height: 1.65;
}

.event-details-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  margin-top: 2.5rem;
}

.detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  flex: 1;
  text-align: center;
}

.detail-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
}

.detail-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.detail-venue-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.detail-venue-link:hover { color: var(--teal); }

.detail-address {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.detail-maps-link {
  color: var(--teal);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  transition: opacity 0.2s;
}
.detail-maps-link:hover { opacity: 0.75; }


/* ════════════════════════════════════════════
   GALLERY
   ════════════════════════════════════════════ */

.gallery {
  padding: 6rem 0;
  background: var(--off-white);
  overflow: hidden;
}

.gallery .label { display: block; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
  margin-top: 2.5rem;
}

.gallery-item {
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.09); }

/* Shapes */
.shape-circle {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.shape-blob {
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  box-shadow: var(--shadow-md);
}

/* Hex uses clip-path so we use filter for the shadow */
.shape-hex {
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  filter: drop-shadow(0 12px 20px rgba(13, 27, 42, 0.15));
}

.shape-oval {
  border-radius: 40% 60% 55% 45% / 68% 68% 32% 32%;
  box-shadow: var(--shadow-md);
}


/* ════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════ */

.testimonials {
  padding: 6rem 0;
  background: var(--white);
}

.testimonials .label { display: block; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.testimonial-card {
  background: var(--off-white);
  border: 1px solid #e2f5f3;
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 0.9rem;
  left: 1.5rem;
  font-size: 4.5rem;
  color: var(--teal);
  font-weight: 900;
  line-height: 1;
  opacity: 0.35;
  font-family: Georgia, serif;
}

.quote {
  color: #4a4a5a;
  font-size: 0.93rem;
  line-height: 1.78;
  margin-bottom: 1.5rem;
  padding-top: 1.25rem;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  letter-spacing: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 700;
}

.testimonial-author span {
  display: block;
  font-size: 0.78rem;
  color: var(--grey);
}


/* ════════════════════════════════════════════
   REGISTER
   ════════════════════════════════════════════ */

.register {
  background: linear-gradient(145deg, var(--navy) 0%, #0a2440 100%);
  padding: 6rem 0 7rem;
  text-align: center;
}

.register .label,
.register .section-title,
.register .section-sub {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding-bottom: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(0,0,0,0.32);
}

/* Registration CTA — opens MS Forms full-screen (no iframe scroll issues on any device) */
.form-cta {
  padding: 2.75rem 2rem 2rem;
  text-align: center;
}

.form-cta-emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 0.85rem;
}

.form-cta h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
}

.form-cta > p {
  color: var(--grey);
  font-size: 0.97rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.btn-open-form {
  display: block;
  background: var(--coral);
  color: var(--white);
  padding: 1.15rem 1.5rem;
  border-radius: 0.9rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(240, 89, 65, 0.35);
  max-width: 420px;
  margin: 0 auto;
}

.btn-open-form:hover { background: var(--coral-dark); box-shadow: 0 10px 32px rgba(240,89,65,0.45); }
.btn-open-form:active { transform: scale(0.98); }

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.45rem;
}

.required { color: var(--coral); font-size: 0.85rem; }
.optional  { color: var(--grey);  font-size: 0.78rem; font-weight: 400; }

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
  width: 100%;
  padding: 0.88rem 1.1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.18);
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 0.2rem;
}

.radio-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.93rem;
  color: #444;
  line-height: 1.45;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.65rem;
  transition: border-color 0.2s, background 0.2s;
}

.radio-option:has(input:checked) {
  border-color: var(--teal);
  background: rgba(45, 212, 191, 0.06);
}

.radio-option input[type="radio"] {
  margin-top: 0.15rem;
  accent-color: var(--teal);
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
}

.btn-submit {
  width: 100%;
  padding: 1.1rem;
  background: var(--coral);
  color: var(--white);
  border: none;
  border-radius: 0.85rem;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-top: 0.75rem;
  letter-spacing: 0.01em;
}

.btn-submit:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(240, 89, 65, 0.4);
}

.btn-submit:active {
  transform: translateY(0);
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--grey);
  margin-top: 0.75rem;
  padding: 0 1.25rem;
  line-height: 1.6;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 2rem 0 1rem;
}

.success-icon {
  width: 68px;
  height: 68px;
  background: var(--teal);
  color: var(--navy);
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.form-success h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.form-success p {
  color: #4a4a5a;
  font-size: 1rem;
  line-height: 1.65;
}

.success-sub {
  color: var(--grey) !important;
  font-size: 0.9rem !important;
  margin-top: 0.4rem;
}


/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */

.footer {
  background: var(--navy-deep);
  padding: 2.25rem 0;
  text-align: center;
}

.footer-brand {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.footer p {
  color: rgba(255,255,255,0.45);
  font-size: 0.84rem;
  margin-bottom: 0.3rem;
}

.footer a {
  color: var(--teal);
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer a:hover { opacity: 0.75; }

.footer-note {
  font-size: 0.82rem !important;
  color: rgba(255,255,255,0.5) !important;
  margin-top: 0.6rem;
}


/* ════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
   ════════════════════════════════════════════ */

@media (max-width: 900px) {
  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-img { order: -1; }

  .img-blob-1 { max-width: 340px; }

  /* Purpose */
  .purpose-cards {
    grid-template-columns: 1fr;
  }

  .jy-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .jy-img { order: -1; }
  .img-blob-2 { max-width: 300px; }
  .jy-text .label { display: block; }

  .friendship-block { padding: 2rem; }

  /* What happens */
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-details-bar {
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.75rem;
  }

  .detail-divider {
    width: 60px;
    height: 1px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}


/* ════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 600px)
   ════════════════════════════════════════════ */

@media (max-width: 600px) {
  /* Hero */
  .hero-content h1 { font-size: 2.5rem; letter-spacing: -0.025em; }

  .hero-sub { font-size: 0.97rem; }

  .event-badge {
    font-size: 0.68rem;
    padding: 0.4rem 0.9rem;
    gap: 0.4rem;
  }

  .btn-primary {
    padding: 0.9rem 1.75rem;
    font-size: 0.97rem;
  }

  /* Sections */
  .section-title { font-size: 1.65rem; }

  .section-sub { max-width: 100%; }

  .about { padding: 3.5rem 0; }

  .about-text h2 { font-size: 1.6rem; }

  .purpose { padding: 3.5rem 0; }
  .purpose-cards { margin-bottom: 3rem; }
  .purpose-card { padding: 1.75rem; }

  .friendship-block { padding: 1.75rem 1.25rem; }

  .what-happens { padding: 3.5rem 0; }
  /* Stack activities to 1 column on small phones */
  .activities-grid { grid-template-columns: 1fr; }

  .gallery { padding: 3.5rem 0; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
  /* Simplify shapes on small screens so they don't look squished */
  .shape-blob  { border-radius: 50%; }
  .shape-hex   { clip-path: none; border-radius: 50%; }
  .shape-oval  { border-radius: 50%; }

  .testimonials { padding: 3.5rem 0; }
  .testimonials-grid { max-width: 100%; }

  /* Register */
  .register { padding: 3.5rem 0 4.5rem; }
  .form-cta { padding: 2rem 1.25rem 1.5rem; }
}

/* ════════════════════════════════════════════
   RESPONSIVE — SMALL PHONES (≤ 400px)
   ════════════════════════════════════════════ */

@media (max-width: 400px) {
  .hero-content h1 { font-size: 2.1rem; }
  .event-badge { font-size: 0.62rem; }
  .container { padding: 0 1rem; }
  .purpose-card { padding: 1.5rem 1.25rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
}
