:root {
  /* Brand greens */
  --green-main: #2f7d5b;        
  --green-dark: #256a4c;       
  --green-soft: #e8f4ee;        
  --green-ultra-soft: #f6fbf8; 
  --accent: #ffb703;
  --ink: #1f2933;
  --muted: #8a7f73;
  --white: #ffffff;
  --line: #e3ebe6;
}

/* TWO COLUMN LAYOUT*/
.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.two-col .side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 768px) {

  .two-col {
    display: block !important;
    width: 100%;
  }
  .two-col .main,
  .two-col .side {
    width: 100%;
    max-width: 100%;
  }
  .two-col .side {
    position: static !important;
    margin-top: 24px;
  }
  .card,
  .card-lift,
  .cta,
  .table-card {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  body,
  .critter-club,
  .page-wrap {
    overflow-x: hidden;
  }
}
@media (max-width: 768px) {
  .timeline {
    padding-left: 8px;
    padding-right: 8px;
  }

  .step {
    min-width: 75%;
  }
}
@media (max-width: 768px) {
  .cta {
    border-radius: 20px;
    padding: 40px 24px;
  }

  .cta .btn {
    width: 100%;
    text-align: center;
  }
}

.page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.ve-summer-camp-page {
  background:
    repeating-radial-gradient(
      circle at top left,
      rgba(47, 125, 91, 0.06),
      rgba(47, 125, 91, 0.06) 10px,
      transparent 10px,
      transparent 22px
    ),
    #f6fbf8;
}
.ve-summer-camp-page {
  background:
    repeating-radial-gradient(
      circle at top left,
      rgba(47, 125, 91, 0.05),
      rgba(47, 125, 91, 0.05) 10px,
      transparent 10px,
      transparent 22px
    ),
    var(--green-ultra-soft);
}
.critter-club {
  background: linear-gradient(
    180deg,
    var(--green-ultra-soft) 0%,
    #ffffff 100%
  );
  width: 100%;
}

/* HERO */
.hero {
  background: radial-gradient(
    circle at top,
    #e9f6ef 0%,
    transparent 70%
  );
  padding: 96px 0 72px;
  text-align: center;
}
.hero {
  background-image:
    url('https://villageedu.org/wp-content/uploads/2026/02/yoav-aziz-SpuRsBSqbx8-unsplash.jpg');
     background-size: cover;
      background-position: center 65%; 
      background-repeat: no-repeat;
}

.hero .side {
  margin-top: 12px;
}
.side .card {
  box-shadow: 0 14px 30px rgba(31,41,51,0.06);
}


.hero-inner {
  max-width: 800px;
  margin: auto;
}
.pill {
  background: var(--green-soft);
  color: var(--green-main);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.hero h1 {
  font-size: 48px;
  margin: 16px 0 8px;
  color: #F5F5F5;
  /*text-shadow:*/
  /*  0 2px 8px rgba(255, 255, 255, 0.4),*/
  /*  0 8px 30px rgba(0, 0, 0, 0.25);*/
}
.hero-about h3 {
  font-size: 48px;
  margin: 16px 0 8px;
  color: #F5F5F5;
  /*text-shadow:*/
  /*  0 2px 8px rgba(255, 255, 255, 0.4),*/
  /*  0 8px 30px rgba(0, 0, 0, 0.25);*/
}
.hero-subtitle {
  font-size: 18px;
  color: var(--muted);
}

.hero-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 16px;
  border-radius: 999px;

  font-size: 14px;
  font-weight: 500;

  color: var(--green-main);
  background: #f4fbf7;
  border: 1.5px solid var(--green-main);

  cursor: default;          
  user-select: none;        
}
.hero::before,
.pollinator-hero::before,
.card::after {
  pointer-events: none;
}



.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}
 /* MARQUEE*/
  
  .marquee {
    margin-top: 0px;
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  
  .marquee-track {
    display: flex;
    gap: 40px;
    padding: 18px 0;
    animation: scroll 20s linear infinite;
  }
  
  .marquee span {
    font-weight: 600;
    color: var(--muted);
  }
  
  @keyframes scroll {
    to {
      transform: translateX(-50%);
    }
  }
  @media (max-width: 768px) {
  .marquee-track {
    animation-duration: 45s;
  }
}


/* BUTTONS */
.btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn.primary {
  background: var(--green-main);
  color: var(--white);
  border: none;
  box-shadow:
    0 8px 18px rgba(47, 125, 91, 0.25),
    inset 0 -1px 0 rgba(255,255,255,0.2);
}

.btn.primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.btn.ghost {
  background: transparent;
  color: var(--green-main);
  border: 2px solid var(--green-main);
}

.btn.ghost:hover {
  background: var(--green-soft);
}



.btn.large {
  font-size: 18px;
  padding: 16px 28px;
}

.btn:hover {
  transform: translateY(-2px);
}

/* SECTIONS */
/*section {*/
/*  padding: 64px 24px;*/
/*}*/

/* Scope spacing only to Critter Club sections */
.critter-club .page-wrap > section {
  padding: 64px 0;
}
/* WHAT PARENTS LOVE – 2 COL*/

.parents-love-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.parents-love-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.love-item {
  background: #f4fbf7;
  border: 1px solid #e3efe9;
  padding: 14px 18px;
  border-radius: 14px;

  font-size: 16px;
  color: var(--ink);
}
@media (max-width: 768px) {
  .parents-love-grid {
    grid-template-columns: 1fr;
  }
}


.parents-love ul {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
}

.parents-love li {
  margin: 8px 0;
  color: var(--ink);
}
/* WHAT PARENTS LOVE – ACTION PANEL*/

.parents-actions {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding-top:14px;
  padding: 16px 18px;
  background: var(--green-ultra-soft);

  display: flex;
  flex-direction: column;
  gap: 12px;
}
.parents-love-grid {
  align-items: start; 
}
/* Individual action rows */
.action-link {
  color: var(--green-main);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}

.action-link:hover {
  color: var(--green-dark);
}

/* Fix anchor override */
a.action-link {
  color: var(--green-main);
}

a.action-link:hover {
  color: var(--green-dark);
}


/* Right column links */
.love-links {
  list-style: none;
  padding-left: 0;
}

.love-links li {
  margin: 8px 0;
}

/* Clickable text style */
.love-link {
  color: var(--green-main);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}

.love-link:hover {
  color: var(--green-dark);
}
a.love-link {
  color: var(--green-main);
}
a.love-link:hover {
  color: var(--green-dark);
}
@media (max-width: 600px) {
  .parents-actions {
    margin-top: 16px;
  }
}


/* Mobile: stack nicely */
@media (max-width: 600px) {
  .parents-love-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}


/* Tighter spacing on mobile */
@media (max-width: 768px) {
  .critter-club .page-wrap > section {
    padding: 40px 0;
  }
}

h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 24px;
}

