/* ========================= */
/* GLOBAL */
/* ========================= */
body {
  font-family: 'Inter', sans-serif;
  background: #fff;
}

/* PAGE TITLE */
.page-title {
  font-family: 'The Seasons', serif;
  font-size: 2rem;
  font-weight: 700;     /* ✅ make Regions bold */
  margin-bottom: 16px;
}

/* ========================= */
/* REGION TABS (CENTERED + SINGLE LINE) */
/* ========================= */
.region-tabs {
  display: flex;
  justify-content: center;        /* ✅ KEEP CENTER */
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;              /* ✅ SINGLE LINE ONLY */
  overflow-x: auto;               /* ✅ SCROLL IF NEEDED */
  margin-bottom: 24px;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
}

/* HIDE SCROLLBAR */
.region-tabs::-webkit-scrollbar {
  display: none;
}

/* TAB BUTTON */
.region-tab {
  flex-shrink: 0;                 /* ✅ PREVENT WRAP */
  border: none;
  padding: 10px 26px;
  border-radius: 999px;           /* pill shape */
  font-size: 14px;
  font-weight: 600;
  background: #f3f3f3;
  color: #444;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

/* ACTIVE TAB */
.region-tab.active {
  background: linear-gradient(
    180deg,
    #8fd13f 0%,
    #65b215 100%
  );
  color: #ffffff;
  box-shadow: 0 6px 14px rgba(101,178,21,0.35);
}

/* REMOVE OLD UNDERLINE */
.region-tab::after {
  display: none;
}

/* HOVER */
.region-tab:hover {
  background: rgba(101,178,21,0.15);
}

/* ========================= */
/* MOBILE REFINEMENT */
/* ========================= */
@media (max-width: 576px) {
  .region-tabs {
    justify-content: center;      /* ✅ STILL CENTERED */
    gap: 12px;
  }

  .region-tab {
    padding: 9px 22px;
    font-size: 13px;
  }
}

/* ========================= */
/* REGION GRID */
/* ========================= */
.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ========================= */
/* REGION CARD */
/* ========================= */
.region-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  overflow: hidden;
}

.region-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.region-card-content {
  padding: 14px;
}

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

.region-card h5 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 6px;
}

.region-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.region-meta {
  font-size: 12px;
  color: #999;
}

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

  .region-card img {
    height: 200px;
  }
}


/* ========================= */
/* 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;
}







/* after article uploaded from admin title blue colour Remove default link styling */
.region-card {
  text-decoration: none;
  color: inherit;
}

/* Make title always black */
.region-card h5 {
  color: #111 !important;
  font-weight: 600;
}

/* Prevent blue on hover */
.region-card:hover h5 {
  color: #000 !important;
}