/* configs/site-placeholder/style.css
 * Временный минималистичный стиль для заглушки kotovideopedia.ru.
 * Заменится на полноценный после /gsd-ui-phase. */

:root {
    --c-bg: #fbfaf5;
    --c-text: #2d2a26;
    --c-muted: #6b665e;
    --c-accent: #8b5a2b;
    --c-accent-hover: #6b4321;
    --c-card-bg: #ffffff;
    --c-border: #e6e0d3;
    --max-w: 1100px;
    --radius: 8px;
    --shadow: 0 2px 8px rgba(45, 42, 38, 0.06);
}

* { box-sizing: border-box; }

html { font-size: 16px; }

body {
    margin: 0;
    font-family: "Georgia", "Noto Serif", serif;
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.65;
}

a { color: var(--c-accent); text-decoration: none; }
a:hover { color: var(--c-accent-hover); text-decoration: underline; }

header.site-header {
    background: var(--c-card-bg);
    border-bottom: 1px solid var(--c-border);
    padding: 1.25rem 1.5rem;
}
header.site-header .inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
header.site-header .brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--c-text);
}
header.site-header nav a {
    margin-left: 1.25rem;
    font-size: 0.95rem;
}

main {
    max-width: var(--max-w);
    margin: 2rem auto;
    padding: 0 1.5rem;
}

h1 { font-size: 2rem; margin-top: 0; line-height: 1.3; }
h2 { font-size: 1.4rem; margin-top: 2rem; }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1rem; }

.lede {
    font-size: 1.1rem;
    color: var(--c-muted);
    margin: 0 0 2rem;
}

.breed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    margin: 2rem 0;
}
.breed-card {
    display: block;
    background: var(--c-card-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: var(--shadow);
    transition: transform 0.12s ease, box-shadow 0.12s ease;
    color: var(--c-text);
}
.breed-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(45, 42, 38, 0.1);
    text-decoration: none;
}
.breed-card h3 { margin: 0 0 0.4rem; color: var(--c-accent); }
.breed-card p { margin: 0; color: var(--c-muted); font-size: 0.95rem; }

footer.site-footer {
    max-width: var(--max-w);
    margin: 4rem auto 2rem;
    padding: 1.5rem;
    border-top: 1px solid var(--c-border);
    color: var(--c-muted);
    font-size: 0.9rem;
    text-align: center;
}

.notice {
    background: #fff4e0;
    border: 1px solid #f0d9a0;
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin: 1rem 0 2rem;
    font-size: 0.95rem;
}

@media (max-width: 640px) {
    header.site-header .inner { flex-direction: column; align-items: flex-start; }
    header.site-header nav a { margin-left: 0; margin-right: 1rem; }
    h1 { font-size: 1.6rem; }
}