.about-text {
  max-width: 700px;
  margin: 0 auto 32px;
  text-align: center;
  color: var(--muted);
}
.about .main {
  padding-left: 24px;
}


/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: auto;
}

.feature {
  background: var(--white);
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  text-align: center;
}

/* TIMELINE */
.timeline {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px;
  scroll-snap-type: x mandatory;
}

.step {
  min-width: 200px;
  background: var(--white);
  padding: 18px;
  border-radius: 16px;
  text-align: center;
  scroll-snap-align: start;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
/* CAMP IMAGE CAROUSEL*/

/* CAMP GALLERY CARD */
.camp-gallery {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  max-height: 420px; 
}


.gallery-title {
    padding-left: 24px;
  font-size: 20px;
  margin-bottom: 16px;
}

.carousel {
  position: relative;
  overflow: hidden;
  padding: 12px 0;
}

.carousel-track {
  display: flex;
  gap: 16px;
  align-items: center;
  transition: transform 0.4s ease;
}

/* 👇 THIS IS THE KEY */
.carousel-track img {
  height: 220px;           
  width: auto;             
  max-width: 320px;        
  object-fit: contain;    
  border-radius: 14px;
  background: #f7fbf6;     
}


/* Navigation buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;   
  border: none;
  font-size: 28px;
  color: #2f7d5b;
  cursor: pointer;
  padding: 4px 8px;
  z-index: 2;
}
/* CAROUSEL BUTTONS — ISOLATED */
.carousel-btn {
  all: unset;                
  cursor: pointer;
  font-size: 28px;
  font-weight: 600;
  color: var(--primary);
  padding: 8px 12px;
  line-height: 1;
  user-select: none;
}

.carousel-btn:hover {
  opacity: 0.7;
}


.carousel-btn:hover {
  color: #245f46;
}

.carousel-btn:focus {
  outline: none;
  box-shadow: none;
}

.carousel-btn.prev {
  left: 4px;
}

.carousel-btn.next {
  right: 4px;
}


/* SAFETY */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 700px;
  margin: auto;
  text-align: center;
}
/* CTA */
.cta {
  background: linear-gradient(
    135deg,
    #2f7d5b,
    #3f9f77
  );
  color: white;
  border-radius: 32px;

  /* layout */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;

  /* spacing */
  padding: 72px 48px;
  margin: 96px auto 48px;

  max-width: 1100px;
}
.cta {
  box-shadow: 0 24px 48px rgba(0,0,0,0.12);
}


