@charset "UTF-8";
/* ==========================================================================
   team-fetish-medical.css - Our Team Page Styles (Editorial UX & UI)
   ========================================================================== */

/* Hero Section for Our Team */
.hero-team {
  position: relative;
  background-color: var(--color-navy);
  padding: clamp(5rem, 12vw, 10rem) 0;
  overflow: hidden;
}

.hero-team__video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-team__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-team__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(22, 40, 61, 0.5) 0%,
    rgba(11, 22, 34, 0.92) 100%
  );
  z-index: 1;
}

.hero-team__container {
  position: relative;
  z-index: 2;
}

.hero-team__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-team__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 400;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.hero-team__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.hero-team__lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 780px;
  margin: 0 auto 2.5rem auto;
}

.hero-team__actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-team__video {
    height: calc(100% + 40px);
    transform: translateY(-30px);
  }
}

/* ==========================================================================
   QUICK TEAM NAV / FILTER BAR
   ========================================================================== */
.team-nav-bar {
  background: rgba(11, 22, 34, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  position: sticky;
  top: 125px; /* Account for site header */
  z-index: 100;
  backdrop-filter: blur(12px);
}

.team-nav-bar__container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.team-nav-bar__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.team-nav-bar__link:hover,
.team-nav-bar__link--active {
  background: rgba(32, 178, 170, 0.15);
  border-color: rgba(32, 178, 170, 0.5);
  color: var(--color-green-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(32, 178, 170, 0.15);
}

.team-nav-bar__number {
  font-size: 0.75rem;
  opacity: 0.6;
  font-weight: 700;
}

/* ==========================================================================
   EDITORIAL TEAM MEMBERS SECTION
   ========================================================================== */
.team-members-section {
  background-color: var(--color-navy);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.team-member {
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  scroll-margin-top: 190px;
}

.team-member:last-child {
  border-bottom: none;
}

.team-member__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  position: relative;
}

@media (min-width: 992px) {
  .team-member__grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Alternating Layout */
  .team-member--reverse .team-member__media {
    order: 2;
  }

  .team-member--reverse .team-member__content {
    order: 1;
  }
}

/* Large Editorial Image Frame */
.team-member__media {
  position: relative;
}

.team-member__image-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  background: #0f1c2b;
}

.team-member__image {
  width: 100%;
  height: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-member__image-frame:hover .team-member__image {
  transform: scale(1.04);
}

.team-member__rank-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(11, 22, 34, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 0.85rem 1.25rem;
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-member__status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-green-light);
}

.team-member__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #20b2aa;
  box-shadow: 0 0 12px #20b2aa;
  display: inline-block;
}

/* Background Watermark Section Number */
.team-member__watermark {
  position: absolute;
  top: -2rem;
  right: 0;
  font-family: var(--font-heading);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

/* Content Area */
.team-member__content {
  position: relative;
  z-index: 1;
  color: var(--color-white);
}

.team-member__eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-green-light);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.team-member__name {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.team-member__role {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.team-member__bio p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.25rem;
}

/* Specialisations / Procedures */
.team-member__spec {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.team-member__spec-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
}

.team-member__spec-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

@media (min-width: 640px) {
  .team-member__spec-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.team-member__spec-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.65rem 0.9rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.team-member__spec-item:hover {
  background: rgba(32, 178, 170, 0.08);
  border-color: rgba(32, 178, 170, 0.3);
  transform: translateX(3px);
}

.team-member__spec-icon {
  color: #20b2aa;
  font-weight: bold;
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* Notice Pill */
.team-member__notice {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid #20b2aa;
  padding: 0.85rem 1.25rem;
  border-radius: 0 6px 6px 0;
  margin-bottom: 2rem;
}

.team-member__notice-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #20b2aa;
  text-transform: uppercase;
  flex-shrink: 0;
}

.team-member__notice-text {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  margin: 0;
}

.team-member__cta {
  margin-top: 1.5rem;
}
