/* HitRite Caliber Finder basic styles */
:root{
  --hr-red:#b22222;
  --surface:#ffffff;
  --bg:#f5f6f8;
  --text:#1b1f23;
  --muted:#6b7280;
  --radius:12px;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
}

.site-header{
  background:linear-gradient(90deg, var(--hr-red), #e85c5c);
  color:white;
  padding:20px;
  box-shadow:0 2px 10px rgba(0,0,0,.1);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  max-width:960px;
  margin:0 auto;
}

.brand-mark{
  font-size:32px;
  line-height:1;
}

.brand-text h1{
  margin:0 0 4px 0;
  font-size: clamp(20px, 3vw, 28px);
}

.tagline{
  margin:0;
  color:#ffe9e9;
  font-size:14px;
}

.container{
  max-width:960px;
  margin:24px auto;
  padding:0 16px;
}

.selector{
  display:grid;
  grid-template-columns: 1fr 1fr auto;
  gap:12px;
  background:var(--surface);
  padding:16px;
  border-radius:var(--radius);
  box-shadow:0 2px 10px rgba(0,0,0,.06);
}

.field{
  display:flex;
  flex-direction:column;
  gap:6px;
}

label{font-size:14px; color:var(--muted)}

select, .btn{
  padding:10px 12px;
  border:1px solid #e5e7eb;
  border-radius:10px;
  font-size:16px;
  background:white;
}

.btn{
  background:var(--hr-red);
  color:white;
  border:none;
  cursor:pointer;
  align-self:end;
  transition: transform .02s ease-in-out, opacity .15s ease;
}
.btn:hover{ opacity:.95 }
.btn:active{ transform: scale(.99) }

.result{
  margin-top:16px;
  background:var(--surface);
  padding:16px;
  border-radius:var(--radius);
  box-shadow:0 2px 10px rgba(0,0,0,.06);
  min-height:80px;
}

.result h2{
  margin:0 0 8px 0;
}

.caliber{
  padding:12px;
  border:1px solid #eef0f3;
  border-radius:10px;
  margin:10px 0;
}

.caliber .name{
  font-weight:700;
}

.meta{
  font-size:14px;
  color:var(--muted);
  margin-top:6px;
}

.disclaimer{
  margin:16px 0;
  font-size:14px;
  color:#374151;
}

.site-footer{
  text-align:center;
  padding:20px;
  color:var(--muted);
  font-size:14px;
}
