/* ============================================
   Broadway for Beginners — Preview Night Press
   ============================================ */

:root {
    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --color-text: #1a1a1a;
    --color-muted: #555;
    --color-light: #666;
    --color-btn: #2c2c2c;
    --color-btn-hover: #444;
    --color-accolades-bg: #f2f2f2;
    --color-accolades-text: #1a1a1a;
    --color-accolades-date: #777;
    --max-width: 900px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: #fff;
}

a { color: var(--color-text); }
a:hover { color: var(--color-muted); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3 { font-weight: 700; }
h1 { font-size: 2rem; line-height: 1.25; }
h2 { font-size: 1.5rem; margin-bottom: 16px; }

/* --- Layout --- */

.content,
.header-inner,
.accolades-inner,
.site-footer {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Header --- */

.site-header { padding: 20px 24px; }

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1.5px;
    text-decoration: none;
    color: var(--color-text);
}

/* --- Buttons --- */

.btn {
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    background-color: var(--color-btn);
    color: #fff;
    border-radius: 6px;
    padding: 10px 24px;
    transition: background-color 0.2s ease;
}

.btn:hover {
    background-color: var(--color-btn-hover);
    color: #fff;
}

/* --- Dividers --- */

.divider {
    border: none;
    border-top: 1px solid #ccc;
    margin: 32px 0;
}

/* --- Hero (index) --- */

.hero {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.hero-cover {
    flex-shrink: 0;
    width: 280px;
}

.hero-cover img {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.hero-text { flex: 1; }

.tagline {
    font-weight: 400;
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 24px;
}

.features-heading {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.features-list {
    list-style: disc;
    padding-left: 24px;
}

.features-list li {
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.features-list li a { color: var(--color-text); }

/* --- Get the Book --- */

.get-the-book { margin-bottom: 48px; }

/* --- Accolades --- */

.accolades {
    background-color: var(--color-accolades-bg);
    color: var(--color-accolades-text);
    padding: 48px 24px;
}

.accolade { margin-bottom: 28px; }
.accolade:last-child { margin-bottom: 0; }

.accolade-text {
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.4;
}

.accolade-date {
    font-size: 0.85rem;
    text-align: right;
    color: var(--color-accolades-date);
    margin-top: 4px;
}

/* --- Buy Page --- */

.buy-hero {
    display: flex;
    gap: 32px;
    align-items: center;
    margin-top: 24px;
}

.buy-hero-cover { flex-shrink: 0; width: 140px; }
.buy-hero-cover img { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12); }
.buy-hero-text { flex: 1; }
.buy-hero-text h1 { font-size: 1.8rem; margin-bottom: 12px; }

.buy-section { margin-bottom: 8px; }

.store-city { margin-bottom: 24px; }

.store-city h3 {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.store { margin-bottom: 20px; }
.store h4 { font-size: 1.15rem; margin-bottom: 8px; }
.store h4 a { color: var(--color-text); }

.store-label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 8px;
    margin-bottom: 4px;
}

.store ul { list-style: disc; padding-left: 28px; margin-bottom: 8px; }
.store li { font-size: 0.95rem; margin-bottom: 4px; }

.isbn-list { list-style: none; padding-left: 24px; margin-top: 8px; }
.isbn-list li { font-size: 0.95rem; margin-bottom: 4px; }

.store-online { margin-top: 16px; }

.buy-nav { font-size: 0.95rem; color: var(--color-muted); margin-bottom: 16px; }
.buy-nav a { color: var(--color-muted); }

/* --- Footer --- */

.site-footer {
    padding-top: 24px;
    padding-bottom: 24px;
    font-size: 0.85rem;
    color: var(--color-light);
}

.site-footer a { color: var(--color-light); }

/* --- Mobile --- */

@media (max-width: 640px) {
    h1 { font-size: 1.5rem; }

    .header-inner { flex-direction: column; gap: 12px; align-items: flex-start; }

    .hero { flex-direction: column; align-items: center; }
    .hero-cover { width: 220px; }
    .hero-text { text-align: left; }
    .tagline { font-size: 1.15rem; }

    .book-buttons { flex-direction: column; gap: 12px; }
    .book-buttons .btn { text-align: center; }

    .accolades { padding: 32px 20px; }
    .accolade-text { font-size: 0.95rem; }

    .buy-hero { flex-direction: column; align-items: center; text-align: center; }
    .buy-hero-cover { width: 160px; }
    .buy-hero-text h1 { font-size: 1.4rem; }
}

    .store-highlight {
    font-weight: 600;
    font-size: 0.9rem;
    color: #8b6914;
    margin-bottom: 8px;
}

