/*
Theme Name: Sirro Starter
Theme URI: https://example.com
Author: OpenAI Codex
Author URI: https://openai.com
Description: Lightweight starter theme for local WordPress builds in this workspace.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 8.0
Text Domain: sirro-starter
*/

:root {
  --sirro-bg: #f7f1e8;
  --sirro-surface: #fffaf4;
  --sirro-text: #1f1a17;
  --sirro-muted: #6a5f57;
  --sirro-accent: #ad4f2c;
  --sirro-border: #dbcbb8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: radial-gradient(circle at top, #fff7ea 0%, var(--sirro-bg) 58%, #efe3d2 100%);
  color: var(--sirro-text);
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 20px;
}

.hero-card {
  width: min(760px, 100%);
  background: rgba(255, 250, 244, 0.92);
  border: 1px solid var(--sirro-border);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 24px 80px rgba(84, 54, 35, 0.12);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sirro-accent);
}

.hero-title {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.94;
}

.hero-copy {
  max-width: 56ch;
  margin: 18px 0 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--sirro-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--sirro-accent);
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--sirro-accent);
  color: #fff8f1;
}

.button-secondary {
  background: transparent;
  color: var(--sirro-accent);
}

.hero-note {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--sirro-border);
  color: var(--sirro-muted);
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .hero-card {
    padding: 28px 22px;
    border-radius: 22px;
  }
}

