/* Cook's Reality — Stylesheet v2 */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Source+Serif+4:ital,wght@0,400;0,600;0,700;1,400&display=swap');

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

:root {
    --bg: #f0f4f8;
    --bg-card: #ffffff;
    --bg-dark: #0d2a4e;
    --bg-warm: #1a3a5c;
    --primary: #1565c0;
    --primary-light: #42a5f5;
    --primary-dark: #0d47a1;
    --accent-red: #d32f2f;
    --accent-red-dark: #b71c1c;
    --gold: #1565c0;
    --gold-light: #42a5f5;
    --text: #2c2c2c;
    --text-light: #555;
    --text-muted: #888;
    --border: #d0dbe5;
}

body {
    font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.75;
    font-size: 18px;
}

.container {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Header ===== */
header {
    background: linear-gradient(135deg, #0d2a4e 0%, #1565c0 100%);
    color: #f0f4f8;
    padding: 0;
    border-bottom: 4px solid var(--accent-red);
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    min-height: 90px;
}

.logo {
    padding: 18px 0;
}

.logo h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #f5f1ea;
}

.logo h1 a {
    color: #f0f4f8;
    text-decoration: none;
    transition: color 0.2s;
}

.logo h1 a:hover {
    color: #82c4ff;
}

.tagline {
    font-family: 'Source Serif 4', serif;
    font-size: 14px;
    color: #82c4ff;
    font-style: italic;
    margin-top: 2px;
    letter-spacing: 0.5px;
}

nav {
    display: flex;
    gap: 28px;
}

nav a {
    color: #c5d9ec;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: color 0.2s;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

nav a:hover {
    color: #82c4ff;
    border-bottom: 2px solid var(--accent-red);
}

/* ===== Main ===== */
main {
    padding: 50px 0;
    min-height: 60vh;
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #eaf2fb 100%);
    padding: 50px 40px;
    border-radius: 10px;
    border-left: 5px solid var(--primary);
    margin-bottom: 45px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.hero h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--bg-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero p {
    margin-bottom: 16px;
    color: var(--text-light);
    font-size: 19px;
}

/* ===== Featured Article ===== */
.featured-article {
    margin-bottom: 45px;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 22px;
    border-bottom: 3px solid var(--accent-red);
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--bg-dark);
}

.featured-article article {
    background: var(--bg-card);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s;
}

.featured-article article:hover {
    box-shadow: 0 4px 18px rgba(0,0,0,0.1);
}

.featured-article h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.featured-article h3 a {
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.featured-article h3 a:hover {
    color: var(--primary);
}

.meta {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 14px;
    font-style: italic;
}

.read-more {
    display: inline-block;
    margin-top: 12px;
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.read-more:hover {
    color: var(--primary);
    text-decoration: none;
}

/* ===== Coming Soon ===== */
.coming-soon {
    background: var(--bg-card);
    padding: 30px 35px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.coming-soon ul {
    list-style: none;
}

.coming-soon li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
    font-size: 17px;
}

.coming-soon li:last-child {
    border-bottom: none;
}

.coming-soon li::before {
    content: "▸ ";
    color: var(--primary);
    font-weight: bold;
}

/* ===== Article List ===== */
.article-list article {
    background: var(--bg-card);
    padding: 28px 32px;
    margin-bottom: 16px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s, transform 0.2s;
}

.article-list article:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}

.article-list h3 {
    font-size: 21px;
    margin-bottom: 6px;
}

.article-list h3 a {
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.article-list h3 a:hover {
    color: var(--primary);
}

.coming-soon-item h3 {
    color: var(--text-muted);
}

.coming-soon-item .meta {
    color: var(--border);
}

/* ===== Full Article ===== */
.full-article {
    background: var(--bg-card);
    padding: 50px 45px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.full-article h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 22px;
    color: var(--bg-dark);
    line-height: 1.25;
    text-transform: none;
}

.full-article .intro {
    font-size: 20px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--primary-light);
    line-height: 1.6;
}

.full-article h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--bg-dark);
    font-weight: 600;
}

.full-article h3 {
    font-size: 21px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--bg-warm);
    font-weight: 600;
}

.full-article p {
    margin-bottom: 16px;
}

.full-article ul,
.full-article ol {
    margin-bottom: 22px;
    margin-left: 5px;
    padding-left: 28px;
}

.full-article li {
    margin-bottom: 10px;
}

.full-article strong {
    color: var(--bg-dark);
}

/* Pull quote effect */
.full-article p:nth-of-type(3) {
    /* subtle, doesn't break layout */
}

/* ===== Recommendation Boxes ===== */
.recommendation {
    background: linear-gradient(135deg, #f4f8fc 0%, #eaf2fb 100%);
    border: 1px solid var(--border);
    border-left: 5px solid var(--accent-red);
    padding: 25px 28px;
    margin: 24px 0;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}

.recommendation h3 {
    margin-top: 0;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--bg-dark);
}

.recommendation p {
    margin-bottom: 10px;
}

.recommendation em {
    color: var(--text-muted);
    font-size: 15px;
}

/* ===== Author Note ===== */
.author-note {
    font-style: italic;
    color: var(--text-light);
    margin-top: 10px;
    font-size: 17px;
}

/* ===== Back Link ===== */
.back-link {
    margin-top: 30px;
}

.back-link a {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.back-link a:hover {
    color: var(--primary);
}

/* ===== About Page ===== */
.about-page {
    background: var(--bg-card);
    padding: 50px 45px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.about-page h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 34px;
    margin-bottom: 25px;
    font-weight: 700;
    color: var(--bg-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-page h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 14px;
    color: var(--bg-warm);
    font-weight: 600;
    border-bottom: 2px solid var(--accent-red);
    padding-bottom: 6px;
    display: inline-block;
}

.about-page p {
    margin-bottom: 16px;
}

.about-page ul {
    padding-left: 28px;
    margin-bottom: 24px;
}

.about-page ul li {
    margin-bottom: 10px;
}

.intro {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 30px;
    font-style: italic;
}

/* ===== Footer ===== */
footer {
    background: linear-gradient(135deg, #0d2a4e 0%, #1565c0 100%);
    color: #c5d9ec;
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
    font-size: 14px;
    border-top: 4px solid var(--accent-red);
}

footer .disclosure {
    font-size: 12px;
    color: #666;
    margin-top: 8px;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
    header .container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 20px 20px;
    }

    nav {
        gap: 22px;
    }

    .hero {
        padding: 30px 20px;
    }

    .hero h2 {
        font-size: 26px;
    }

    .full-article {
        padding: 30px 20px;
    }

    .full-article h1 {
        font-size: 28px;
    }

    .full-article h2 {
        font-size: 24px;
    }

    .about-page {
        padding: 30px 20px;
    }

    .about-page h2 {
        font-size: 26px;
    }

    body {
        font-size: 16px;
    }

    .featured-article article,
    .article-list article {
        padding: 20px;
    }
}
