/* ================= BASE ================= */

body {
    margin: 0;
    font-family: "Palatino Linotype", Palatino, serif;
    background: #f2f2f2;
    color: #111;
}

a {
    color: #1a0dab;
}

.content {
    max-width: 1200px;
    margin: auto;
    padding: 20px 40px 60px;
}

/* ================= HEADER ================= */

.header {
    max-width: 1200px;
    margin: auto;
    padding: 6px 40px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 24px;
}

.title img {
    width: 250px;
    max-width: 60vw;
}

/* ================= DESKTOP MENU ================= */

.menu-desktop {
    display: flex;
    gap: 18px;
    font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 18pt;
    text-transform: uppercase;
}

.menu-desktop a {
    text-decoration: none;
}

.menu-desktop a:nth-child(1) {
    color: #00A2E8;
}

.menu-desktop a:nth-child(2) {
    color: #A349A4;
}

.menu-desktop a:nth-child(3) {
    color: #3F48CC;
}

.menu-desktop a:nth-child(4) {
    color: #22B14C;
}

/* ================= SOCIAL ================= */

.social {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.social img {
    width: 22px;
    height: 22px;
}

/* ================= HAMBURGER (CSS ONLY) ================= */

.menu-checkbox {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    cursor: pointer;
    position: absolute;
    top: 14px;
    right: 20px;
    z-index: 3000;
}

.menu-icon span {
    height: 3px;
    background: #111;
    border-radius: 2px;
    transition: 0.3s ease;
}

.menu-checkbox:checked+.menu-icon span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.menu-checkbox:checked+.menu-icon span:nth-child(2) {
    opacity: 0;
}

.menu-checkbox:checked+.menu-icon span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* ================= MOBILE MENU ================= */

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 14px;
    padding: 16px 20px;
    background: #f2f2f2;
    font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16pt;
    text-align: right;
    text-transform: uppercase;
}

.mobile-menu a {
    text-decoration: none;
}

.mobile-menu a:nth-child(1) {
    color: #00A2E8;
}

.mobile-menu a:nth-child(2) {
    color: #A349A4;
}

.mobile-menu a:nth-child(3) {
    color: #3F48CC;
}

.mobile-menu a:nth-child(4) {
    color: #22B14C;
}

.menu-checkbox:checked~.mobile-menu {
    display: flex;
}

/* ================= BOOK ================= */

.book-layout {
    display: flex;
    gap: 40px;
    margin-bottom: 2px;
}

.book-cover img {
    width: 176px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.book-content {
    flex: 1;
}

.title-red {
    color: #B0261B;
}

/* ================= BUY SECTION ================= */

.buy-title {
    color: #1a0dab;
    text-decoration: underline;
    font-weight: normal;
}

.buy-secondary {
    color: #B0261B;
    font-weight: bold;
}

/* ================= SAMPLER ================= */

.sampler-title {
    text-align: center;
    font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 18pt;
    /* reduced from 24pt */
    text-transform: uppercase;
    margin: -6px 0 4px 0;
}

/* ================= LOWER LAYOUT ================= */

.lower-layout {
    display: flex;
    gap: 50px;
}

.short-fiction,
.media {
    flex: 1;
}

/* Short Fiction + Media headings */
.section-title {
    text-align: center;
    font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 14pt;
    font-weight: normal;
    letter-spacing: 1px;
}

/* ================= QUOTES ================= */

.quote-blue {
    color: #00A2E8;
    font-weight: bold;
    font-style: italic;
}

.quote-purple {
    color: #A349A4;
    font-weight: bold;
    font-style: italic;
}

/* ================= MEDIA + SEEDS ================= */

.media-box,
.seeds-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.media-box img,
.seeds-image img {
    max-height: 170px;
    width: auto;
    object-fit: contain;
}

/* ================= SEEDS ================= */

.seeds-section {
    margin-top: 40px;
}

.seeds-title {
    color: #22B14C;
    font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 18pt;
    font-weight: bold;
    text-transform: none;
    margin-bottom: 14px;
}

.seeds-text p {
    margin: 0 0 10px 0;
    line-height: 1.35;
}

/* ================= NEWS PAGE HEADING ================= */

.news-title {
    font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 18pt;
    font-weight: bold;
    font-style: normal;
    text-transform: none;
    margin-top: 30px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

    .menu-desktop {
        display: none;
    }

    .menu-icon {
        display: flex;
    }

    .header {
        flex-wrap: wrap;
        padding: 10px 20px 0;
    }

    .social {
        flex-direction: row;
        width: 100%;
        justify-content: flex-end;
        margin-top: 10px;
    }

    .book-layout,
    .lower-layout,
    .media-box,
    .seeds-row {
        flex-direction: column;
    }

    @media (max-width: 900px) {
        .home-author {
            order: 1;
            margin-top: 0 !important;
        }

        .book-content {
            order: 2;
        }
    }
}