@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap");

/* ================================================
   COLORS
   ================================================ */

:root {
    --primary:    #6b4e71ff;
    --secondary:  #85baa1ff;
    --ink-black:  #001011ff;
    --background: #fff7f8ff;

    font-family: "Cormorant Garamond", serif;
    background-color: var(--background);
    scrollbar-gutter: stable;
}

/* ================================================
   LAYOUT
   body is a bare full-width shell; .content constrains
   the readable text column on all inner pages.
   ================================================ */

body {
    color: #333;
    font-size: 125%;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    background-color: var(--background);
}

.content {
    max-width: 55rem;
    padding: 2rem 4rem;
    margin: 0 auto;
    margin-bottom: 2rem;
    background-color: white;
}

.site-footer {
    text-align: center;
    padding: 1.5rem 2rem;
    font-size: 0.85rem;
    color: #888;
    background-color: var(--background);
    border-top: 1px solid #e8d8ea;
}

/* ================================================
   NAVIGATION — full-width on every page
   ================================================ */

.site-nav {
    display: flex;
    align-items: center;
    background-color: var(--primary);
    padding: 0 2rem;
}

.site-nav a {
    display: block;
    padding: 1rem;
    text-decoration: none;
    color: white;
}

.site-nav .logo {
    font-weight: bold;
    padding-left: 0;
}

.main-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media screen and (max-width: 48rem) {
    .site-nav,
    .main-menu {
        flex-direction: column;
    }

    .site-nav {
        padding: 0 1rem;
    }

    .site-nav a {
        padding: 0.5rem 0;
    }

    .content {
        padding: 1.5rem 1.25rem;
    }
}

/* ================================================
   LISTS
   ================================================ */

.post-snippet {
    margin-bottom: 1rem;
}

.post-snippet h3 {
    margin-bottom: 0.25rem;
}

/* ================================================
   LANDING PAGE
   .content is removed from <main> on landing —
   inner sections use .landing-inner to constrain width.
   ================================================ */

body.page-landing .content {
    max-width: 100%;
    padding: 0;
    margin: 0;
    background-color: transparent;
}

/* Re-constrain inner content sections on landing */
.landing-inner {
    max-width: 55rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 4rem;
    padding-right: 4rem;
}

@media screen and (max-width: 48rem) {
    .landing-inner {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

/* ================================================
   HERO SECTION
   ================================================ */

.hero {
    width: 100%;
    position: relative;
    overflow: hidden;
    min-height: 34rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-image: url("/images/hero-library.jpg");
    background-size: cover;
    background-position: center 30%;
    filter: brightness(0.55) saturate(0.85);
    z-index: 0;
}

/* Purple-to-transparent gradient overlay for depth */
.hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(107, 78, 113, 0.72) 0%,
        rgba(107, 78, 113, 0.30) 60%,
        transparent 100%
    );
}

.hero__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 4rem 2rem;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
    max-width: 55rem;
}

.hero__logo {
    width: 280px;
    height: auto;
}

.hero__publisher {
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    margin: -0.5rem 0 0 0;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.hero__tagline {
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.03em;
    max-width: 36rem;
    margin: 0;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.hero__intro {
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.75;
    max-width: 40rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.97);
    text-align: center;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.75), 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero__cta {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.75rem 2.25rem;
    background-color: var(--secondary);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-family: "Cormorant Garamond", serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.hero__cta:hover {
    background-color: #6da88e;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 48rem) {
    .hero {
        min-height: 22rem;
    }

    .hero__logo {
        width: 180px;
    }

    .hero__tagline {
    font-size: 1.4rem;
    }
}

/* ================================================
   IMPRINTS SECTION
   ================================================ */

.imprints-section {
    padding: 5rem 0 4rem;
    background-color: var(--background);
}

.imprints-section__header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.imprints-section__heading {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.02em;
}

.imprints-section__sub {
    font-size: 1.05rem;
    font-style: italic;
    color: #999;
    margin: 0;
}

.imprint-grid {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 55rem;
    padding-left: 4rem;
    padding-right: 4rem;
    border-top: 1px solid #e0cfe2;
}

.imprint-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.5rem 1rem;
    margin: 0 -1rem;
    border-bottom: 1px solid #e0cfe2;
    text-decoration: none;
    color: inherit;
    border-radius: 4px;
    transition: background-color 0.18s ease;
}

.imprint-row:hover {
    background-color: rgba(107, 78, 113, 0.06);
}

.imprint-row__name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
    transition: color 0.18s ease;
}

.imprint-row:hover .imprint-row__name {
    color: #5a3f60;
}

.imprint-row__blurb {
    font-size: 1.05rem;
    font-style: italic;
    color: #555;
    line-height: 1.5;
    text-align: right;
    transition: color 0.18s ease;
}

