/*
Theme Name: Neiroshop Base
Theme URI: https://g5t.ru
Author: Neiroshop
Description: Minimal theme for the Neiroshop WordPress stack with a focused landing page for Gemigen.
Version: 1.0.0
Text Domain: neiroshop-base
*/

:root {
  --sand: #f6efe5;
  --paper: #fffdf8;
  --ink: #182126;
  --accent: #1f5a4f;
  --accent-soft: #dfeeea;
  --line: rgba(24, 33, 38, 0.1);
}

html {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(243, 189, 92, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(31, 90, 79, 0.16), transparent 35%),
    var(--sand);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
}

a {
  color: var(--accent);
}

.site-shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.site-header,
.site-footer {
  padding: 1.25rem 1.5rem;
}

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

.site-title {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.site-tagline {
  margin: 0.35rem 0 0;
  color: rgba(24, 33, 38, 0.75);
}

.site-main {
  width: min(980px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.hero {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 24px 80px rgba(24, 33, 38, 0.08);
}

.hero h2 {
  margin-top: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.05;
}

.hero p {
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  text-decoration: none;
}

.button-link.secondary {
  background: var(--accent-soft);
  color: var(--ink);
}

.content-card {
  margin-top: 1.5rem;
  padding: 2rem;
  border-radius: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
}

@media (max-width: 640px) {
  .site-main {
    width: min(100%, calc(100% - 1rem));
  }

  .hero,
  .content-card {
    padding: 1.35rem;
  }
}

