/*
 Theme Name: Kevin Minimal
 Theme URI: https://twoksteaks.com/
 Author: Kevin R. Smith
 Description: Ultra-minimal theme for full HTML control.
 Version: 0.1.0
 Requires at least: 6.5
 Tested up to: 6.8
 License: GPL-2.0-or-later
 Text Domain: kevin-minimal
*/
:root{
  --maxw: 1100px;
  --pad: clamp(16px,2vw,24px);
  --fg:#0b0b0c; --bg:#fff; --muted:#666; --accent:#2f66ff;
}
*{box-sizing:border-box}
body{margin:0; font:400 16px/1.6 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial; color:var(--fg); background:var(--bg)}
a{color:var(--accent); text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:var(--maxw); margin:auto; padding:0 var(--pad)}
header{border-bottom:1px solid #eee}
footer{border-top:1px solid #eee; margin-top:48px; padding:24px 0; color:var(--muted); font-size:.95rem}

/* Buttons */
.btn {
  display: inline-block;
  padding: .6em 1.2em;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
}
.btn:hover { background: #1f4dcc; }

/* Feature Cards */
.features {
  padding: clamp(24px,5vw,48px) 0;
}
.features .card {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 16px;
}
.features .card h2 {
  margin: .2em 0 .4em;
  font-size: 1.1rem;
}
.features .card p {
  color: var(--muted);
  margin: 0;
}

/* Hero */
.hero {
  padding: clamp(40px,8vw,100px) 0;
}
.hero h1 {
  font-size: clamp(2rem,4vw,3rem);
  margin: 0 0 .3em;
}
.hero p {
  max-width: 60ch;
  color: var(--muted);
  margin: 0 0 1em;
}