.imprint-row:hover .imprint-row__blurb {
    color: #333;
}

@media screen and (max-width: 48rem) {
    .imprint-grid {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .imprint-row {
        flex-direction: column;
        gap: 0.25rem;
        margin: 0;
        padding: 1.5rem 0;
    }
    .imprint-row__blurb {
        text-align: left;
    }
}

/* ================================================
   MISSION BAND
   ================================================ */

.mission-band {
    background-color: var(--ink-black);
    color: white;
    padding: 7rem 2rem;
    text-align: center;
}

.mission-band__quote {
    font-size: 1.65rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.6;
    max-width: 42rem;
    margin: 0 auto 1.75rem;
    letter-spacing: 0.01em;
}

.mission-band__quote strong {
    font-weight: 600;
    font-style: normal;
    color: var(--secondary);
}

.mission-band__attr {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.5;
    margin: 0;
}

/* ================================================
   ABOUT TEASER BAND
   ================================================ */

.about-band {
    background-color: white;
    padding: 7rem 2rem;
}

.about-band__inner {
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
}

.about-band__heading {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 1.25rem 0;
}

.about-band__text {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.75;
    color: #555;
    margin: 0 0 2rem 0;
}

/* ================================================
   BUTTONS
   ================================================ */

.btn {
    display: inline-block;
    padding: 0.6rem 1.75rem;
    border-radius: 4px;
    font-family: "Cormorant Garamond", serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.btn-filled {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 2px 8px rgba(107, 78, 113, 0.22);
}

.btn-filled:hover {
    background-color: #5a3f60;
    transform: translateY(-2px);
    box-shadow: 0 5px 14px rgba(107, 78, 113, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* ================================================
   IMPRINTS PAGE
   ================================================ */

.imprints-page {
    margin-top: 2rem;
}

.imprint-card {
    padding: 2rem 0;
    border-bottom: 1px solid #e0cfe2;
}

.imprint-card:first-child {
    border-top: 1px solid #e0cfe2;
}

.imprint-card__header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.imprint-card__name {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
    letter-spacing: 0.01em;
}

.imprint-card__description {
    margin: 0 0 0.75rem 0;
    color: #444;
    line-height: 1.7;
}

.imprint-card__lgbtq {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary);
    border: 1.5px solid var(--secondary);
    border-radius: 2rem;
    padding: 0.2rem 0.75rem;
}

/* ================================================
   SUBMISSIONS PAGE
   ================================================ */

.submissions-page {
    margin-top: 1rem;
}

.submissions-prose p {
    line-height: 1.75;
    color: #444;
}

.submissions-encouragement {
    margin: 2.5rem 0;
    padding: 1.75rem 2rem;
    border-left: 4px solid var(--secondary);
    background-color: #f7f3f8;
    border-radius: 0 6px 6px 0;
}

.submissions-encouragement p {
    margin: 0 0 1rem 0;
    color: #555;
    font-style: italic;
    line-height: 1.75;
}

.submissions-encouragement p:last-child {
    margin-bottom: 0;
}

.submissions-requirements {
    margin-top: 2.5rem;
}

.submissions-requirements__heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 0.4rem 0;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid #e0cfe2;
}

.submissions-requirements__intro {
    color: #666;
    margin: 0.75rem 0 1.5rem 0;
    font-size: 0.95rem;
}

.req-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.req-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background-color: white;
    border: 1px solid #e0cfe2;
    border-left: 4px solid var(--primary);
    border-radius: 6px;
    padding: 1.5rem;
}

.req-card__number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.25;
    line-height: 1;
    min-width: 2rem;
    text-align: center;
    flex-shrink: 0;
}

.req-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 0.4rem 0;
}

.req-card__body p {
    margin: 0;
    color: #444;
    line-height: 1.7;
}

.submissions-callout {
    margin-top: 2.5rem;
    background-color: #f0eaf2;
    border-radius: 6px;
    padding: 1.75rem 2rem;
    text-align: center;
}

.submissions-callout__thankyou {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    margin: 0 0 1rem 0;
}

.submissions-callout__email {
    color: #444;
    margin: 0 0 0.4rem 0;
}

.submissions-callout__email a {
    color: var(--primary);
    font-weight: 600;
}

.submissions-callout__subject {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
    letter-spacing: 0.01em;
}

@media screen and (max-width: 48rem) {
    .req-card {
        flex-direction: column;
        gap: 0.5rem;
    }

    .req-card__number {
        font-size: 1.4rem;
    }
}

/* ================================================
   ABOUT PAGE
   ================================================ */

.about-pullquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--primary);
    background-color: #f7f3f8;
    border-radius: 0 6px 6px 0;
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 300;
    color: var(--primary);
    line-height: 1.6;
}
