/* CSS */
.hero-section {
    background-color: #f4bcd4;
    padding-top: 120px; /* adjust for fixed navbar height if needed */
  }
  
  .hero-image-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-image {
    width: 50%;
    height: auto;
    display: block;
    border-radius: 5px;
    padding-bottom: 20px;
  }
  
  .hero-overlay {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    height: 50%;
    background-color: rgba(255, 145, 99, 0.6); /* peach with transparency */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 2.5rem;
    text-align: center;
    padding: 40px 20px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  

  .hero-overlay h3{
    font-size: 48px;
  }
  
  @media (max-width: 768px) {
    .hero-overlay {
      width: 100%;
      position: relative;
      border-radius: 0;
      font-size: 1.8rem;
      margin-top: -5px;
    }
  
    .hero-image-wrapper {
      flex-direction: column;
    }
  }
  
  .header-content {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: black;
    z-index: 9999;
  }
    
  
  /* Bio Section */
  .bio-section {
    padding: 60px 20px;
    background-color: #fff;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .bio-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff914d;
    margin: 0 auto 20px auto; /* centers the heading */
    max-width: 800px;
    text-align: start;
  }
  
  
  .bio-content {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #111;
  }
  
  .bio-content p {
    text-align: start;
    max-width: 800px;
    margin: 2rem auto;
  }

  .book-btn {
    display: inline-block;
    background-color: black;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .book-btn:hover {
    background-color: #ff6f61;
  }
  .sold-out {
    color: red;
    font-weight: bold;
    margin-top: 1rem;
  }

  .book-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 1rem;
  }
  
  .book-btn {
    background-color: black;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .book-btn:hover {
    background-color: #ff6f61;
  }
  