/* Home Schedule — ourhomeschedule.com. Chiefs red & gold, Jets green. */

:root {
  --red: #e31837;
  --gold: #ffb81c;
  --green: #125740;
  --green-text: #125740;
  --bg: #f4f6f5;
  --surface: #ffffff;
  --text: #16201c;
  --muted: #5d6b65;
  --line: #dde5e1;
  --hero-start: #1e8a63;
  --hero-end: #093324;
  --shadow: 0 1px 2px rgb(0 0 0 / 0.05), 0 8px 24px rgb(0 0 0 / 0.06);
}

@media (prefers-color-scheme: dark) {
  :root {
    --green-text: #4db887;
    --bg: #0d1311;
    --surface: #161e1b;
    --text: #e9efec;
    --muted: #9aaba3;
    --line: #26322d;
    --shadow: none;
  }
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 17px/1.6 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Helvetica, Arial, sans-serif;
}

a { color: var(--red); text-underline-offset: 3px; }
a:hover { text-decoration-thickness: 2px; }

.wrap { max-width: 760px; margin: 0 auto; padding: 0 16px; }

/* Header */
.site-header {
  background: linear-gradient(135deg, var(--hero-start), var(--green) 55%, var(--hero-end));
  color: #fff;
}
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 0;
}
.brand { display: flex; align-items: center; gap: 10px; color: #fff; text-decoration: none; font-weight: 700; }
.brand img { width: 36px; height: 36px; border-radius: 9px; }
.nav { display: flex; gap: 18px; }
.nav a { color: rgb(255 255 255 / 0.85); text-decoration: none; font-size: 15px; font-weight: 600; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--gold); }

.hero { padding: 36px 0 56px; text-align: center; }
.hero img { width: 112px; height: 112px; border-radius: 26px; box-shadow: 0 12px 32px rgb(0 0 0 / 0.35); }
.hero h1 { font-size: clamp(32px, 7vw, 46px); line-height: 1.1; margin: 22px 0 10px; letter-spacing: -0.02em; }
.hero p { font-size: 19px; margin: 0 auto; max-width: 520px; color: rgb(255 255 255 / 0.88); }
.badge {
  display: inline-block; margin-top: 22px; padding: 8px 16px; border-radius: 999px;
  background: rgb(255 255 255 / 0.14); color: var(--gold); font-weight: 700; font-size: 15px;
}

.page-title { padding: 28px 0 40px; }
.page-title h1 { font-size: clamp(30px, 6vw, 40px); line-height: 1.15; margin: 0 0 6px; letter-spacing: -0.02em; }
.page-title p { margin: 0; color: rgb(255 255 255 / 0.8); }

/* Content */
main.wrap { padding-top: 32px; padding-bottom: 48px; }
section { margin-bottom: 36px; }
h2 { font-size: 24px; line-height: 1.25; margin: 0 0 12px; letter-spacing: -0.01em; }
h3 { font-size: 18px; margin: 20px 0 6px; }
p, ul { margin: 0 0 14px; }
ul { padding-left: 22px; }
li { margin-bottom: 6px; }
.muted { color: var(--muted); }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
  padding: 20px 22px; box-shadow: var(--shadow);
}
.card + .card { margin-top: 14px; }

.summary { border-left: 5px solid var(--gold); }
.summary ul { margin-bottom: 0; }

.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; }
.feature .dot { display: inline-block; width: 12px; height: 12px; border-radius: 4px; margin-right: 8px; }
.feature h3 { margin: 0 0 6px; display: flex; align-items: center; }
.feature p { margin: 0; color: var(--muted); font-size: 16px; }

details { border-top: 1px solid var(--line); padding: 12px 0; }
details:first-of-type { border-top: 0; padding-top: 0; }
summary { cursor: pointer; font-weight: 600; }
details p { margin: 8px 0 0; color: var(--muted); }

.notice {
  display: none; margin: -60px 0 28px; padding: 16px 20px; border-radius: 16px;
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow);
}
.notice.show { display: block; }
.notice.ok { border-left: 5px solid var(--green-text); }
.notice.error { border-left: 5px solid var(--red); }
.notice strong { display: block; font-size: 18px; margin-bottom: 2px; }

.toc { columns: 2; column-gap: 24px; padding-left: 20px; margin: 0; }
@media (max-width: 560px) { .toc { columns: 1; } }

footer { border-top: 1px solid var(--line); padding: 24px 0 40px; font-size: 15px; color: var(--muted); }
footer .wrap { display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; }
footer a { color: var(--muted); }
