/* ============================================
   BALLINA SHIRE YOUTH ARTISTS
   Pastel Hand-Drawn Theme
   ============================================ */

/* Google Fonts - hand-drawn / playful feel */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&family=Quicksand:wght@300;400;500;600;700&family=Patrick+Hand&display=swap');

/* ---- CSS Variables ---- */
:root {
  /* Pastel palette inspired by the poster artwork */
  --coral: #F4845F;
  --peach: #F9C784;
  --mint: #A8D5BA;
  --lavender: #C3B1E1;
  --sky: #A7C7E7;
  --blush: #F8D0D0;
  --cream: #FFF8F0;
  --warm-white: #FFFDF9;
  --soft-orange: #F7A072;
  --deep-green: #4A7C59;
  --charcoal: #3A3A3A;
  --muted-navy: #2C3E50;

  /* Typography */
  --font-hand: 'Caveat', cursive;
  --font-body: 'Quicksand', sans-serif;
  --font-accent: 'Patrick Hand', cursive;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Hand-drawn decorative elements ---- */
.squiggle-divider {
  width: 100%;
  height: 40px;
  background: none;
  position: relative;
  margin: 20px 0;
}

.squiggle-divider::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    var(--coral) 0px,
    var(--coral) 10px,
    transparent 10px,
    transparent 15px,
    var(--lavender) 15px,
    var(--lavender) 25px,
    transparent 25px,
    transparent 30px,
    var(--mint) 30px,
    var(--mint) 40px,
    transparent 40px,
    transparent 45px
  );
  border-radius: 2px;
}

/* ---- Doodle border style ---- */
.doodle-border {
  border: 3px solid var(--charcoal);
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
}

.doodle-border-soft {
  border: 2px solid var(--lavender);
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
}

/* ---- Navigation ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
  background: rgba(255, 248, 240, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px dashed var(--peach);
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo .logo-text {
  font-family: var(--font-hand);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--deep-green);
  line-height: 1.1;
}

.nav-logo .logo-text span {
  display: block;
  font-size: 1rem;
  color: var(--coral);
  font-family: var(--font-accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  color: var(--charcoal);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--coral);
}

.nav-cta {
  font-family: var(--font-accent) !important;
  background: var(--coral);
  color: white !important;
  padding: 10px 24px !important;
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  transition: transform 0.3s ease, background 0.3s ease !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: scale(1.05) rotate(-1deg);
  background: var(--soft-orange) !important;
  color: white !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--charcoal);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ---- Hero Section ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: var(--cream);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding-top: 80px;
}

/* Pastel overlay so text is readable over the banner */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 248, 240, 0.82) 0%,
    rgba(248, 208, 208, 0.75) 30%,
    rgba(249, 199, 132, 0.7) 60%,
    rgba(247, 160, 114, 0.75) 100%
  );
  z-index: 1;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--deep-green);
  background: rgba(255, 255, 255, 0.6);
  padding: 8px 24px;
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  margin-bottom: 24px;
  border: 2px dashed var(--mint);
}

.hero h1 {
  font-family: var(--font-hand);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.hero h1 .highlight {
  color: var(--coral);
  position: relative;
  display: inline-block;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: -5px;
  right: -5px;
  height: 12px;
  background: rgba(249, 199, 132, 0.5);
  z-index: -1;
  transform: rotate(-1deg);
  border-radius: 4px;
}

.hero p {
  font-size: 1.25rem;
  color: var(--muted-navy);
  max-width: 600px;
  margin: 0 auto 36px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  background: var(--coral);
  color: white;
  padding: 14px 36px;
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  transform: scale(1.05) rotate(-2deg);
  background: var(--soft-orange);
  box-shadow: 4px 4px 0 var(--peach);
}

.btn-secondary {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  background: transparent;
  color: var(--charcoal);
  padding: 14px 36px;
  border: 2px dashed var(--charcoal);
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--charcoal);
  color: white;
  transform: scale(1.05) rotate(1deg);
}

/* Floating doodle shapes in hero */
.hero-doodle {
  position: absolute;
  z-index: 2;
  opacity: 0.15;
}

.hero-doodle.note1 {
  top: 15%;
  left: 8%;
  font-size: 4rem;
  animation: float 6s ease-in-out infinite;
}

.hero-doodle.note2 {
  top: 25%;
  right: 10%;
  font-size: 3rem;
  animation: float 8s ease-in-out infinite 1s;
}

.hero-doodle.note3 {
  bottom: 20%;
  left: 15%;
  font-size: 3.5rem;
  animation: float 7s ease-in-out infinite 2s;
}

.hero-doodle.note4 {
  bottom: 30%;
  right: 8%;
  font-size: 2.5rem;
  animation: float 9s ease-in-out infinite 0.5s;
}

