/* =========================
   TAB WRAPPER
========================= */
.activity-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* =========================
   TAB BUTTON
========================= */
.tab-btn {
  padding: 12px 28px;
  border: none;
  border-radius: 50px;
  background: #f1f3f8;
  color: #263489;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

/* =========================
   HOVER EFFECT
========================= */
.tab-btn:hover {
  background: #263489;
  color: #fff;
  transform: translateY(-2px);
}

/* =========================
   ACTIVE TAB
========================= */
.tab-btn.active {
  background: linear-gradient(135deg, #263489, #1c2670);
  color: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* =========================
   OPTIONAL BORDER STYLE
========================= */
.tab-btn::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background: #ec1d25;
  transition: 0.3s;
  margin: 5px auto 0;
}

.tab-btn:hover::after,
.tab-btn.active::after {
  width: 60%;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 576px) {

  .activity-tabs {
    flex-direction: column;
    align-items: center;
  }

  .tab-btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 10px;
    font-size: 13px;
  }
}

.camp-section {
  margin: 30px 0;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.camp-title{
	color:var(--primary-blue);
}