/* ==========================================================================
   BIO PAGE STYLES
   ========================================================================== */

/* Hero Section */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 0px 40px rgba(0, 0, 255, 0.1);
}

.hero-bg {
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background-size: cover;
  background-position: center top;
  filter: brightness(0.5) blur(2px);
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
  z-index: -1;
}

.hero-content {
  text-align: center;
  padding: 0;
  max-width: 900px;
  margin-top: 9rem;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 2px 4px 20px rgba(0,0,0,0.5);
}

.page-subtitle {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 1px 2px 10px rgba(0,0,0,0.5);
  font-style: italic;
}

/* Main Content */
.main-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* About Section */
.about-section {
  margin-bottom: 3rem;
}

.about-image-container {
  float: left;
  width: 45%;
  margin: 0 2rem 0 0;
}

.about-image {
  width: 100%;
  border: 1px solid var(--color-primary-darker);
  box-shadow: 0 0px 40px rgba(0, 0, 255, 0.1);
}

.about-text p {
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-text p:first-of-type::first-line {
  font-weight: 700;
  color: var(--color-text);
}

.about-text::after {
  content: '';
  display: table;
  clear: both;
}

/* Section Title */
.section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--color-primary-light);
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 1px;
  clear: both;
}

/* Blockquotes */
blockquote {
  border-left: 3px solid var(--color-primary);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--color-text-muted);
}

blockquote cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  color: var(--color-primary-light);
  font-size: 0.9rem;
}

/* ==========================================================================
   RESPONSIVE - Tablet
   ========================================================================== */
@media (max-width: 950px) {
  .about-image-container {
    float: none;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 2rem auto;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .hero {
    min-height: 50vh;
  }

  .hero-content {
    margin-top: 3rem;
  }

  .main-content {
    padding: 3rem 1.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
}
