body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #222;
  padding-bottom: 80px;
}

/* COMMON */
h1, h2, h3 {
  font-family: 'The Seasons', serif;
}

.badge {
  display: inline-block;
  background: rgba(101,178,21,0.15);
  color: #65b215;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 14px;
  margin-bottom: 10px;
}

.badge.dark {
  background: rgba(101,178,21,0.2);
}

/* INTRO */
.about-intro {
  text-align: center;
  padding: 48px 16px 32px;
  max-width: 720px;
  margin: auto;
}

.about-intro h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.about-intro p {
  color: #666;
  font-size: 16px;
}

/* SECTIONS */
.about-section {
  max-width: 720px;
  margin: 48px auto;
  padding: 0 16px;
  text-align: center;
}

.about-section p {
  color: #666;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.about-section ul {
  text-align: left;
  max-width: 520px;
  margin: 20px auto;
  color: #555;
}

.about-section li {
  margin-bottom: 8px;
}

/* FOUNDER */
.founder-section {
  padding: 48px 16px;
}

.founder-card {
  max-width: 980px;
  margin: auto;
  background: #0d1309;
  color: #fff;
  border-radius: 22px;
  display: flex;
  gap: 28px;
  padding: 28px;
}

.founder-card img {
  width: 260px;
  height: 340px;
  object-fit: cover;
  border-radius: 18px;
}

.founder-info h3 {
  font-size: 2rem;
  margin-bottom: 6px;
}

.role {
  color: #8fd13f;
  font-size: 14px;
  margin-bottom: 16px;
}

blockquote {
  font-style: italic;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.founder-meta {
  display: flex;
  gap: 28px;
}

.founder-meta div {
  font-size: 13px;
  color: #ccc;
}

.founder-meta i {
  color: #65b215;
  margin-right: 6px;
}

/* MOBILE */
@media (max-width: 768px) {
  .founder-card {
    flex-direction: column;
    text-align: center;
  }

  .founder-card img {
    width: 100%;
    height: 320px;
  }

  .founder-meta {
    justify-content: center;
  }
}


/* ========================= */
/* BOTTOM NAV */
/* ========================= */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-around;
  padding: 6px 0;
  z-index: 1000;
}

/* NAV ITEM */
.nav-item {
  background: none;
  border: none;
  text-align: center;
  font-size: 11px;
  color: #65b215;
  text-decoration: none; /* ✅ REMOVE UNDERLINE */
}

/* ICON */
.nav-item i {
  font-size: 18px;
  display: block;
}

/* ACTIVE STATE */
.nav-item.active {
  color: #65b215;
}

/* HOVER / FOCUS / ACTIVE FIX */
.nav-item:hover,
.nav-item:focus,
.nav-item:active {
  text-decoration: none; /* ✅ NO UNDERLINE EVER */
  color: inherit;
}