/* =========================
    BANNER SECTION
=========================  */
/* --- ULTRA PREMIUM BANNER --- */
.premium-banner {
  position: relative;
  width: 100%;
  height: clamp(400px, 55vh, 700px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #000;
}

/* Cinematic Background Animation */
.banner-bg-image {
  position: absolute;
  inset: -5%;
  /* Prevent white edges during scale */
  background-image: url("https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?q=80&w=2564&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  z-index: 0;
  animation: cinematicPan 25s linear infinite alternate;
}

/* Vignette / Spotlight Overlay */
.banner-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(15, 15, 15, 0.2) 0%,
    rgba(15, 15, 15, 0.8) 100%
  );
  z-index: 1;
}

/* Content Container */
.banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--space-4);
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
}

/* --- ADVANCED GLASSMORPHISM BREADCRUMB --- */
.breadcrumb {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-pill);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.15),
    0 12px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  opacity: 0;
  animation: fadeUp 1s var(--premium-ease) forwards;
  margin-bottom: var(--space-3);
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: 0;
  padding-left: 0;
}

.breadcrumb li {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
}

.breadcrumb a {
  color: var(--color-surface);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  opacity: 0.8;
}

.breadcrumb a:hover {
  opacity: 1;
  color: var(--color-surface);
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

/* SVG Chevron Separator */
.breadcrumb .separator {
  opacity: 0.4;
  display: flex;
  align-items: center;
}

.breadcrumb .current {
  color: var(--color-yellow);
  /* Brand accent for active state */
  font-weight: 600;
  opacity: 1;
}

/* --- TYPOGRAPHY --- */
.title-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.page-title {
  font-size: var(--fs-xxl);
  color: var(--color-surface);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s var(--premium-ease) 0.2s forwards;
  margin-bottom: 0;
}

.page-subtitle {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.75);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s var(--premium-ease) 0.4s forwards;
}

/* --- GLOWING BRAND ACCENT LINE --- */
.brand-accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  /* Thinner for elegance */
  z-index: 3;
  background: linear-gradient(
    90deg,
    var(--color-blue) 0%,
    var(--color-red) 33%,
    var(--color-yellow) 66%,
    var(--color-green) 100%
  );
}

/* Subtle glow beneath the line */
.brand-accent-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12px;
  z-index: 2;
  filter: blur(8px);
  opacity: 0.6;
  background: linear-gradient(
    90deg,
    var(--color-blue) 0%,
    var(--color-red) 33%,
    var(--color-yellow) 66%,
    var(--color-green) 100%
  );
}

/* --- KEYFRAMES --- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cinematicPan {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
    /* Extremely subtle zoom */
  }
}

/* =========================
   TEAM SECTION
========================= */

.department-section {
  position: relative;
  overflow: hidden;
}

/* HEADER */

.department-header {
  margin-bottom: var(--space-5);
}

.department-subtitle {
  max-width: 65ch;
  color: var(--color-text-muted);
}

/* =========================
   GRID
    ========================= */

.landscape-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* =========================
   CARD
    ========================= */

.landscape-member-card {
  position: relative;

  display: flex;
  gap: 0;

  overflow: hidden;

  min-height: 380px;

  border-radius: 34px;

  background: rgba(255, 255, 255, 0.72);

  border: 1px solid rgba(255, 255, 255, 0.7);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  transition: all 0.45s var(--premium-ease);

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* HOVER */

.landscape-member-card:hover {
  transform: translateY(-10px);

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.12),
    0 10px 40px rgba(66, 133, 244, 0.12);
}

/* FEATURED */

.featured-landscape-card {
  background:
    linear-gradient(135deg, rgba(66, 133, 244, 0.08), rgba(52, 168, 83, 0.06)),
    rgba(255, 255, 255, 0.8);
}

/* FEATURED TAG */

.featured-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 5;

  padding: 8px 16px;

  border-radius: var(--radius-pill);

  background: linear-gradient(90deg, var(--color-yellow), var(--color-red));

  color: #fff;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;

  box-shadow: var(--shadow-md);
}

/* =========================
   IMAGE
    ========================= */

.member-photo {
  position: relative;

  width: 42%;
  min-width: 42%;

  overflow: hidden;
}

.member-photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  border-radius: 0;

  transition: transform 0.8s var(--premium-ease);
}

.landscape-member-card:hover img {
  transform: scale(1.08);
}

/* ONLINE BADGE */

.online-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;

  display: flex;
  align-items: center;
  gap: 8px;

  padding: 10px 14px;

  border-radius: var(--radius-pill);

  background: rgba(0, 0, 0, 0.45);

  backdrop-filter: blur(12px);

  color: #fff;

  font-size: 12px;
  font-weight: 600;
}

.online-badge span {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #22c55e;

  box-shadow: 0 0 12px #22c55e;
}

/* =========================
   CONTENT
    ========================= */

.member-details {
  flex: 1;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 34px;
}

/* TOP */

.member-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;

  margin-bottom: 22px;
}

.member-position {
  display: inline-block;

  margin-bottom: 10px;

  padding: 8px 14px;

  border-radius: var(--radius-pill);

  background: rgba(66, 133, 244, 0.08);

  color: var(--color-blue);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.member-top h3 {
  font-size: 2rem;
  line-height: 1.1;
}

.member-experience {
  padding: 12px 16px;

  border-radius: 18px;

  background: rgba(0, 0, 0, 0.04);

  font-size: 13px;
  font-weight: 700;

  white-space: nowrap;
}

/* DESC */

.member-description {
  margin-bottom: 26px;

  color: var(--color-text-muted);

  line-height: 1.8;
}

/* SKILLS */

.member-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin-bottom: 30px;
}

.member-skills span {
  padding: 10px 16px;

  border-radius: 14px;

  background: rgba(0, 0, 0, 0.04);

  color: var(--color-text);

  font-size: 13px;
  font-weight: 600;

  transition: var(--transition);
}

.member-skills span:hover {
  background: linear-gradient(90deg, var(--color-blue), var(--color-green));

  color: #fff;

  transform: translateY(-2px);
}

/* FOOTER */

.member-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* SOCIALS */

.member-socials {
  display: flex;
  gap: 10px;
}

.member-socials a {
  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: rgba(0, 0, 0, 0.04);

  color: var(--color-text);

  transition: var(--transition);
}

.member-socials a:hover {
  background: linear-gradient(90deg, var(--color-blue), var(--color-green));

  color: #fff;

  transform: translateY(-3px);
}

/* CTA */

.member-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 20px;

  border-radius: var(--radius-pill);

  background: linear-gradient(90deg, var(--color-blue), var(--color-green));

  color: #fff;

  font-size: 14px;
  font-weight: 600;

  transition: var(--transition);
}

.member-btn:hover {
  color: #fff;

  transform: translateY(-3px);

  box-shadow: var(--shadow-md);
}

/* =========================
   RESPONSIVE
    ========================= */

@media (max-width: 1200px) {
  .landscape-team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .landscape-member-card {
    flex-direction: column;
  }

  .member-photo {
    width: 100%;
    min-width: 100%;
    height: 320px;
  }

  .member-details {
    padding: 24px;
  }

  .member-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .member-top {
    flex-direction: column;
  }

  .member-top h3 {
    font-size: 1.7rem;
  }
}
