/* HISTORICAL FICTION PAGES STYLES - DECOUPLED FROM MAIN.CSS */

/* ========================
   BREADCRUMB OVERRIDES (Mobile Fix)
=========================== */
.breadcrumb-strip {
  background-color: #f5f5f5;
  border-bottom: 1px solid #ddd;
  padding: 0.5rem 0;
  font-size: 0.8rem;
  width: 100%;
  margin: 0;
}

.breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  left: auto;
}

.breadcrumb-strip a {
  color: #031346;
  text-decoration: none;
}

.breadcrumb-strip a:hover {
  text-decoration: underline;
}

.breadcrumb-separator {
  margin: 0 0.5rem;
  color: #666;
}

.breadcrumb-current {
  color: #666;
  font-weight: normal;
}

/* ========================
   BHF BOOK PAGE STYLES (bhf-books.html)
=========================== */

/* Hero Image Container and Image */
.bhf-book-hero-wrapper {
  text-align: center;
  margin-bottom: 2rem;
  padding: 0 1rem;
  box-sizing: border-box;
}

.bhf-book-hero-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Content Container */
.bhf-book-content-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem;
  font-family: 'Lora-Medium', serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #000;
}

.bhf-book-title {
  font-family: 'IM Fell DW Pica SC', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #031346;
}

.bhf-book-summary {
  font-size: 1.4rem;
  font-family: 'IM Fell DW Pica SC', serif;
  margin: 1rem 0 2rem 0;
  color: #000;
}

.bhf-book-main-content {
  margin-bottom: 2rem;
}

/* Author Block */
.bhf-book-author-block {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #fdfdfd;
  border: 1px solid #ddd;
  border-radius: 8px;
  clear: both;
}

.bhf-book-author-content {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.bhf-book-author-portrait {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.bhf-book-author-info {
  flex: 1;
}

.bhf-book-author-name {
  font-family: 'IM Fell DW Pica SC', serif;
  font-size: 1.2rem;
  color: #031346;
  margin: 0 0 1rem 0;
  padding-top: 0;
}

.bhf-book-author-summary {
  font-family: 'Lora-Medium', serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #000;
  margin: 0;
}

.bhf-book-author-link {
  color: #000;
  text-decoration: none;
}

.bhf-book-author-link:hover {
  text-decoration: underline;
}

/* ========================
   BHF LISTING PAGE STYLES (best-historical-fiction-books.html)
=========================== */

/* Hero Image */
.bhf-listing-hero {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  display: block;
}

.bhf-listing-hero img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Content Container */
.bhf-listing-content-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem;
}

.bhf-listing-title {
  font-family: 'IM Fell DW Pica SC', serif;
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #031346;
}

.bhf-listing-summary {
  font-size: 1.4rem;
  font-family: 'IM Fell DW Pica SC', serif;
  text-align: center;
  margin: 1rem 0 2rem 0;
  color: #000;
}

.bhf-listing-main-content {
  margin-bottom: 2rem;
}

/* Section Headers */
.bhf-listing-section-header {
  font-family: 'IM Fell DW Pica SC', serif;
  font-size: 1.5rem;
  color: #031346;
  text-align: center;
  margin: 3rem 0 2rem 0;
  padding-top: 1rem;
  border-top: 1px solid #ddd;
}

.bhf-listing-section-header:first-of-type {
  border-top: none;
  margin-top: 2rem;
}

/* Author Grid Layout */
.bhf-listing-authors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin: 2rem 0;
}

.bhf-listing-author-entry {
  border-bottom: 1px solid #ddd;
  padding-bottom: 2rem;
}

.bhf-listing-author-entry:last-child {
  border-bottom: none;
}

