/* Devi Journal shared styles */
:root {
    --plum-deep: #1a0e2e;
    --plum: #2d1854;
    --plum-mid: #4a2d7a;
    --violet: #8B7BDE;
    --marigold: #E8A33D;
    --marigold-soft: #F4C977;
    --cream: #FAF6EF;
    --cream-deep: #F3ECE0;
    --ink: #2A2233;
    --ink-soft: #6B6175;
    --white: #FFFFFF;
    --serif: 'Fraunces', Georgia, serif;
    --sans: 'Inter', -apple-system, sans-serif;
    --script: 'Pacifico', cursive;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(250,246,239,0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(42,34,51,0.07);
    padding: 14px 0;
}
.nav-inner {
    max-width: 1100px; margin: 0 auto; padding: 0 28px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--script); font-size: 1.4rem; color: var(--ink);
    text-decoration: none;
}
.nav-logo img { width: 34px; height: 34px; border-radius: 10px; }
.nav-cta {
    padding: 10px 24px; border-radius: 50px;
    background: var(--plum-deep); color: var(--white);
    font-weight: 600; font-size: 0.9rem; text-decoration: none;
    transition: all 0.3s var(--ease);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,14,46,0.25); }

.post-hero {
    max-width: 760px; margin: 0 auto; padding: 80px 28px 40px;
    text-align: center;
}
.post-tag {
    display: inline-block;
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--marigold);
    margin-bottom: 20px;
}
h1 {
    font-family: var(--serif); font-weight: 420;
    font-size: clamp(2.1rem, 4.5vw, 3.2rem);
    line-height: 1.12; letter-spacing: -0.01em;
    margin-bottom: 22px;
}
h1 em { font-style: italic; color: var(--plum-mid); }
.post-meta { font-size: 0.88rem; color: var(--ink-soft); }
.post-cover {
    max-width: 880px; margin: 40px auto 0; padding: 0 28px;
}
.post-cover img {
    width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center;
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(26,14,46,0.18);
}

article {
    max-width: 680px; margin: 0 auto; padding: 64px 28px 40px;
    font-size: 1.06rem;
}
article h2 {
    font-family: var(--serif); font-weight: 480;
    font-size: 1.7rem; line-height: 1.25;
    margin: 52px 0 18px;
}
article h3 {
    font-family: var(--serif); font-weight: 550;
    font-size: 1.25rem; margin: 36px 0 12px;
}
article p { margin-bottom: 22px; color: #3d3548; }
article ul, article ol { margin: 0 0 24px 26px; color: #3d3548; }
article li { margin-bottom: 10px; }
article strong { color: var(--ink); }
.pull {
    font-family: var(--serif); font-style: italic;
    font-size: 1.45rem; line-height: 1.5;
    color: var(--plum-mid);
    border-left: 3px solid var(--marigold);
    padding-left: 26px;
    margin: 44px 0;
}
.note {
    background: var(--cream-deep);
    border-radius: 18px;
    padding: 24px 28px;
    font-size: 0.95rem;
    margin: 36px 0;
}
.note b { color: var(--ink); }

.cta-band {
    background: linear-gradient(165deg, #1a0e2e, #2d1854 55%, #43286f);
    border-radius: 28px;
    max-width: 760px;
    margin: 60px auto;
    padding: 56px 44px;
    text-align: center;
    color: var(--white);
}
.cta-band h2 {
    font-family: var(--serif); font-weight: 420;
    font-size: 1.9rem; margin-bottom: 14px;
}
.cta-band h2 em { font-style: italic; color: var(--marigold-soft); }
.cta-band p { color: rgba(255,255,255,0.7); margin-bottom: 30px; }
.cta-band a {
    display: inline-block;
    padding: 15px 36px; border-radius: 50px;
    background: var(--white); color: var(--plum-deep);
    font-weight: 600; text-decoration: none;
    transition: all 0.3s var(--ease);
}
.cta-band a:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,0.3); }

.more {
    max-width: 760px; margin: 0 auto; padding: 0 28px 80px;
}
.more h3 { font-family: var(--serif); font-size: 1.3rem; margin-bottom: 20px; }
.more-links { display: flex; flex-direction: column; gap: 12px; }
.more-links a {
    padding: 18px 24px;
    background: var(--white);
    border: 1px solid rgba(42,34,51,0.08);
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600; font-size: 0.98rem;
    transition: all 0.3s var(--ease);
}
.more-links a:hover { transform: translateX(6px); border-color: var(--marigold); }
.more-links span { display: block; font-weight: 400; font-size: 0.84rem; color: var(--ink-soft); margin-top: 3px; }

.footer {
    background: #120a20; color: rgba(255,255,255,0.45);
    text-align: center; padding: 36px 28px;
    font-size: 0.82rem;
}
.footer a { color: rgba(255,255,255,0.65); }

@media (max-width: 640px) {
    .post-hero { padding-top: 56px; }
    article { padding-top: 44px; }
    .cta-band { margin: 48px 20px; padding: 44px 26px; }
}
