/* =========================
   HERO
========================= */

.hero {
  padding: 180px 100px 80px;
  max-width: 1400px;
  margin: auto;
}

.hero h1 {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero p {
  max-width: 700px;
  font-size: 20px;
  line-height: 1.9;
  margin-bottom: 40px;
}

/* =========================
   HERO BUTTONS
========================= */

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* =========================
   RESOURCES SECTION
========================= */

.resources {
  max-width: 1400px;
  margin: auto;
  padding: 40px 100px 100px;
}

.small-title {
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 800;
  color: #777;
  margin-bottom: 10px;
}

.section-title {
  font-size: 44px;
  font-weight: 900;
  margin-bottom: 40px;
}

/* =========================
   BENTO GRID
========================= */

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-radius: 28px;
  padding: 34px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.5);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.icon-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.card-content {
  margin-top: auto;
}

.card h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
}

.card p {
  color: #666;
  line-height: 1.6;
}

/* =========================
   CARD COLORS
========================= */

.green .icon-circle {
  background: rgba(45,106,79,0.1);
  color: #2D6A4F;
}

.red .icon-circle {
  background: rgba(188,71,73,0.1);
  color: #BC4749;
}

.darkgreen .icon-circle {
  background: rgba(56,102,65,0.1);
  color: #386641;
}

.lightgreen .icon-circle {
  background: rgba(106,153,78,0.1);
  color: #6A994E;
}

.lime .icon-circle {
  background: rgba(162,209,73,0.1);
  color: #A2D149;
}

.deepgreen .icon-circle {
  background: rgba(27,67,50,0.1);
  color: #1B4332;
}

/* =========================
   MARKET DAY BANNER
========================= */

.market-banner {
  max-width: 1400px;
  margin: 0 auto 48px;
  padding: 0 100px;
}

.market-banner-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 26px 40px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.market-banner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.10);
}

/* thin four-color stripe echoing the Eke/Orie/Afọ/Nkwọ cycle */
.market-banner-stripe {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: repeating-linear-gradient(
    90deg,
    #A6522D 0 8%, #3B6E4E 8% 16%, #C9922E 16% 24%, #6B4A34 24% 32%
  );
}

.market-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  width: 100%;
}

.market-banner-text { color: #222; }

.market-banner-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 6px;
}

.market-banner-headline { margin: 0 0 4px; }

.market-day-name {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(120deg, #15803D, #6A994E 50%, #C9922E);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.market-banner-sub {
  margin: 0;
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  max-width: 380px;
}

/* ---- CTA button: 3D keycap + shine sweep ---- */

.market-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  background: linear-gradient(180deg, #1F9D4C, #15803D);
  text-decoration: none;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow:
    0 10px 0 -5px rgba(0,0,0,0.18),
    0 14px 24px rgba(21,128,61,0.28),
    inset 0 1px 0 rgba(255,255,255,0.25);
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.market-cta:hover {
  transform: translateY(-5px);
  box-shadow:
    0 15px 0 -5px rgba(0,0,0,0.18),
    0 22px 32px rgba(21,128,61,0.32),
    inset 0 1px 0 rgba(255,255,255,0.25);
}

.market-cta:active {
  transform: translateY(-1px);
  box-shadow:
    0 6px 0 -3px rgba(0,0,0,0.18),
    0 8px 14px rgba(21,128,61,0.24),
    inset 0 1px 0 rgba(255,255,255,0.25);
}

.market-cta-icon { transition: transform 0.3s ease; }
.market-cta:hover .market-cta-icon { transform: translateX(5px); }

.market-cta-shine {
  position: absolute;
  top: 0; left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
  pointer-events: none;
}
.market-cta:hover .market-cta-shine { left: 130%; }




/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {

  .hero {
    padding: 160px 40px;
    text-align: center;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .resources {
    padding: 40px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 700px) {

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 18px;
  }
}

@media (max-width: 1100px) {
  .market-banner { padding: 0 40px; margin-bottom: 32px; }
  .market-banner-card { padding: 22px 28px; }
  .market-banner-content { flex-direction: column; text-align: center; }
  .market-banner-sub { max-width: none; }
}

@media (max-width: 700px) {
  .market-cta { width: 100%; justify-content: center; }
}