/* Author Header Layout */
.bhf-listing-author-header {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.bhf-listing-author-portrait {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.bhf-listing-author-info {
  flex: 1;
}

.bhf-listing-author-name {
  font-family: 'IM Fell DW Pica SC', serif;
  font-size: 1.25rem;
  color: #031346;
  margin: 0 0 1rem 0;
  padding-top: 0;
}

.bhf-listing-author-summary {
  font-family: 'Lora-Medium', serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #000;
  margin: 0;
}

/* Author Link Styling */
.bhf-listing-author-link {
  color: #000;
  text-decoration: none;
}

.bhf-listing-author-link:hover {
  text-decoration: underline;
}

/* Books Grid Layout */
.bhf-listing-books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.bhf-listing-book-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #000;
  text-decoration: none;
}

.bhf-listing-book-card:hover {
  text-decoration: underline;
}

.bhf-listing-book-cover {
  width: 180px;
  height: 270px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  display: block;
}

.bhf-listing-book-title {
  font-family: 'IM Fell DW Pica SC', serif;
  font-size: 1.1rem;
  color: #031346;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.bhf-listing-book-summary {
  font-family: 'Lora-Medium', serif;
  font-size: 1rem;
  line-height: 1.4;
  color: #000;
  margin: 0;
}

/* ========================
   ACCESSIBILITY & INTERACTION STYLES
=========================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  z-index: 1000;
  border-radius: 4px;
}

/* Focus indicators for all interactive elements */
.bhf-book-author-link:focus,
.bhf-listing-author-link:focus,
.bhf-listing-book-card:focus {
  outline: 3px solid #031346;
  outline-offset: 2px;
  border-radius: 4px;
}

.bhf-book-author-link:focus-visible,
.bhf-listing-author-link:focus-visible,
.bhf-listing-book-card:focus-visible {
  outline: 3px solid #031346;
  outline-offset: 2px;
}

/* ========================
   MOBILE RESPONSIVE STYLES
=========================== */
@media (max-width: 768px) {
  /* Breadcrumb Mobile Fix */
  .breadcrumb-container {
    padding: 0 1rem;
    left: auto;
    position: relative;
  }
  
  .breadcrumb-strip {
    font-size: 0.75rem;
  }

  /* BHF Book Page Mobile */
  .bhf-book-hero-image {
    max-width: 300px;
  }
  
  .bhf-book-title {
    font-size: 1.3rem;
  }
  
  .bhf-book-summary {
    font-size: 1.2rem;
  }
  
  .bhf-book-author-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .bhf-book-author-portrait {
    width: 120px;
    height: 120px;
  }

  .bhf-book-author-name {
    font-size: 1.1rem;
  }

  .bhf-book-author-summary {
    font-size: 1rem;
  }

  /* BHF Listing Page Mobile */
  .bhf-listing-hero img {
    max-height: 300px;
    object-fit: cover;
  }

  .bhf-listing-title {
    font-size: 1.5rem;
  }

  .bhf-listing-summary {
    font-size: 1.2rem;
  }

  .bhf-listing-author-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .bhf-listing-author-portrait {
    width: 150px;
    height: 150px;
  }

  .bhf-listing-author-name {
    font-size: 1.15rem;
  }

  .bhf-listing-author-summary {
    font-size: 1rem;
  }

  .bhf-listing-books-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    justify-items: center;
  }

  .bhf-listing-book-cover {
    width: 200px;
    height: 300px;
  }

  .bhf-listing-book-title {
    font-size: 1rem;
  }

  .bhf-listing-book-summary {
    font-size: 0.9rem;
  }

  .bhf-listing-section-header {
    font-size: 1.3rem;
    margin: 2rem 0 1.5rem 0;
  }
}

@media (max-width: 480px) {
  /* Very Small Screens */
  .bhf-book-hero-image {
    max-width: 250px;
  }
  
  .bhf-listing-hero img {
    max-height: 200px;
  }

  .bhf-book-author-portrait {
    width: 100px;
    height: 100px;
  }

  .bhf-listing-author-portrait {
    width: 120px;
    height: 120px;
  }

  .bhf-listing-books-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .bhf-listing-book-cover {
    width: 180px;
    height: 270px;
  }

  .bhf-listing-section-header {
    font-size: 1.2rem;
  }

  .bhf-book-title {
    font-size: 1.2rem;
  }

  .bhf-listing-title {
    font-size: 1.3rem;
  }

  .bhf-book-summary,
  .bhf-listing-summary {
    font-size: 1.1rem;
  }
}

/* ========================
   ACCESSIBILITY PREFERENCE SUPPORT
=========================== */

/* High contrast mode support */
@media (prefers-contrast: high) {
  .bhf-book-author-portrait,
  .bhf-listing-author-portrait,
  .bhf-listing-book-cover {
    border: 2px solid #000;
  }
  
  .bhf-book-author-link:focus,
  .bhf-listing-author-link:focus,
  .bhf-listing-book-card:focus {
    outline: 4px solid #000;
    background: #fff;
  }
  
  .bhf-listing-section-header {
    border-bottom: 2px solid #000;
    padding-bottom: 0.5rem;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .sr-only-focusable:focus {
    background: #fff;
    color: #000;
  }
}