/* CTA heading */
.cta h2 {
  margin: 0;
}

/* CTA text */
.cta p {
  margin: 0;
  opacity: 0.9;
  max-width: 520px;
}

/* CTA button spacing */
.cta .btn {
  margin-top: 12px;
}


/* MOBILE */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .about,
  .day-flow,
  .safety,
  .cta {
    padding: 40px 24px;
    margin: 32px 0;
  }

  .hero h1 {
    font-size: 34px;
  }
}
/* Lists inside cards
.card ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.card li {
  margin: 8px 0;
}

/* Card sections (clean, premium blocks) */
.critter-club .card-section {
  background: var(--white);
  border-radius: 28px;
  padding: 48px 40px;
  margin: 0; /* spacing handled by parent */
  box-shadow: 0 18px 36px rgba(31, 41, 51, 0.06);
  border: 1px solid rgba(227, 235, 230, 0.9);
}

@media (max-width: 768px) {
  .critter-club .card-section {
    padding: 36px 20px;
    border-radius: 22px;
  }
}
/* Head + section layout */
.section-head {
  text-align: center;
  margin-bottom: 18px;
}

.section-head h2 {
  margin-bottom: 8px;
}

.muted {
  color: var(--muted);
}

/* Cards */
.card,
.card-lift {
  background: var(--white);
  border-radius: 22px;
  border: 1px solid rgba(227, 235, 230, 0.95);
  box-shadow: 0 14px 30px rgba(31, 41, 51, 0.06);
}

.table-card {
  padding: 22px;
  margin-bottom: 15px;
}

.table-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.table-top h3 {
  margin: 0 0 6px;
}

.table-top .btn {
  flex-shrink: 0;
}

/* Table */
.table-wrap {
  overflow: auto;
  border-radius: 16px;
  border: 1px solid rgba(227, 235, 230, 0.95);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px; 
  background: var(--white);
}

th, td {
  text-align: left;
  padding: 14px 14px;
  border-bottom: 1px solid rgba(227, 235, 230, 0.9);
  font-size: 14px;
}

th {
  color: var(--ink);
  font-weight: 700;
  background: rgba(246, 251, 248, 0.85);
}

tbody tr:hover td {
  background: rgba(232, 244, 238, 0.45);
}

/* Pricing grid */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 20px;
}

.card-lift {
  padding: 22px;
}

