/*
Theme Name: Sabine Schumann
Theme URI: https://sabineschumann.com
Author: Sabine Schumann
Description: Eigenes minimalistisches Editorial-Theme für Sabine Schumann
Version: 1.0
Text Domain: sabine-schumann
*/


/* =========================================================
   SABINE SCHUMANN – EDITORIAL THEME
   ========================================================= */

:root {
    --bg: #f6f2ec;
    --surface: #efe7de;
    --surface-alt: #e8ece7;
    --text: #24211f;
    --muted: #746e68;
    --line: rgba(36, 33, 31, 0.14);

    --max-width: 1240px;
    --text-width: 700px;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 5rem;
    --space-xxl: 7rem;

    --serif: Georgia, "Times New Roman", serif;
    --sans: Arial, Helvetica, sans-serif;
}


/* =========================================================
   RESET / BASIS
   ========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    font-size: 18px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    opacity: 0.65;
}

p {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    margin-top: 0;
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.08;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    border-bottom: 1px solid var(--line);
}

.site-header__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.35rem 2rem;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-logo {
    font-family: var(--serif);
    font-size: 1.25rem;
    letter-spacing: 0.02em;
}

.site-nav ul {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
    list-style: none;
}

.site-nav a {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* =========================================================
   MAIN
   ========================================================= */

.site-main {
    overflow: hidden;
}


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

.hero {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 5rem 2rem 7rem;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 4rem;
}

.hero__image {
    min-height: 520px;
    background: #ddd5cc;
}

.hero__content {
    max-width: 500px;
}

.hero h1 {
    margin-bottom: 1.8rem;
    font-size: clamp(2.6rem, 4vw, 4.4rem);
    letter-spacing: -0.035em;
}

.hero__text {
    max-width: 430px;
    color: var(--muted);
    font-size: 1.05rem;
}

.eyebrow {
    margin-bottom: 1.2rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}


/* =========================================================
   ZWEI SÄULEN
   ========================================================= */

.pillars {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem var(--space-xxl);

    display: grid;
    grid-template-columns: 1fr 1fr;
}

