/* Bio Page Styles */

.bio-container {
    max-width: 900px;
    margin: 0rem auto;
    padding: 2rem;
  }
  
  .bio-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .bio-profile h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0.5rem 0;
  }
  
  .bio-profile h2 {
    font-size: 1.2rem;
    color: #800000;
    margin-bottom: 1.5rem;
  }
  
  .bio-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-top: 2rem;
    text-align: left;
  }
  
  /* Optional: Responsive tweaks */
  @media screen and (max-width: 600px) {
    .bio-content {
      text-align: left;
    }
  }

  .back-link-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.6rem 1.2rem;
    background-color: #800000;
    color: #fff;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
  }
  
  .back-link-btn:hover {
    background-color: #a10000;
  }
  .bio-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
  }
  
  .bio-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .bio-header-content {
    position: relative;
    z-index: 2;
  }
  
  .bio-profile-img {
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 10%;
    border: 4px solid #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    margin-bottom: 1rem;
    background-color: #fff;
  }
  .bio-details {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
  }
  