/* Literary fiction styling — All My Stories */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
    --content-max-width: 680px;
}

/* Content area — breathing room from sidebar */
.content {
    padding: 0 4rem;
}

/* Body text — serif for prose */
.content main {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 1.55rem;
    line-height: 2.2;
    letter-spacing: 0.01em;
}

/* Chapter titles */
.content main h1 {
    font-family: "Georgia", "Times New Roman", serif;
    font-weight: normal;
    font-size: 2.2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 2rem;
    border-bottom: none;
}

/* Epigraph styling — override all default blockquote theming */
.content main blockquote {
    font-style: italic;
    border: none !important;
    border-left: none !important;
    background: none !important;
    padding: 0 2rem;
    margin: 0 auto 1rem auto;
    max-width: 85%;
    text-align: center;
    opacity: 0.75;
    font-size: 1.7rem;
    line-height: 1.7;
    color: inherit !important;
}

.content main blockquote p {
    text-indent: 0 !important;
    margin-bottom: 0.3rem;
}

.content main blockquote p:last-child {
    margin-top: 1.2rem;
}

/* First hr = epigraph-to-prose separator: subtle, no asterisks */
.content main hr:first-of-type {
    border: none;
    margin: 2.5rem 0;
}

.content main hr:first-of-type::after {
    content: "";
}

/* Scene break hrs: centered asterisks */
.content main hr {
    border: none;
    text-align: center;
    margin: 2.5rem 0;
}

.content main hr::after {
    content: "\2022  \2022  \2022";
    font-size: 0.7rem;
    opacity: 0.35;
    display: block;
}

/* Prose paragraphs — indent continuation, not first */
.content main p {
    margin-bottom: 1rem;
    margin-top: 0;
    text-indent: 1.5em;
}

/* Don't indent the first paragraph after headings, hrs, or blockquotes */
.content main h1 + p,
.content main h2 + p,
.content main hr + p,
.content main blockquote + p,
.content main blockquote + hr + p {
    text-indent: 0;
}

/* Faded ampersand in title */
.faded-amp {
    opacity: 0.35;
}

/* Site title in header */
.menu-title {
    font-family: "Playfair Display", "Georgia", serif !important;
    font-size: 1.6rem !important;
    font-weight: 400;
    letter-spacing: 0.02em;
    font-style: normal;
}

/* Sidebar */
.sidebar .chapter li a {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 1.45rem;
}

/* Act headings in sidebar */
.sidebar .chapter li.part-title {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-top: 1.2rem;
    padding-top: 0.8rem;
}

/* Hide the navigation section labels (Chapter 1, Chapter 2, etc.) */
.sidebar .chapter li.chapter-item {
    padding-left: 0.5rem;
}

/* Book epigraph page */
.book-epigraph {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    text-align: center;
    font-style: italic;
    font-size: 1.7rem;
    line-height: 2;
    opacity: 0.8;
}

.book-epigraph p {
    text-indent: 0 !important;
    margin: 0;
}

.book-epigraph .epigraph-gap {
    height: 2rem;
}

.book-epigraph s {
    text-decoration: none;
    font-style: italic;
    opacity: 0.35;
}

/* About the author page */
.about-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    text-align: center;
}

.about-author .author-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.about-author h2 {
    font-family: "Playfair Display", "Georgia", serif;
    font-weight: 400;
    font-size: 1.8rem;
    margin: 0 0 0.5rem 0;
    border-bottom: none;
}

.about-author .author-bio {
    font-family: "Georgia", serif;
    font-size: 1.7rem;
    line-height: 1.9;
    max-width: 480px;
    text-indent: 0 !important;
    opacity: 0.85;
    margin-bottom: 1.5rem;
}

.about-author a {
    font-family: "Georgia", serif;
    font-size: 1.1rem;
    opacity: 0.7;
}

/* Print view tweaks */
@media print {
    .content main {
        font-size: 11pt;
        line-height: 1.6;
    }

    .content main h1 {
        page-break-before: always;
    }
}
