/* Managing Committee Page Styles */

/* Page Banner */
.page-banner {
  background-color: #0056b3;
  color: #fff;
  padding: 60px 0;
  text-align: center;
  position: relative;
}

.page-banner h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-banner .breadcrumb {
  background: transparent;
  justify-content: center;
  margin-bottom: 0;
}

.page-banner .breadcrumb-item a {
  color: #fff;
  text-decoration: none;
}

.page-banner .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.8);
}

.page-banner .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.6);
}

.banner-subtitle {
  font-size: 1.2rem;
  margin-top: 15px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Section Styles */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.section-divider {
  height: 3px;
  width: 60px;
  background-color: #0056b3;
  margin-bottom: 30px;
}

/* Committee Vision Section */
.committee-vision {
  background-color: #fff;
}

.committee-vision .lead {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #555;
}

/* Committee Members Section */
.committee-members {
  background-color: #f8f9fa;
}

.committee-card {
  transition: all 0.3s ease;
}

.committee-card:hover {
  transform: translateY(-5px);
}

.committee-card .card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.committee-card:hover .card {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.member-image {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 50%;
  border: 5px solid #f8f9fa;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.committee-card .card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.committee-card .card-subtitle {
  font-size: 1rem;
  color: #0056b3;
  margin-bottom: 10px;
}

.qualification {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
  margin-bottom: 15px;
}

.member-preview {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
  height: 60px;
  overflow: hidden;
}

/* Modal Styles */
.modal-content {
  border-radius: 10px;
  overflow: hidden;
}

.modal-header {
  background-color: #0056b3;
  color: #fff;
  border-bottom: none;
}

.modal-header .close {
  color: #fff;
  opacity: 0.8;
}

.modal-header .close:hover {
  opacity: 1;
}

.modal-body {
  padding: 30px;
}

.member-bio {
  color: #555;
  line-height: 1.6;
}

.contact-info {
  font-size: 0.9rem;
  color: #666;
}

.contact-info i {
  margin-right: 5px;
  color: #0056b3;
}

/* Committee Values Section */
.committee-values {
  background-color: #fff;
}

.value-item {
  margin-bottom: 30px;
}

.value-icon {
  color: #0056b3;
  margin-right: 15px;
}

.value-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.value-content p {
  color: #666;
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .page-banner {
    padding: 40px 0;
  }

  .page-banner h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .banner-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 767px) {
  .member-image {
    width: 120px;
    height: 120px;
  }

  .committee-card .card-title {
    font-size: 1.2rem;
  }

  .committee-card .card-subtitle {
    font-size: 0.9rem;
  }

  .value-item {
    flex-direction: column;
  }

  .value-icon {
    margin-bottom: 10px;
  }

  .banner-subtitle {
    font-size: 1rem;
  }
}