.pillar {
    min-height: 400px;
    padding: 3.2rem;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.pillar:first-child {
    background: var(--surface);
}

.pillar:last-child {
    background: var(--surface-alt);
}

.pillar__number {
    margin-bottom: auto;
    font-family: var(--serif);
    font-size: 0.95rem;
}

.pillar h2 {
    margin-bottom: 1.5rem;
    font-size: clamp(2.2rem, 3.2vw, 3.7rem);
    letter-spacing: -0.03em;
}

.pillar p {
    max-width: 390px;
    margin-bottom: 1.8rem;
    color: var(--muted);
}

.pillar a {
    width: fit-content;
    padding-bottom: 0.2rem;
    border-bottom: 1px solid currentColor;

    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* =========================================================
   GEDANKEN & TEXTE
   ========================================================= */

.editorial {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem var(--space-xxl);
}

.editorial > h2 {
    margin-bottom: 3rem;
    font-size: clamp(2.5rem, 4vw, 4rem);
    letter-spacing: -0.035em;
}

.editorial__grid {
    display: grid;
    grid-template-columns: 1.55fr 0.85fr;
    gap: 3rem;
}

.editorial__featured {
    min-height: 440px;
    padding: 2.8rem;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    background: #ded6cc;
}

.editorial__featured h3 {
    max-width: 650px;
    margin-bottom: 1.3rem;
    font-size: clamp(2rem, 3vw, 3.2rem);
}

.editorial__featured p {
    max-width: 580px;
    margin-bottom: 0;
}

.editorial__side {
    display: flex;
    flex-direction: column;
}

.editorial__side article {
    flex: 1;
    padding: 2.2rem 0;

    display: flex;
    align-items: flex-end;

    border-top: 1px solid var(--line);
}

.editorial__side article:last-child {
    border-bottom: 1px solid var(--line);
}

.editorial__side h3 {
    margin: 0;
    font-size: 1.6rem;
}


/* =========================================================
   BUCH
   ========================================================= */

.book {
    margin: 0 auto var(--space-xxl);
    padding: 5rem max(2rem, calc((100vw - var(--max-width)) / 2 + 2rem));

    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 5rem;

    background: #ece4da;
}

.book__cover {
    min-height: 460px;
    max-width: 320px;
    width: 100%;

    background: #d4cbc1;
}

.book__content {
    max-width: 560px;
}

.book h2 {
    margin-bottom: 1.8rem;
    font-size: clamp(2.5rem, 4vw, 4.2rem);
}


/* =========================================================
   PODCAST
   ========================================================= */

.podcasts {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem var(--space-xxl);

    border-bottom: 1px solid var(--line);
}

.podcasts h2 {
    margin-bottom: 2.5rem;
    font-size: clamp(2.5rem, 4vw, 4rem);
}

.podcasts > p:last-child {
    max-width: 700px;
    font-family: var(--serif);
    font-size: 1.6rem;
    line-height: 1.35;
}


/* =========================================================
   ÜBER MICH
   ========================================================= */

.about {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-xl) 2rem var(--space-xxl);

    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 5rem;
}

.about__image {
    min-height: 430px;
    background: #ddd5cc;
}

.about__content {
    max-width: 590px;
}

.about h2 {
    margin-bottom: 1.8rem;
    font-size: clamp(2.5rem, 4vw, 4rem);
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    border-top: 1px solid var(--line);
}

.site-footer__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2.6rem 2rem;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.site-footer__brand {
    font-family: var(--serif);
    font-size: 1.25rem;
}

.site-footer__meta {
    display: flex;
    gap: 1.5rem;
}

.site-footer__meta a {
    font-size: 0.78rem;
}


/* =========================================================
   STANDARD-LISTEN
   ========================================================= */

.hero ul,
.pillar ul,
.editorial ul,
.book ul,
.about ul {
    padding-left: 1.2rem;
}

.hero li,
.pillar li,
.editorial li,
.book li,
.about li {
    margin-bottom: 0.35rem;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 960px) {

    .hero {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero__image {
        min-height: 460px;
    }

    .pillars {
        grid-template-columns: 1fr;
    }

    .pillar {
        min-height: 350px;
    }

    .editorial__grid {
        grid-template-columns: 1fr;
    }

    .book,
    .about {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .book__cover {
        max-width: 300px;
    }
}


/* =========================================================
   MOBIL
   ========================================================= */

@media (max-width: 700px) {

    body {
        font-size: 16px;
    }

    .site-header__inner {
        padding: 1.2rem;
    }

    .site-nav {
        display: none;
    }

    .hero {
        padding: 3rem 1.2rem 4.5rem;
    }

    .hero__image {
        min-height: 380px;
    }

    .hero h1 {
        font-size: 2.7rem;
    }

    .pillars {
        padding: 0 1.2rem 4.5rem;
    }

    .pillar {
        min-height: 330px;
        padding: 2.3rem;
    }

    .pillar h2 {
        font-size: 2.45rem;
    }

    .editorial {
        padding: 0 1.2rem 4.5rem;
    }

    .editorial > h2 {
        margin-bottom: 2.2rem;
        font-size: 2.6rem;
    }

    .editorial__featured {
        min-height: 380px;
        padding: 2rem;
    }

    .editorial__featured h3 {
        font-size: 2.25rem;
    }

    .book {
        margin-bottom: 4.5rem;
        padding: 4rem 1.2rem;
    }

    .book__cover {
        min-height: 420px;
    }

    .podcasts {
        padding: 0 1.2rem 4.5rem;
    }

    .podcasts h2 {
        font-size: 2.6rem;
    }

    .about {
        padding: 4rem 1.2rem 4.5rem;
    }

    .about__image {
        min-height: 380px;
    }

    .about h2 {
        font-size: 2.6rem;
    }

    .site-footer__inner {
        padding: 2rem 1.2rem;
        flex-direction: column;
        align-items: flex-start;
    }
}