/* =========================
   GLOBAL MOTION
========================= */

.pollinator-hero,
.pollinator-section,
.pollinator-grid,
.pollinator-cta {
  animation: floatIn 0.9s ease both;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.pollinator-hero {
  min-height: 58vh; 
  padding: 90px 20px 80px;

  background-image:
    url('https://villageedu.org/wp-content/uploads/2026/02/aaron-burden-6csuZQ9oZcI-unsplash.jpg');
  background-size: cover;
  background-position: center 52%; 
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;

  position: relative;
  overflow: hidden;
}
.pollinator-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 248, 235, 0.55),
    rgba(240, 255, 248, 0.65)
  );
  z-index: 1;
}
.pollinator-hero h1 {
  position: relative;
  z-index: 2;
  color: #2b2b2b; 
  font-size: 3.8rem;
  letter-spacing: -0.02em;
}
.hero-sub {
  position: relative;
  z-index: 2;
  color: #4f6f63;
  font-size: 1.15rem;
  max-width: 720px;
  margin: 12px auto 0;
}

/*.pill {*/
/*  position: relative;*/
/*  z-index: 2;*/
/*  background: rgba(255, 255, 255, 0.75);*/
/*  color: #2f6f4e;*/
/*  backdrop-filter: blur(6px);*/
/*}*/
.pollinator-hero h1,
.hero-sub {
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.pollinator-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.split-image img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

.split-content {
  max-width: 520px;
}

/* Mobile */
@media (max-width: 768px) {
  .pollinator-split {
    grid-template-columns: 1fr;
  }
}

/* SECTIONS – SOFT BLOCKS */

.pollinator-section {
  max-width: 920px;
  margin: 80px auto;
  padding: 0 20px;
}

.pollinator-section.soft {
  background: linear-gradient(180deg, #ffffff, #f4fff8);
  padding: 70px 50px;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

/* =========================
   GRID – PLAYFUL CARDS
========================= */

.pollinator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  max-width: 1100px;
  margin: 90px auto;
  padding: 0 20px;
}

.card {
  background: linear-gradient(180deg, #ffffff, #f7fffb);
  padding: 36px 34px;
  border-radius: 26px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

/*.card::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  border-radius: 26px;*/
/*  background: linear-gradient(*/
/*    135deg,*/
/*    rgba(255, 209, 102, 0.15),*/
/*    rgba(139, 232, 203, 0.15)*/
/*  );*/
/*  opacity: 0;*/
/*  transition: opacity 0.35s ease;*/
/*}*/

/*.card:hover {*/
/*  transform: translateY(-10px) rotate(-0.5deg);*/
/*  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.15);*/
/*}*/

/*.card:hover::after {*/
/*  opacity: 1;*/
/*}*/

.card h3 {
  color: #1f5f3d;
  margin-bottom: 10px;
}

.card p {
  color: #4b6f5c;
  font-size: 0.95rem;
}
/* =========================
   WHAT STUDENTS LEARN – ROW
========================= */

.pollinator-learning-row {
  max-width: 1400px;
  margin: 120px auto;
  padding: 0 40px;
}

.pollinator-learning-row h2 {
  text-align: center;
  margin-bottom: 64px;
}

.learning-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

.learning-cell {
  padding-left: 20px;
  border-left: 3px solid rgba(79, 111, 99, 0.25);
}

.learning-cell h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
  color: #1f5f3d;
}

.learning-cell p {
  margin: 0;
  font-size: 0.95rem;
  color: #4b6f5c;
  line-height: 1.5;
}

/* Tablet */
@media (max-width: 1024px) {
  .learning-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .learning-row {
    grid-template-columns: 1fr;
  }

  .learning-cell {
    padding-left: 0;
    border-left: none;
    border-top: 3px solid rgba(79, 111, 99, 0.25);
    padding-top: 16px;
  }
}





/* Mobile */
@media (max-width: 768px) {
  .learning-grid {
    grid-template-columns: 1fr;
  }

  .learning-item.wide {
    grid-column: span 1;
  }
}


/* =========================
   STANDARDS – COLOR PILLS
========================= */

.standards span {
  display: inline-block;
  margin: 8px;
  padding: 8px 16px;
  border-radius: 18px;
  font-size: 0.8rem;
  font-weight: 600;
  background: linear-gradient(135deg, #e0f7fa, #e8f5e9);
  color: #1f5f3d;
}

/*  CTA */

.pollinator-cta {
  text-align: center;
  padding: 90px 20px;
  background:
    radial-gradient(circle at top, #fff3b0, transparent 60%),
    linear-gradient(180deg, #ffffff, #f7fffb);
}

.btn-primary {
  display: inline-block;
  margin-top: 32px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #4caf50, #2e7d32);
  color: white;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 18px 40px rgba(76, 175, 80, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(76, 175, 80, 0.6);
}
.contact-links {
  margin-top: 18px;
  font-size: 0.95rem;
  color: #4b6f5c;
}

.contact-links a {
  color: #1f5f3d;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(31, 95, 61, 0.3);
}

.contact-links a:hover {
  border-bottom-color: #1f5f3d;
}
/* CTA GRID LAYOUT */
.cta-grid {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  align-items: start;

  text-align: left; /* overrides center for columns */
}

/* LEFT COLUMN */
.cta-main {
  text-align: left;
}

/* PARTNERS + SPONSORS */
.cta-column h4 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: #1f5f3d;
}

.cta-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cta-column li {
  padding: 6px 0;
  font-size: 0.95rem;
  color: #4b6f5c;
}


/* =========================
   SPLIT SCREEN SECTION
========================= */

.pollinator-split-screen {
  max-width: 1600px;
  margin: 120px auto;
  padding: 0 40px;

  display: grid;
  grid-template-columns: 1.05fr 1.15fr;
  gap: 80px;
  align-items: center;
}

/* LEFT SIDE */

.split-left {
  background: linear-gradient(180deg, #ffffff, #f4fff8);
  padding: 64px;
  border-radius: 36px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.08);
}

.split-main-image {
  width: 100%;
  border-radius: 22px;
  margin-bottom: 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.split-main-image {
  height: 320px;
  object-fit: cover;
}


.split-left h2 {
  margin-bottom: 16px;
  font-size: 2rem;
}
.split-left p {
  font-size: 1.05rem;
}

/* RIGHT SIDE */

.split-right {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.split-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 22px;
  align-items: center;

  background: linear-gradient(180deg, #ffffff, #f7fffb);
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);

  transition: transform 0.3s ease;
}

.split-row:hover {
  transform: translateY(-6px);
}

.split-row img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 16px;
}

.split-row h3 {
  margin-bottom: 6px;
  color: #1f5f3d;
  font-size: 1.3rem;
}
.split-row {
  padding: 32px;
  border-radius: 26px;
}
.split-row p {
  font-size: 1rem;
  color: #4b6f5c;
}


/* MOBILE */

@media (max-width: 900px) {
  .pollinator-split-screen {
    grid-template-columns: 1fr;
  }

  .split-row {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .split-row img {
    height: 160px;
  }
}

