:root {
    --bg: #f7f4ee;
    --surface: #fffdf9;
    --text: #263238;
    --muted: #70777a;
    --accent: #b28a4a;
    --accent-dark: #8d6b38;
    --border: #e8e1d5;
    --shadow: 0 15px 45px rgba(38, 50, 56, 0.08);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.8;
}

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

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

/* Header */

.site-header {
    background: rgba(255, 253, 249, 0.96);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.logo span {
    color: var(--accent);
}

.main-nav {
    display: flex;
    gap: 25px;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.main-nav a {
    color: var(--muted);
}

.main-nav a:hover {
    color: var(--accent-dark);
}

/* Hero */

.hero {
    padding: 90px 0 80px;
    text-align: center;
    background:
        linear-gradient(
            180deg,
            rgba(255, 253, 249, 0.55),
            rgba(247, 244, 238, 0.95)
        );
}

.hero-label {
    color: var(--accent-dark);
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero h1 {
    margin: 15px 0 12px;
    font-size: clamp(42px, 7vw, 72px);
    line-height: 1.1;
    font-weight: normal;
}

.hero-subtitle {
    max-width: 600px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 20px;
}

/* Date */

.today {
    margin-top: 28px;
    color: var(--muted);
    font-family: Arial, sans-serif;
    font-size: 14px;
}

/* Main content */

.daily-content {
    margin-top: -25px;
    position: relative;
    z-index: 2;
}

.prayer-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: clamp(30px, 6vw, 65px);
}

.section-label {
    color: var(--accent-dark);
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.prayer-card h2 {
    margin: 0 0 25px;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: normal;
}

.prayer-text {
    max-width: 820px;
    margin: 0 auto;
    font-size: 20px;
    text-align: center;
}

.prayer-text::first-letter {
    font-size: 42px;
}

/* Verse */

.verse-section {
    margin-top: 30px;
    padding: 45px 30px;
    text-align: center;
    border-top: 1px solid var(--border);
}

.verse {
    max-width: 720px;
    margin: 10px auto 15px;
    font-size: 25px;
    font-style: italic;
}

.reference {
    color: var(--accent-dark);
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: bold;
}

/* Reflection */

.reflection {
    margin-top: 30px;
    padding: 45px 30px 10px;
    border-top: 1px solid var(--border);
}

.reflection h3 {
    margin: 0 0 15px;
    font-size: 28px;
    font-weight: normal;
}

.reflection p {
    color: #50585b;
    font-size: 18px;
}

/* Categories */

.categories {
    padding: 90px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading h2 {
    margin: 0;
    font-size: 38px;
    font-weight: normal;
}

.section-heading p {
    color: var(--muted);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.category {
    display: block;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 28px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.category-icon {
    font-size: 28px;
}

.category h3 {
    margin: 12px 0 5px;
    font-size: 21px;
    font-weight: normal;
}

.category p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    font-family: Arial, sans-serif;
}

/* Footer */

.site-footer {
    padding: 45px 0;
    background: #252f33;
    color: #dce0df;
    text-align: center;
}

.site-footer p {
    margin: 5px 0;
    font-family: Arial, sans-serif;
    font-size: 13px;
}

/* Mobile */

@media (max-width: 750px) {

    .container {
        width: min(100% - 24px, 1120px);
    }

    .header-inner {
        min-height: 65px;
    }

    .main-nav {
        display: none;
    }

    .hero {
        padding: 65px 0 65px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .prayer-card {
        padding: 28px 20px;
    }

    .prayer-text {
        font-size: 18px;
        text-align: left;
    }

    .verse {
        font-size: 21px;
    }

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

    .categories {
        padding: 65px 0;
    }
}
