/* ============================================
   ACTIVITIES PAGE - BANNER
   ============================================ */

.act-banner {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
}

.act-banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.act-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 37, 64, 0.92) 0%, rgba(26, 140, 62, 0.82) 100%);
  z-index: 1;
}

.act-banner-title {
  font-size: 2.2rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   STATS SECTION
   ============================================ */

.act-stats-section {
  background: linear-gradient(135deg, #0a2540 0%, #1a5c3e 100%);
  position: relative;
  overflow: hidden;
}

.act-stats-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

.act-stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 2rem 1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.act-stat-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-5px);
}

.act-stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.2);
  transition: transform 0.3s ease;
}

.act-stat-card:hover .act-stat-icon {
  transform: scale(1.15);
}

.act-stat-icon i {
  font-size: 1.5rem;
  color: #fff;
}

/* ============================================
   POST IMAGE GRIDS
   ============================================ */

.act-img-wrapper {
  height: 150px;
  overflow: hidden;
  border-radius: 10px;
}

.act-img-tall {
  height: 312px;
}

.act-img-featured {
  height: 220px;
}

.act-grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.act-img-wrapper:hover .act-grid-img {
  transform: scale(1.08);
}

/* ============================================
   POST CONTENT
   ============================================ */

.act-post-title {
  color: var(--dark-blue);
  font-size: 1.4rem;
  position: relative;
  padding-bottom: 12px;
}

.act-post-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-green);
  border-radius: 2px;
}

.act-post-meta span {
  font-size: 0.82rem;
}

.act-tag {
  font-size: 0.78rem;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.act-tag:hover {
  background: var(--primary-green) !important;
  color: #fff !important;
  border-color: var(--primary-green);
}

.act-section-alt {
  background: linear-gradient(180deg, #f8fdf9 0%, #f0f4f8 100%);
}

/* ============================================
   TOP STAR LIST
   ============================================ */

.act-star-badge {
  background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%);
  border: 1px solid #ffc107;
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.act-star-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

/* ============================================
   CULTURE SECTION
   ============================================ */

.act-culture-section {
  background: linear-gradient(135deg, #1a5c3e 0%, #0a2540 100%);
  position: relative;
  overflow: hidden;
}

.act-culture-section::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(255,255,255,0.02);
}

.act-culture-section .section-title::after {
  background: #fff;
}

.act-culture-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.act-culture-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-5px);
}

.act-culture-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.act-culture-card:hover .act-culture-icon {
  transform: scale(1.15);
  background: rgba(255,255,255,0.2);
}

.act-culture-icon i {
  font-size: 1.8rem;
  color: #fff;
}

/* ============================================
   CTA BOX
   ============================================ */

.act-cta-title {
  color: var(--dark-blue);
}

.act-cta-box {
  background: linear-gradient(135deg, #0a2540 0%, #1a5c3e 100%);
  position: relative;
  overflow: hidden;
}

.act-cta-box::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.act-cta-icon {
  font-size: 3rem;
  color: rgba(255,255,255,0.3);
  display: block;
}

.act-cta-box .btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.act-cta-box .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991.98px) {
  .act-img-tall {
    height: 250px;
  }
}

@media (max-width: 991.98px) {
  .act-img-featured {
    height: 180px;
  }
}

@media (max-width: 767.98px) {
  .act-banner {
    min-height: 220px;
  }
}

@media (max-width: 767.98px) {
  .act-banner-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 767.98px) {
  .act-img-wrapper {
    height: 130px;
  }
}

@media (max-width: 767.98px) {
  .act-img-tall {
    height: 200px;
  }
}

@media (max-width: 767.98px) {
  .act-img-featured {
    height: 160px;
  }
}

@media (max-width: 767.98px) {
  .act-post-title {
    font-size: 1.15rem;
  }
}

@media (max-width: 767.98px) {
  .act-star-badge {
    font-size: 0.78rem;
    padding: 6px 14px;
  }
}

@media (max-width: 575.98px) {
  .act-banner-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 575.98px) {
  .act-img-tall {
    height: 160px;
  }
}

@media (max-width: 575.98px) {
  .act-img-wrapper {
    height: 110px;
  }
}

