/* Activities Page Styling */

/* Header Styles */
.activities-header {
  background-color: #003264;
  color: #ffffff;
  padding: 60px 0 40px;
  margin-bottom: 40px;
  position: relative;
}

.activities-header:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #F4C430;
}

.activities-header .page-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.activities-header .lead {
  font-size: 1.4rem;
  font-weight: 300;
}

.title-underline {
  height: 4px;
  width: 80px;
  background-color: #F4C430;
  margin: 0 auto 25px;
}

/* Introduction Section Styles */
.intro-section {
  padding: 20px 0 50px;
}

.intro-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.intro-content p {
  color: #495057;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Section Styles */
.activities-section {
  padding: 60px 0;
}

.sports-section {
  background-color: #f9fafb;
}

.cultural-section {
  background-color: #ffffff;
}

.academic-section {
  background-color: #f9fafb;
}

.events-section {
  background-color: #ffffff;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #003264;
  margin-bottom: 15px;
}

.section-underline {
  height: 4px;
  width: 60px;
  background-color: #F4C430;
  margin: 0 auto 25px;
}

.section-description {
  font-size: 1.1rem;
  color: #4B5563;
  max-width: 800px;
  margin: 0 auto;
}

/* Activity Card Styles */
.activity-card {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Icon circle instead of image */
.activity-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 25px auto 10px;
  font-size: 2.4rem;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
}

.activity-icon-sport {
  background: #0ea5e9;
}

.activity-icon-cultural {
  background: #ec4899;
}

.activity-icon-academic {
  background: #22c55e;
}

.activity-icon-event {
  background: #f97316;
}

.activity-info {
  padding: 20px 20px 25px;
  text-align: center;
}

.activity-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #003264;
  margin-bottom: 10px;
}

.activity-underline {
  height: 3px;
  width: 50px;
  background-color: #F4C430;
  margin: 0 auto 15px;
}

.activity-info p {
  color: #4B5563;
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .activities-header .page-title {
    font-size: 2.4rem;
  }
  
  .activities-header .lead {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .activities-header {
    padding: 40px 0 30px;
  }
  
  .activities-header .page-title {
    font-size: 2rem;
  }
  
  .activities-header .lead {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .intro-content {
    padding: 20px;
  }
  
  .activities-section {
    padding: 40px 0;
  }
}

@media (max-width: 575.98px) {
  .activities-header .page-title {
    font-size: 1.8rem;
  }
  
  .activities-header .lead {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .activity-info h3 {
    font-size: 1.3rem;
  }
}