/*
Theme Name: DecoyTx
Theme URI: http://localhost:8097
Author: Nistruct
Description: Base theme for the DecoyTx redesign.
Version: 1.0.0
Text Domain: decoytx
*/

:root {
    --dtx-color-ink: #111827;
    --dtx-color-muted: #5b6472;
    --dtx-color-line: #e5e7eb;
    --dtx-color-surface: #ffffff;
    --dtx-color-soft: #f6f7f9;
    --dtx-color-accent: #0f766e;
    --dtx-font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--dtx-color-ink);
    background: var(--dtx-color-surface);
    font-family: var(--dtx-font-sans);
    line-height: 1.55;
}

a {
    color: inherit;
}

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

.site-header,
.site-footer {
    border-color: var(--dtx-color-line);
    border-style: solid;
    border-width: 0;
}

.site-header {
    border-bottom-width: 1px;
}

.site-footer {
    border-top-width: 1px;
}

.site-header__inner,
.site-footer__inner,
.site-content {
    margin: 0 auto;
    max-width: 1180px;
    padding: 24px;
}

.site-header__inner {
    align-items: center;
    display: flex;
    gap: 32px;
    justify-content: space-between;
}

.site-header__brand {
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}

.site-header__nav .menu,
.site-footer__nav .menu {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-header__nav a,
.site-footer__nav a {
    color: var(--dtx-color-muted);
    font-size: 14px;
    text-decoration: none;
}

.entry {
    padding: 56px 0;
}

.entry h1 {
    font-size: clamp(40px, 7vw, 80px);
    letter-spacing: 0;
    line-height: .98;
    margin: 0 0 24px;
}

.admin-notice {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    padding: 16px;
}
