/* ===== style.css ===== */
/*
Theme Name: ChickTracker Theme
Theme URI: https://chicktracker.com
Author: Donald Ohse
Description: Custom lightweight ChickTracker theme (red/yellow branding).
Version: 1.0.0
Text Domain: chicktracker
*/

:root{
  --ct-red:#e53935;
  --ct-yellow:#ffd400;
  --ct-ink:#141414;
  --ct-muted:#6b7280;
  --ct-bg:#0b0b0b;
  --ct-card:#111827;
  --ct-line:rgba(255,255,255,.10);
  --ct-radius:18px;
  --ct-shadow: 0 10px 30px rgba(0,0,0,.35);
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:#f7f7f7;
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(255,212,0,.22), transparent 55%),
    radial-gradient(1000px 600px at 80% 0%, rgba(229,57,53,.18), transparent 55%),
    var(--ct-bg);
  line-height:1.5;
}

a{ color: var(--ct-yellow); text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{
  width:min(1100px, calc(100% - 32px));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(10,10,10,.65);
  border-bottom:1px solid var(--ct-line);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 220px;
}

.brand img{
  width:466px;
  height:207px;
  object-fit:contain;
  border-radius:12px;
  box-shadow: var(--ct-shadow);
}

.brand .title{
  font-weight:800;
  letter-spacing:.2px;
  line-height:1.1;
}
.brand .title span{
  display:block;
  font-size:12px;
  color: rgba(255,255,255,.75);
  font-weight:600;
}

.nav{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.nav a{
  color:#fff;
  font-weight:700;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid transparent;
}
.nav a:hover{
  border-color: var(--ct-line);
  background: rgba(255,255,255,.04);
  text-decoration:none;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 16px;
  border-radius:999px;
  font-weight:800;
  border:1px solid transparent;
  cursor:pointer;
  text-decoration:none !important;
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
}

.btn-primary{
  color:#1b1b1b;
  background: linear-gradient(180deg, var(--ct-yellow), #ffbf00);
  border-color: rgba(0,0,0,.15);
}
.btn-primary:hover{ filter: brightness(.98); }

.btn-ghost{
  color:#fff;
  background: rgba(255,255,255,.06);
  border-color: var(--ct-line);
}
.btn-ghost:hover{ background: rgba(255,255,255,.09); }

.hero{
  padding:56px 0 26px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:stretch;
}
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
}

.card{
  background: rgba(17,24,39,.62);
  border: 1px solid var(--ct-line);
  border-radius: var(--ct-radius);
  box-shadow: var(--ct-shadow);
}

.hero-card{
  padding:28px;
  position:relative;
  overflow:hidden;
}
.hero-card:before{
  content:"";
  position:absolute;
  inset:-40px -40px auto auto;
  width:240px;
  height:240px;
  background: radial-gradient(circle at 30% 30%, rgba(255,212,0,.35), transparent 65%);
  transform: rotate(10deg);
}

.kicker{
  display:inline-flex;
  gap:8px;
  align-items:center;
  font-weight:900;
  letter-spacing:.3px;
  color:#111;
  background: var(--ct-yellow);
  padding:6px 10px;
  border-radius:999px;
}

.h1{
  font-size: clamp(32px, 4vw, 46px);
  margin:14px 0 10px;
  line-height:1.08;
  letter-spacing:-.6px;
}
.lead{
  color: rgba(255,255,255,.83);
  font-size: 16px;
  max-width: 60ch;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

.feature-card{
  padding:22px;
}
.feature-card h3{
  margin:0 0 8px;
  font-size:18px;
}
.feature-card p{
  margin:0;
  color: rgba(255,255,255,.78);
}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 900px){
  .grid3{ grid-template-columns: 1fr; }
}

.section{
  padding: 22px 0 44px;
}
.section h2{
  margin:0 0 12px;
  font-size:24px;
}
.muted{ color: rgba(255,255,255,.72); }

.content{
  padding: 26px 0 52px;
}

.site-footer{
  border-top:1px solid var(--ct-line);
  padding: 18px 0 40px;
  color: rgba(255,255,255,.70);
  font-size: 13px;
}

.badge{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(229,57,53,.18);
  border:1px solid rgba(229,57,53,.35);
  color: #fff;
  font-weight:800;
}

.ct-prose{
  background: rgba(17,24,39,.55);
  border:1px solid var(--ct-line);
  border-radius: var(--ct-radius);
  padding: 22px;
}
.ct-prose h1,.ct-prose h2,.ct-prose h3{ margin-top:0; }

input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 12px;
  border:1px solid var(--ct-line);
  background: rgba(0,0,0,.25);
  color:#fff;
}
