.banner {
  background-image: url(Images/EagleRiver.jpeg);
  background-color: #1a2b1a;
}

/* ===== BIO INTRO TEXT ===== */
.bio-intro {
  max-width: 820px;
  margin: 4rem auto 1.5rem;
  padding: 0 2rem;
}

.bio-intro h2 {
  font-family: cotton, sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: var(--body-text);
  margin-bottom: 1rem;
  font-weight: 900;
  transition: color 0.3s;
}

.bio-intro p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--body-secondary);
  transition: color 0.3s;
}

/* ===== DESCRIPTOR BADGES ===== */
.desc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  padding: 1.5rem 2rem 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.desc-badge {
  font-family: 'Comfortaa', cursive;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0369a1;
  border: 2px solid #bae6fd;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.2s, border-color 0.2s, color 0.2s;
  cursor: default;
}

.desc-badge:hover {
  background: #2dd4bf;
  color: #0f172a;
  border-color: #2dd4bf;
  transform: translateY(-2px);
}

html.dark-mode .desc-badge {
  background: #1e3a5f;
  color: #7dd3fc;
  border-color: #2563eb;
}

hr {
  border: none;
  border-top: 1px solid var(--card-border);
  width: 75%;
  margin: 0.5rem auto 1.5rem;
  transition: border-color 0.3s;
}

/* ===== MYERS-BRIGGS SECTION ===== */
.info-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  padding: 1.5rem 2rem 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.mbti-card {
  background: #0f172a;
  border-radius: 18px;
  padding: 2rem 2.5rem;
  text-align: center;
  border: 1px solid rgba(45, 212, 191, 0.3);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.18);
  min-width: 240px;
}

.mbti-card .mbti-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #94a3b8;
  font-family: 'Comfortaa', cursive;
  margin-bottom: 0.5rem;
}

.mbti-card .mbti-type {
  font-family: cotton, sans-serif;
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 900;
  color: #2dd4bf;
  line-height: 1;
  letter-spacing: 0.06em;
  margin: 0.25rem 0;
}

.mbti-card .mbti-name {
  font-size: 0.95rem;
  color: #f1f5f9;
  font-weight: 500;
  margin-top: 0.5rem;
  font-family: 'Comfortaa', cursive;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.content {
  width: 100%;
  max-width: 700px;
  background: var(--card-bg);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--card-border);
  transition: background 0.3s, border-color 0.3s;
}

.info-box {
  animation: fadeInAnimation ease 3s forwards;
  animation-iteration-count: 1;
}

@keyframes fadeInAnimation {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

@media screen and (max-width: 768px) {
  .banner {
    background-attachment: scroll;
    background-size: cover;
  }

  .bio-intro {
    margin-top: 2rem;
    padding: 0 1.25rem;
  }

  .bio-intro p {
    font-size: 0.9rem;
    line-height: 1.75;
  }

  .desc {
    padding: 1rem 1.25rem 1.5rem;
    gap: 0.5rem;
  }

  .mbti-card {
    padding: 1.5rem;
    min-width: 0;
    width: 100%;
  }

  .content {
    padding: 1rem;
  }

  #radarChart {
    height: 280px !important;
    max-width: 100% !important;
  }

  .info-container {
    padding: 1rem 1rem 3rem;
    gap: 1.25rem;
  }
}
