/*
Theme Name: IT Cats
Theme URI: https://itcats.com
Author: IT Cats
Description: Custom site theme for IT Cats. Small-business IT and WordPress.
Version: 1.2.0
License: GNU General Public License v2 or later
Text Domain: itcats
*/

:root {
  --teal: #319799;
  --teal-dk: #2B7F81;
  --navy: #1E2A3A;
  --paper: #F7FAFA;
  --accent: #E07A3D;
  --white: #fff;
  --line: #d5e4e4;
  --max: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--navy);
  background: var(--paper);
  font-family: "Source Sans 3", "Nimbus Sans", sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; }
a { color: var(--teal-dk); }
a:hover { color: var(--navy); }
h1, h2, h3, .site-title {
  font-family: "Plus Jakarta Sans", "Nimbus Sans", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 .6rem;
}
h1 { font-size: clamp(2rem, 4vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }
.wrap { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 20;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .7rem 0;
}
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--navy); }
.brand img { width: 48px; height: 48px; border-radius: 10px; }
.brand span { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; font-size: 1.15rem; }
nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 1.1rem; flex-wrap: wrap; }
nav a { text-decoration: none; color: var(--navy); font-weight: 600; font-size: .98rem; }
nav a:hover, nav .current-menu-item a { color: var(--teal); }
.btn {
  display: inline-block; background: var(--teal); color: var(--white) !important;
  text-decoration: none; font-weight: 700; font-size: .95rem;
  padding: .7rem 1.15rem; border-radius: 999px; border: 0; cursor: pointer;
}
.btn:hover { background: var(--teal-dk); }
.btn-ghost { background: transparent; color: var(--white) !important; border: 2px solid #fff; }
.btn-ghost:hover { background: #fff; color: var(--navy) !important; }
.header-cta { margin-left: .4rem; }

.hero {
  background: var(--teal);
  color: #fff;
  padding: 4rem 0 3.4rem;
}
.hero h1, .hero p { color: #fff; }
.hero p.lede { font-size: 1.28rem; max-width: 38rem; opacity: .95; }
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.4rem; }
.hero { padding-bottom: 0; }
.hero-art { background: var(--teal); padding: 0 0 1.5rem; }
.hero-art img {
  display: block; width: min(920px, 92%); margin: 0 auto;
  height: auto; object-fit: contain;
}
.cover-band { display: none; }

.section { padding: 3.4rem 0; }
.section.alt { background: #fff; }
.grid {
  display: grid; gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 1.3rem 1.25rem;
}
.section.alt .card { background: var(--paper); }
.card h3 { margin-bottom: .35rem; }
.card p { margin: 0; color: #3b4a4a; }
.kicker { color: var(--teal); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; font-size: .78rem; margin-bottom: .4rem; }

.split { display: grid; gap: 2rem; grid-template-columns: 1.1fr .9fr; align-items: center; }
@media (max-width: 800px) {
  .split { grid-template-columns: 1fr; }
  .header-inner { flex-wrap: wrap; }
  nav { width: 100%; }
}

.page-hero { padding: 2.4rem 0 1.2rem; }
.page-hero .kicker { margin-bottom: .5rem; }
.content :where(ul) { padding-left: 1.1rem; }
.content :where(li) { margin-bottom: .35rem; }

.form { display: grid; gap: .8rem; max-width: 36rem; }
.form label { font-weight: 600; font-size: .95rem; }
.form input, .form textarea {
  width: 100%; padding: .7rem .8rem; border: 1px solid var(--line);
  border-radius: 10px; font: inherit; background: #fff;
}
.form textarea { min-height: 9rem; }
.notice { padding: .9rem 1rem; border-radius: 10px; margin-bottom: 1rem; }
.notice.ok { background: #e5f6f4; }
.notice.err { background: #fdece6; }
.hp { position: absolute; left: -9999px; }

.site-footer {
  background: var(--navy); color: #d7e3e3; padding: 2.2rem 0;
  margin-top: 2rem;
}
.site-footer a { color: #fff; }
.foot-inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; align-items: center; }
.site-footer small { opacity: .8; }