.sub-card {
  background: rgba(246, 251, 248, 0.9);
  border: 1px solid rgba(227, 235, 230, 0.95);
  border-radius: 16px;
  padding: 16px;
  margin-top: 14px;
}

/* Bullets */
.bullets {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--ink);
}

.bullets li {
  margin: 8px 0;
  color: var(--muted);
}

.soft-callout {
  margin-top: 14px;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(255, 183, 3, 0.10);
  border: 1px solid rgba(255, 183, 3, 0.25);
  color: var(--ink);
}

/* Fix your accidental class: "card lift" */
.card.lift {
  padding: 22px;
}


.about,
.day-flow,
.safety {
  background: var(--white);
  border-radius: 28px;
  padding: 64px 48px;
  margin: 64px 0;
  box-shadow: 0 18px 36px rgba(31, 41, 51, 0.06);
}
.hero-actions {
  box-shadow: none !important;
}
.hero-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 10px;          
  margin: 28px 0 36px;
}

.hero-meta {
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}
.hero-meta span {
  padding: 9px 14px;   
}

.hero-actions::before,
.hero-actions::after {
  content: none !important;
}
.hero-actions .btn.primary {
  box-shadow:
    0 12px 28px rgba(47, 125, 91, 0.28),
    inset 0 -1px 0 rgba(255,255,255,0.25);
}
.hero-about {
  margin-top: 12px;
}
.hero-actions {
  display: flex;
  gap: 10px;
}


.hero-about h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.hero-about p {
  max-width: 600px;
  color: var(--muted);
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.pill-item {
  background: #f4fbf7;
  border: 1px solid #e3efe9;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
}
@media (max-width: 768px) {
  .hero-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* 2-COLUMN FIXES (ALIGNMENT)*/
.two-col .main,
.two-col .side {
  text-align: left;
}
.two-col h2,
.two-col .section-head,
.two-col .section-head h2 {
  text-align: left !important;
}
.two-col .about-text {
  max-width: none;
  margin: 0 0 18px;
  text-align: left;
}
.two-col .features {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: none;
  margin: 0;
  gap: 12px;
}

.two-col .feature {
  text-align: left;
  padding: 14px;
  border-radius: 14px;
}
/* MODAL – LEARN MORE */

.learn-more {
  background: none;
  border: none;
  color: var(--green-main);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-left: 6px;
  text-decoration: underline;
}

.learn-more:hover {
  color: var(--green-dark);
}

/* Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(31, 41, 51, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 9999;
}

/* Active */
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Modal card */
.modal-card {
  background: #ffffff;
  max-width: 620px;
  width: calc(100% - 32px);
  padding: 32px 28px;
  border-radius: 22px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  position: relative;
}

/* Actions */
.modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 18px;
  line-height: 1;
  color: #8b8b8b;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.modal-close:hover {
  color: #1f2933;
}

/* Mobile */
@media (max-width: 600px) {
  .modal-card {
    padding: 24px 20px;
  }
}
/* FAQ Modal Styling */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-question {
  font-size: 0.95rem;
  font-weight: 600;
  color: #6b7280; /* gray-ish */
}

.faq-answer {
  font-size: 0.95rem;
  font-weight: 500;
  color: #3f7f6b; /* medium green */
  margin-top: 0.2rem;
}

/* Optional subtle separator */
.faq-item:not(:last-child) {
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}

.faq-answer a {
  color: #3f7f6b;
  font-weight: 600;
  text-decoration: underline;
}

.faq-answer a:hover {
  text-decoration: none;
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem; 
  z-index: 9999;
}

.modal-card {
  background: #fff;
  width: 100%;
  max-width: 560px;
  max-height: 85vh; 
  overflow-y: auto; 
  border-radius: 16px;
  padding: 1.5rem;
  -webkit-overflow-scrolling: touch;
}
/* Safety modal text */
.safety-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #3f7f6b;
  margin-bottom: 1rem;
}

.safety-content strong {
  color: #1f5e4b;
}




