/* ============================================================
   STAFF PAGE SPECIFIC STYLES
   ============================================================ */

/* Page Title Section */
.page-title-section {
  background: linear-gradient(135deg, var(--primary) 0%, #2a5fa8 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-title-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.page-title-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 250px;
  height: 250px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.page-title-section h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}

.breadcrumb-item a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb-item a:hover {
  color: var(--white);
}

.breadcrumb-item.active {
  color: var(--white);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.5);
  content: "›";
  font-size: 1.2rem;
}

/* Staff Table Styles */
.staff-table-wrapper {
  background: var(--white);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
  overflow-x: auto;
}

.staff-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.staff-table thead th {
  background: var(--primary);
  color: var(--white);
  padding: 15px 12px;
  text-align: left;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
}

.staff-table tbody td {
  padding: 12px;
  border-bottom: 1px solid #f0f0f0;
  color: var(--text-muted);
  white-space: nowrap;
}

.staff-table tbody tr:hover {
  background: rgba(207,46,46,0.05);
}

.staff-table tbody tr:nth-child(even) {
  background: #fafafa;
}

.staff-table tbody tr:nth-child(even):hover {
  background: rgba(207,46,46,0.08);
}

/* Staff Statistics Cards */
.staff-stats {
  margin-top: 40px;
}

.staff-stat-card {
  background: var(--white);
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.staff-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(24,63,114,0.12);
}

.staff-stat-card .stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.staff-stat-card .stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Table Scroll Indicator for Mobile */
@media (max-width: 992px) {
  .staff-table-wrapper {
    position: relative;
  }
  
  .staff-table-wrapper::after {
    content: '← Scroll to see more →';
    display: block;
    text-align: center;
    padding: 10px;
    font-size: 0.75rem;
    color: var(--text-muted);
    background: var(--light);
    margin-top: 10px;
    border-radius: 8px;
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-title-section {
    padding: 60px 0 40px;
  }
  
  .page-title-section h1 {
    font-size: 2.5rem;
  }
  
  .staff-table thead th,
  .staff-table tbody td {
    padding: 10px 8px;
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .page-title-section h1 {
    font-size: 2rem;
  }
  
  .breadcrumb-item {
    font-size: 0.9rem;
  }
  
  .staff-table thead th,
  .staff-table tbody td {
    padding: 8px 6px;
    font-size: 0.7rem;
  }
  
  .staff-stat-card .stat-number {
    font-size: 1.8rem;
  }
  
  .staff-stat-card .stat-label {
    font-size: 0.75rem;
  }
}

@media (max-width: 576px) {
  .page-title-section {
    padding: 50px 0 30px;
  }
  
  .page-title-section h1 {
    font-size: 1.8rem;
  }
  
  .staff-table-wrapper {
    padding: 15px;
  }
  
  .staff-table thead th,
  .staff-table tbody td {
    padding: 6px 4px;
    font-size: 0.65rem;
  }
  
  .staff-stat-card {
    padding: 15px;
  }
  
  .staff-stat-card .stat-number {
    font-size: 1.5rem;
  }
  
  .staff-stat-card .stat-label {
    font-size: 0.7rem;
  }
}