.wellness-page {
  font-family: Arial, Helvetica, sans-serif;
  color: #2b2d42;
  background-color: #f8f9fa;
  line-height: 1.6;
}

/* Hero Banner */
.wellness-hero {
  height: 70vh;
  min-height: 500px;
  background: linear-gradient(rgba(43, 45, 66, 0.7), rgba(43, 45, 66, 0.5)),
    url('{% static "img/campus-life/recreation/hero-bg.jpg" %}');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.wellness-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.wellness-subtitle {
  font-size: 1.5rem;
  max-width: 800px;
  margin-bottom: 2rem;
}

/* Content Section */
.wellness-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.wellness-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.intro-paragraph {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #555;
  line-height: 1.8;
}

/* Gallery Grid */
.activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.activity-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.activity-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.activity-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 20px;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.activity-title {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.activity-desc {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Call to Action */
.wellness-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(135deg, #4361ee, #3f37c9);
  color: white;
  border-radius: 12px;
}

.cta-title {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: white;
  color: #4361ee;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.iast-css-vars {
  --iast-primary-blue: #03a0e3;
  --iast-dark-blue: #017eb4;
  --iast-secondary-blue: #00a4e4;
  --iast-light-gray: #f8f9fa;
}

.iast-activities-body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.8;
  margin: 0;
  padding: 0;
  color: #333;
}

.iast-activities-hero {
  background: linear-gradient(135deg, #017eb4, #71991c);
  color: white;
  padding: 6rem 0;
  text-align: center;
  position: relative;
}

.iast-activities-hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding: 0 2rem;
  color: #ffffff;
}

.iast-activities-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto 2rem;
  padding: 0 2rem;
}

