/* Homepage: hero slider, quick links, disease grid, marquee, awareness slider */

/* Hero slider */
.hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: var(--color-dark);
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 1;
  transition: opacity .9s ease;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,30,22,.82) 0%, rgba(10,30,22,.5) 52%, rgba(10,30,22,.08) 100%);
  display: flex;
  align-items: center;
}
.hero-slide-content { max-width: 620px; }
.hero-title {
  color: #fff;
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 18px;
  letter-spacing: -.025em;
  text-shadow: 0 2px 16px rgba(0,0,0,.22);
}
.hero-sub {
  color: rgba(255,255,255,.86);
  font-size: 17px;
  line-height: 1.68;
  margin: 0 0 32px;
  letter-spacing: -.01em;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: background var(--duration-fast);
}
.hero-arrow:hover { background: rgba(255,255,255,.32); }
.hero-arrow-left { left: 20px; }
.hero-arrow-right { right: 20px; }

.carousel-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
  align-items: center;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,.42);
  border: none;
  padding: 0;
  flex-shrink: 0;
  transition: all .3s ease;
}
.carousel-dot.active { width: 28px; background: #fff; }

/* Quick links bar */
.quick-links-bar { background: #fff; border-bottom: 1px solid var(--color-border); }
.quick-links-grid { display: grid; grid-template-columns: repeat(7, 1fr); }
.quick-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 12px;
  border-right: 1px solid var(--color-border);
  color: var(--color-dark);
  transition: transform var(--duration-slow), box-shadow var(--duration-slow);
}
.quick-link:last-child { border-right: none; }
.quick-link:hover { transform: translateY(-5px); }
.quick-link-icon {
  width: 52px;
  height: 52px;
  background: var(--color-mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quick-link-label { font-size: 11px; font-weight: 700; text-align: center; line-height: 1.3; letter-spacing: -.01em; }

/* Impact stats */
.stats-section { background: var(--color-dark); padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-tile.stat-tile-highlight {
  background: rgba(0,117,74,.22);
  border-color: rgba(0,117,74,.38);
}

/* About section */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.objectives-card h3 {
  font-size: 17px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--color-mint);
  margin-bottom: 24px;
}
.objectives-list { display: flex; flex-direction: column; gap: 18px; }
.objectives-list li { display: flex; gap: 14px; align-items: flex-start; }
.objectives-list li::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-primary); flex-shrink: 0; margin-top: 7px;
}
.objectives-list li p { font-size: 14px; line-height: 1.66; color: rgba(0,0,0,.7); }

/* Disease grid */
.vpd-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.vpd-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 26px 14px;
  border-radius: 18px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.vpd-card:hover { transform: translateY(-4px); box-shadow: 0 10px 26px rgba(0,0,0,.13); }
.vpd-card-icon {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; letter-spacing: .04em; flex-shrink: 0;
}
.vpd-card-name { font-size: 11.5px; font-weight: 600; text-align: center; line-height: 1.4; letter-spacing: -.01em; }

/* Schedule tabs */
.schedule-tabs { display: flex; gap: 10px; justify-content: center; margin-bottom: 32px; flex-wrap: wrap; }
.schedule-tab {
  padding: 10px 26px; border-radius: 50px; border: none; cursor: pointer;
  font-weight: 600; font-size: 14px; font-family: inherit;
  background: #fff; color: var(--color-primary);
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
  transition: all .22s ease;
}
.schedule-tab.active { background: var(--color-primary); color: #fff; box-shadow: 0 2px 12px rgba(0,98,65,.28); }
.schedule-image-wrap {
  background: #fff; border-radius: 24px; padding: 28px;
  box-shadow: var(--shadow-card); border: 1px solid var(--color-border-soft);
  width: fit-content; max-width: 100%; margin: 0 auto;
}
.schedule-image {
  display: block;
  max-width: 100%; max-height: 640px; width: auto; height: auto;
  border-radius: 14px;
  background-color: #fafaf8;
  cursor: zoom-in;
}

/* News & events (homepage teaser) */
.news-content { text-align: center; max-width: 640px; margin: 0 auto; padding-top: 16px; }
.social-follow { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.social-follow-item {
  display: flex; align-items: center; gap: 12px; padding: 14px 18px;
  background: rgba(30,57,50,.1); border-radius: 14px; color: inherit;
  transition: background var(--duration-fast);
}
.social-follow-item:hover { background: rgba(30,57,50,.18); }
.social-follow-name { font-size: 13px; font-weight: 700; color: #1E3932; text-align: left; }
.social-follow-sub { font-size: 12px; color: #3a5a4a; text-align: left; }

/* Awareness / IEC slider */
.awareness-slider {
  position: relative; border-radius: 22px; overflow: hidden; height: 420px; background: #122a20;
}
.awareness-track {
  display: grid; height: 100%; gap: 4px;
}
.awareness-item {
  background-size: contain; background-repeat: no-repeat; background-position: center; background-color: #122a20;
  cursor: zoom-in;
}
.awareness-slider .hero-arrow {
  width: 46px; height: 46px;
  background: var(--color-mint);
  color: var(--color-dark);
}
.awareness-slider .hero-arrow:hover { background: #fff; }
.awareness-slider .carousel-dot { background: var(--color-mint); }
.awareness-slider .carousel-dot.active { background: var(--color-dark); }

/* Donors marquee */
.marquee-wrap { overflow: hidden; position: relative; }
.marquee-fade-l, .marquee-fade-r {
  position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.marquee-fade-l { left: 0; background: linear-gradient(to right, var(--color-canvas), transparent); }
.marquee-fade-r { right: 0; background: linear-gradient(to left, var(--color-canvas), transparent); }
.marquee-track {
  display: flex; gap: 20px; width: max-content;
  animation: marquee-scroll 38s linear infinite;
}
.marquee-logo {
  background: #fff; border-radius: 14px; padding: 16px 28px; border: 1px solid var(--color-border-soft);
  min-width: 160px; height: 96px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: var(--shadow-card-sm);
}
.marquee-logo img { max-height: 64px; max-width: 120px; object-fit: contain; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
