/* ================================================
   TEAM DETAIL HEADER SECTION STYLES
   ================================================ */

.team-detail-header {
  padding: 120px 0 60px 0;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.5) 0%, rgba(44, 82, 130, 0.5) 50%, rgba(26, 54, 93, 0.5) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.team-detail-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(var(--secondary-rgb), 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.team-detail-subtitle {
  font-size: 14px;
  color: var(--accent-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.team-detail-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.breadcrumb-nav {
  font-size: 16px;
  color: #b8b8b8;
  position: relative;
  z-index: 2;
}

.breadcrumb-nav a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
  color: var(--accent-gold-light);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 991px) {
  .team-detail-header {
    padding: 100px 0 50px 0;
  }

  .team-detail-title {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .team-detail-header {
    padding: 80px 0 40px 0;
  }

  .team-detail-title {
    font-size: 32px;
  }

  .team-detail-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .breadcrumb-nav {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .team-detail-title {
    font-size: 28px;
    line-height: 1.2;
  }
}
