/*
Theme Name: Shopfitters
Theme URI: https://shopfitters.io
Author: You
Description: Lightweight theme for retail fit-out projects.
Version: 0.1.1
Text Domain: shopfitters
*/

:root {
  --ink: #111;
  --paper: #fff;
  --accent: #0044ff;
  --accent-dark: #002ca0;
  --radius: 6px;
  --max: 1200px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

.wrapper { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }

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

header.site-header, footer.site-footer {
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

footer.site-footer {
  border-top: 1px solid #eee;
  border-bottom: 0;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #666;
}

nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 1rem; }

.hero {
  padding: 6rem 0 4rem;
  background: #f7f9fc;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.5rem;
}

.hero p { max-width: 600px; margin: 0.5rem auto 1.5rem; }

.btn {
  display: inline-block;
  border: 2px solid var(--accent);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--accent);
}

.btn:hover {
  background: var(--accent);
  color: #fff;
}

section { margin-bottom: 3rem; }
section h2 { margin-bottom: 1rem; font-size: 1.5rem; }
