.about-banner {
  width: 100%;
  height: 420px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgb(144 110 12 / 0.32),
    rgb(237 206 23 / 0.12)
  );
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.banner-content h1 {
  font-size: 72px;
  color: #fff;
  font-weight: 700;
  margin-top: 10px;
  text-shadow: 0 10px 25px rgb(0 0 0 / 0.25);
}

.banner-subtitle {
  color: #fff7cf;
  font-size: 15px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
}

@media (max-width: 768px) {
  .about-banner {
    height: 320px;
  }

  .banner-content h1 {
    font-size: 48px;
  }

  .banner-subtitle {
    font-size: 13px;
    letter-spacing: 3px;
  }
}

@media (max-width: 520px) {
  .about-banner {
    height: 270px;
  }

  .banner-content h1 {
    font-size: 38px;
  }

  .banner-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
  }
}

/* Activity Page Styles */
/* =========================
   ACTIVITY SECTION
========================= */

.activity-section {
  width: 100%;

  padding: 80px 20px;

  background: linear-gradient(180deg, #fffdf7, #ffffff);

  overflow: hidden;
}

/* =========================
   TITLE
========================= */

.activity-title-box {
  max-width: 850px;

  margin: auto;

  text-align: center;

  margin-bottom: 60px;
}

.activity-small-title {
  color: #edce17;

  letter-spacing: 4px;

  font-size: 13px;

  font-weight: 700;

  margin-bottom: 16px;
}

.activity-title-box h2 {
  color: #906e0c;

  font-size: 52px;

  line-height: 1.2;

  margin-bottom: 20px;
}

.activity-description {
  color: #666;

  line-height: 1.9;

  font-size: 16px;
}

/* =========================
   GRID
========================= */

.activity-grid {
  max-width: 1300px;

  margin: auto;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 28px;
}

/* =========================
   CARD
========================= */

.activity-card {
  background: white;

  border-radius: 32px;

  overflow: hidden;

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);

  transition: 0.4s;

  border: 1px solid rgba(237, 206, 23, 0.15);
}

.activity-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.1);
}

/* =========================
   IMAGE
========================= */

.activity-image {
  width: 100%;

  height: 260px;

  overflow: hidden;

  position: relative;
}

.activity-image::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    to top,
    rgba(144, 110, 12, 0.28),
    rgba(237, 206, 23, 0.05)
  );
}

.activity-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.5s;
}

.activity-card:hover img {
  transform: scale(1.08);
}

/* =========================
   CONTENT
========================= */

.activity-content {
  padding: 28px;
}

.activity-content span {
  display: inline-block;

  background: linear-gradient(
    135deg,
    rgba(144, 110, 12, 0.1),
    rgba(237, 206, 23, 0.18)
  );

  color: #906e0c;

  padding: 8px 16px;

  border-radius: 30px;

  font-size: 13px;

  font-weight: 600;

  margin-bottom: 18px;
}

.activity-content h3 {
  color: #906e0c;

  font-size: 28px;

  line-height: 1.3;

  margin-bottom: 14px;
}

.activity-content p {
  color: #666;

  line-height: 1.9;

  font-size: 15px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .activity-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .activity-section {
    padding: 60px 18px;
  }

  .activity-title-box {
    margin-bottom: 45px;
  }

  .activity-title-box h2 {
    font-size: 38px;
  }

  .activity-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .activity-title-box h2 {
    font-size: 30px;
  }

  .activity-description {
    font-size: 14px;
  }

  .activity-content {
    padding: 22px;
  }

  .activity-content h3 {
    font-size: 24px;
  }

  .activity-image {
    height: 220px;
  }
}