.hero-doodle.star1 {
  top: 12%;
  right: 25%;
  font-size: 2rem;
  animation: float 5s ease-in-out infinite 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

/* ---- Wavy Section Divider ---- */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -2px;
}

.wave-divider svg {
  width: 100%;
  height: 80px;
  display: block;
}

.wave-divider.flip {
  transform: rotate(180deg);
  margin-top: 0;
  margin-bottom: -2px;
}

/* ---- Section Headings ---- */
.section-label {
  font-family: var(--font-accent);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--coral);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-hand);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

/* ---- About Section ---- */
.about {
  padding: var(--section-padding);
  background: var(--warm-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  overflow: hidden;
  aspect-ratio: 1;
  border: 4px solid var(--peach);
  animation: blobMorph1 8s ease-in-out infinite;
}

/* ---- Blob Morphing Keyframes ---- */
@keyframes blobMorph1 {
  0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  25% { border-radius: 58% 42% 55% 45% / 45% 60% 40% 55%; }
  50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
  75% { border-radius: 42% 58% 45% 55% / 55% 40% 60% 45%; }
}

@keyframes blobMorph2 {
  0%, 100% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
  25% { border-radius: 45% 55% 60% 40% / 55% 42% 58% 45%; }
  50% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  75% { border-radius: 55% 45% 40% 60% / 42% 55% 45% 58%; }
}

@keyframes blobMorph3 {
  0%, 100% { border-radius: 50% 50% 20% 20%; }
  25% { border-radius: 40% 60% 55% 45% / 50% 40% 60% 50%; }
  50% { border-radius: 20% 20% 50% 50%; }
  75% { border-radius: 60% 40% 45% 55% / 40% 50% 50% 60%; }
}

@keyframes blobMorph4 {
  0%, 100% { border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%; }
  25% { border-radius: 60% 40% 40% 60% / 40% 60% 40% 60%; }
  50% { border-radius: 50% 50% 30% 30% / 30% 50% 50% 30%; }
  75% { border-radius: 30% 30% 50% 50% / 50% 30% 30% 50%; }
}

@keyframes blobMorph5 {
  0%, 100% { border-radius: 60% 40% 40% 60% / 40% 60% 40% 60%; }
  33% { border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%; }
  66% { border-radius: 50% 50% 30% 70% / 70% 30% 50% 50%; }
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-wrapper .doodle-accent {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 3px dashed var(--lavender);
  border-radius: 50%;
  top: -20px;
  right: -20px;
  z-index: -1;
}

.about-image-wrapper .doodle-accent-2 {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 3px dashed var(--mint);
  border-radius: 50%;
  bottom: -10px;
  left: -15px;
  z-index: -1;
}

.about-text h3 {
  font-family: var(--font-hand);
  font-size: 2rem;
  color: var(--deep-green);
  margin-bottom: 16px;
}

.about-text p {
  margin-bottom: 16px;
  color: #555;
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.value-tag {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  padding: 8px 20px;
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  background: var(--blush);
  color: var(--charcoal);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-tag:nth-child(2) { background: var(--sky); }
.value-tag:nth-child(3) { background: var(--mint); }
.value-tag:nth-child(4) { background: var(--lavender); }
.value-tag:nth-child(5) { background: var(--peach); }

/* ---- What We Do Section ---- */
.what-we-do {
  padding: var(--section-padding);
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 50px;
}

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 4px 4px 0 0;
}

.service-card:nth-child(1)::before { background: var(--coral); }
.service-card:nth-child(2)::before { background: var(--mint); }
.service-card:nth-child(3)::before { background: var(--lavender); }
.service-card:nth-child(4)::before { background: var(--sky); }
.service-card:nth-child(5)::before { background: var(--peach); }
.service-card:nth-child(6)::before { background: var(--blush); }

.service-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 8px 8px 0 var(--peach);
  border-color: var(--peach);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-family: var(--font-hand);
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.service-card p {
  font-size: 0.95rem;
  color: #666;
}

/* ---- Upcoming Events Section ---- */
.events {
  padding: var(--section-padding);
  background: var(--warm-white);
  position: relative;
}

.event-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
  margin-top: 40px;
  border: 2px solid var(--peach);
  transition: transform 0.3s ease;
}

.event-card:hover {
  transform: translateY(-4px);
}

.event-date-block {
  background: linear-gradient(135deg, var(--coral), var(--soft-orange));
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.event-date-block .month {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.event-date-block .day {
  font-family: var(--font-hand);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

.event-date-block .year {
  font-family: var(--font-accent);
  font-size: 1rem;
  opacity: 0.8;
}

.event-details {
  padding: 40px;
}

.event-details h3 {
  font-family: var(--font-hand);
  font-size: 2rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.event-details .event-venue {
  font-family: var(--font-accent);
  color: var(--coral);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.event-details p {
  color: #666;
  margin-bottom: 20px;
}

.event-tag {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  padding: 4px 14px;
  background: var(--mint);
  border-radius: 20px;
  margin-right: 8px;
  color: var(--deep-green);
}

/* ---- Gallery Preview Section ---- */
.gallery-preview {
  padding: var(--section-padding);
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  border: 3px solid var(--peach);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Animated blob image holders */
.gallery-item:nth-child(1) {
  animation: blobMorph1 8s ease-in-out infinite;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item:nth-child(2) {
  animation: blobMorph2 7s ease-in-out infinite 0.5s;
}

.gallery-item:nth-child(3) {
  animation: blobMorph3 9s ease-in-out infinite 1s;
  border-color: var(--coral);
}

.gallery-item:nth-child(4) {
  animation: blobMorph4 8s ease-in-out infinite 1.5s;
  border-color: var(--lavender);
}

.gallery-item:nth-child(5) {
  animation: blobMorph5 7.5s ease-in-out infinite 0.8s;
  border-color: var(--mint);
}

.gallery-item:nth-child(6) {
  animation: blobMorph1 9s ease-in-out infinite 2s;
  border-color: var(--sky);
}

.gallery-item:nth-child(7) {
  animation: blobMorph2 8.5s ease-in-out infinite 0.3s;
}

.gallery-item:nth-child(8) {
  animation: blobMorph4 7s ease-in-out infinite 1.2s;
  border-color: var(--coral);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 6px 6px 0 var(--peach);
  animation-play-state: paused;
}

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

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

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(58, 58, 58, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.overlay span {
  font-family: var(--font-accent);
  color: white;
  font-size: 1.1rem;
}

.gallery-cta {
  text-align: center;
  margin-top: 50px;
}

/* ---- Full Gallery Page ---- */
.gallery-page {
  padding-top: 120px;
  padding-bottom: 80px;
  background: var(--cream);
  min-height: 100vh;
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 30px 0 40px;
}

.filter-btn {
  font-family: var(--font-accent);
  font-size: 1rem;
  padding: 8px 24px;
  border: 2px dashed var(--lavender);
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--charcoal);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--coral);
  border-color: var(--coral);
  color: white;
  transform: rotate(-2deg);
}

.gallery-masonry {
  columns: 4;
  column-gap: 20px;
  margin-top: 20px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.4s ease;
}

.masonry-item:hover {
  border-color: var(--coral);
  transform: rotate(-1deg);
  box-shadow: 5px 5px 0 var(--peach);
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.masonry-item:hover img {
  transform: scale(1.05);
}

.masonry-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(58, 58, 58, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.masonry-item:hover .overlay {
  opacity: 1;
}

/* ---- Instagram Feed Section ---- */
.instagram {
  padding: var(--section-padding);
  background: var(--warm-white);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 40px;
}

.insta-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  border: 2px solid var(--peach);
  animation: blobMorph1 8s ease-in-out infinite;
}

.insta-item:nth-child(2) { animation: blobMorph2 7s ease-in-out infinite 0.3s; border-color: var(--mint); }
.insta-item:nth-child(3) { animation: blobMorph3 9s ease-in-out infinite 0.6s; border-color: var(--lavender); }
.insta-item:nth-child(4) { animation: blobMorph4 8s ease-in-out infinite 0.9s; border-color: var(--sky); }
.insta-item:nth-child(5) { animation: blobMorph5 7.5s ease-in-out infinite 1.2s; border-color: var(--coral); }
.insta-item:nth-child(6) { animation: blobMorph2 8.5s ease-in-out infinite 1.5s; border-color: var(--blush); }

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

.insta-item:hover img {
  transform: scale(1.1);
}

.insta-item .insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(244, 132, 95, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

.insta-overlay svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.insta-follow {
  text-align: center;
  margin-top: 40px;
}

.insta-follow a {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  color: var(--coral);
  border-bottom: 2px dashed var(--coral);
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.insta-follow a:hover {
  color: var(--deep-green);
  border-color: var(--deep-green);
}

/* ---- Get Involved / CTA Section ---- */
.get-involved {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--peach) 0%, var(--coral) 50%, var(--soft-orange) 100%);
  position: relative;
  overflow: hidden;
}

.get-involved::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
}

.get-involved .container {
  position: relative;
  z-index: 2;
}

.get-involved .section-title {
  color: white;
}

.get-involved .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.involve-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.involve-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 36px 28px;
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  text-align: center;
  transition: all 0.3s ease;
}

.involve-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.1);
}

.involve-card .icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.involve-card h3 {
  font-family: var(--font-hand);
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.involve-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 20px;
}

.involve-card a {
  font-family: var(--font-accent);
  color: var(--coral);
  border-bottom: 2px dashed var(--coral);
  padding-bottom: 2px;
}

/* ---- Meet the Team Section ---- */
.team {
  padding: var(--section-padding);
  background: var(--cream);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 50px;
}

.team-card {
  text-align: center;
}

.team-photo {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 3px solid var(--lavender);
  animation: blobMorph1 8s ease-in-out infinite;
}

.team-card:nth-child(2) .team-photo {
  border-color: var(--coral);
  animation: blobMorph2 7s ease-in-out infinite 0.5s;
}

.team-card:nth-child(3) .team-photo {
  border-color: var(--mint);
  animation: blobMorph3 9s ease-in-out infinite 1s;
}

.team-card:nth-child(4) .team-photo {
  border-color: var(--peach);
  animation: blobMorph4 8s ease-in-out infinite 1.5s;
}

.team-photo:hover {
  animation-play-state: paused;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-family: var(--font-hand);
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.team-card p {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  color: var(--coral);
}

/* ---- Venues Section ---- */
.venues {
  padding: var(--section-padding);
  background: var(--warm-white);
}

.venues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.venue-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 3px solid var(--peach);
  animation: blobMorph1 9s ease-in-out infinite;
}

.venue-card:nth-child(2) {
  animation: blobMorph2 8s ease-in-out infinite 0.7s;
  border-color: var(--mint);
}

.venue-card:nth-child(3) {
  animation: blobMorph4 7.5s ease-in-out infinite 1.3s;
  border-color: var(--lavender);
}

.venue-card:hover {
  animation-play-state: paused;
}

.venue-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.venue-card:hover img {
  transform: scale(1.08);
}

.venue-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(58, 58, 58, 0.8), transparent);
  color: white;
}

.venue-info h3 {
  font-family: var(--font-hand);
  font-size: 1.5rem;
}

.venue-info p {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ---- Footer ---- */
.footer {
  background: var(--charcoal);
  color: white;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo-text {
  font-family: var(--font-hand);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--peach);
  margin-bottom: 12px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--coral);
  transform: translateY(-3px);
}

.footer-social a svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.footer-col h4 {
  font-family: var(--font-hand);
  font-size: 1.3rem;
  color: var(--peach);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 0;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--coral);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--peach);
}

/* ---- Contact Page ---- */
.contact-page {
  padding-top: 120px;
  padding-bottom: 80px;
  background: var(--cream);
  min-height: 100vh;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
}

.contact-info-card {
  background: white;
  padding: 36px;
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateX(8px);
  box-shadow: 4px 4px 0 var(--peach);
}

.contact-info-card .icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-info-card h3 {
  font-family: var(--font-hand);
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.contact-info-card p {
  color: #666;
  font-size: 0.95rem;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 20px;
  border: 2px dashed var(--peach);
}

.contact-form h3 {
  font-family: var(--font-hand);
  font-size: 1.8rem;
  margin-bottom: 24px;
  color: var(--charcoal);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-family: var(--font-accent);
  font-size: 1rem;
  display: block;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0d8cc;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--cream);
  transition: border-color 0.3s ease;
  color: var(--charcoal);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--coral);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ---- Child Safety Notice ---- */
.safety-notice {
  background: var(--mint);
  padding: 24px 30px;
  border-radius: 16px;
  margin-top: 30px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.safety-notice .icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.safety-notice p {
  font-size: 0.9rem;
  color: var(--deep-green);
}

.safety-notice a {
  color: var(--deep-green);
  font-weight: 600;
  text-decoration: underline;
}

/* ---- Placeholder Images ---- */
.placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  text-align: center;
  padding: 20px;
}

.placeholder-img.coral { background: linear-gradient(135deg, var(--coral), var(--soft-orange)); }
.placeholder-img.mint { background: linear-gradient(135deg, var(--mint), var(--deep-green)); }
.placeholder-img.lavender { background: linear-gradient(135deg, var(--lavender), #8B7FBF); }
.placeholder-img.sky { background: linear-gradient(135deg, var(--sky), #6B9BD2); }
.placeholder-img.peach { background: linear-gradient(135deg, var(--peach), var(--coral)); }
.placeholder-img.blush { background: linear-gradient(135deg, var(--blush), var(--lavender)); }

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.lightbox-close:hover {
  background: var(--coral);
}

/* ---- Scroll Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-masonry { columns: 3; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .involve-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transition: right 0.4s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  }

  .nav-links.open { right: 0; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .event-card { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid .gallery-item:nth-child(1) { grid-row: span 1; }
  .gallery-masonry { columns: 2; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .involve-cards { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .venues-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }

  .hero h1 { font-size: clamp(2.5rem, 8vw, 4rem); }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
}
