/**
 * Staff Details Page Styles
 */

/* Staff Section */
.staff-section {
    padding: 60px 0;
  }
  
  /* Department Filter */
  .department-filter {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
  }
  
  .filter-heading {
    color: var(--secondary-color);
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .filter-buttons .btn {
    margin-right: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
  }
  
  /* Department Heading */
  .department-heading {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .department-heading h2 {
    color: var(--secondary-color);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  /* Staff Card */
  .staff-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .staff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  }
  
  .staff-image {
    height: 250px;
    overflow: hidden;
  }
  
  .staff-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .staff-card:hover .staff-image img {
    transform: scale(1.05);
  }
  
  .staff-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  
  .staff-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
  }
  
  .staff-position {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
  }
  
  .staff-department {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
  }
  
  .staff-qualifications {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    font-style: italic;
  }
  
  .staff-contact {
    margin-bottom: 15px;
  }
  
  .staff-contact p {
    font-size: 14px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
  }
  
  .staff-contact i {
    color: var(--primary-color);
    margin-right: 8px;
    width: 16px;
  }
  
  .staff-bio-preview {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 15px;
    flex-grow: 1;
  }
  
  .view-bio-btn {
    align-self: flex-start;
    margin-top: auto;
  }
  
  /* Staff Modal */
  .staff-modal-image {
    text-align: center;
  }
  
  .staff-modal-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  }
  
  .staff-modal-info h4 {
    color: var(--secondary-color);
    font-size: 22px;
    margin-bottom: 5px;
  }
  
  .staff-modal-info p {
    margin-bottom: 8px;
  }
  
  .staff-modal-contact {
    margin-top: 15px;
  }
  
  .staff-modal-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
  }
  
  .staff-modal-contact i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 16px;
  }
  
  .staff-modal-bio h5 {
    color: var(--secondary-color);
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
  }
  
  .bio-content {
    font-size: 15px;
    line-height: 1.6;
  }
  
  .bio-content p {
    margin-bottom: 15px;
  }
  
  /* CTA Section */
  .cta-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    margin-top: 30px;
  }
  
  .cta-section h2 {
    color: var(--secondary-color);
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .cta-section p {
    color: var(--text-color);
    font-size: 18px;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Responsive Styles */
  @media (max-width: 991px) {
    .staff-image {
      height: 220px;
    }
  }
  
  @media (max-width: 767px) {
    .staff-section {
      padding: 40px 0;
    }
  
    .staff-image {
      height: 200px;
    }
  
    .department-heading h2 {
      font-size: 28px;
    }
  
    .cta-section h2 {
      font-size: 28px;
    }
  
    .cta-section p {
      font-size: 16px;
    }
  }
  
  @media (max-width: 575px) {
    .staff-card {
      max-width: 320px;
      margin-left: auto;
      margin-right: auto;
    }
  
    .staff-image {
      height: 180px;
    }
  }
  