/* ============================================================
   Seeds of Success — index.css
   Page-specific styles only. Shared styles are in common.css.
   ============================================================ */

/* 1. Hero section */
.hero {
  position: relative;
  padding: 50px 0 56px;
  background: linear-gradient(135deg, #0d6e4f 0%, #14906a 60%, #f5a623 140%);
  color: #ffffff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.12), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(245, 166, 35, 0.25), transparent 50%);
}

.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  min-height: 100px;
}

.hero-left {
  flex: 1;
  max-width: 560px;
}

.hero-left h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 5vw, 50px);
  line-height: 1.15;
  margin-bottom: 22px;
  font-weight: 700;
}

.hero-left p {
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 18px;
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.video-box {
  width: 100%;
  max-width: 580px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  background: #000;
}

.video-box iframe {
  display: block;
  width: 100%;
  border: 0;
}



/* 2. Mission strip */
.mission-strip {
  background: #ffffff;
  padding: 60px 0;
  text-align: center;
  border-bottom: 1px solid #e8efec;
}

.mission-strip p {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 28px);
  color: #0d6e4f;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}

/* 3. Feature cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(13, 110, 79, 0.08);
  border: 2px solid #e8efec;
  transition: all 0.3s ease;
}

.feature-card:hover {
      transform: translateY(-6px);
      border-color: #0d6e4f;
      box-shadow: 0 16px 38px rgba(13,110,79,0.15);
    }

.feature-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #0d6e4f, #14906a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
}

.feature-card h3 {
  font-family: "Playfair Display", serif;
  color: #0d6e4f;
  font-size: 24px;
  margin-bottom: 12px;
}

.feature-card p {
  color: #5a6b66;
  margin-bottom: 0;
}




/* 5. Responsive */
@media (max-width: 960px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    min-height: auto;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-left h1 {
    font-size: clamp(34px, 8vw, 48px);
  }

  .hero-left p {
    font-size: 16px;
  }

  .video-box {
    max-width: 100%;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0 70px;
  }

  .hero-inner {
    gap: 32px;
  }

  .video-box iframe {
    height: 230px;
  }
}

/* 6. Page transitions */
@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pageFadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-6px);
  }
}