/* ================= ACTIVITIES PAGE ================= */
.activity-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
}

.activity-section:last-child {
  border-bottom: none;
}

.activity-section h4 {
  font-weight: 600;
}

.activity-section img {
  transition: transform 0.3s ease;
  cursor: pointer;
}

.activity-section img:hover {
  transform: scale(1.05);
}

.activity-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.activity-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.activity-image-wrapper img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.activity-card:hover .activity-image-wrapper img {
  transform: scale(1.1);
}

.activity-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #0d6efd 0%, #198754 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.activity-content {
  padding: 20px;
}

.activity-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2c3e50;
}

.activity-description {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.activity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.activity-tags .badge {
  padding: 8px 15px;
  font-size: 0.85rem;
  font-weight: 500;
}

.activity-gallery-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.activity-gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.activity-gallery-image {
  position: relative;
  overflow: hidden;
  height: 250px;
  cursor: pointer;
}

.activity-gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.activity-gallery-card:hover .activity-gallery-image img {
  transform: scale(1.15);
}

.activity-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.activity-gallery-card:hover .activity-overlay {
  opacity: 1;
}

.activity-overlay i {
  color: #fff;
  font-size: 2rem;
}

.activity-gallery-content {
  padding: 20px;
}

.activity-gallery-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2c3e50;
}
