/*
Theme Name: Bearshomer
Version: 1.3.2
*/

:root{
  --sky:#7cc7e6;
  --navy:#0b162a;
  --panel:#0f2631;
  --panel-2:#0e3a46;
  --ink:#d6f0ff;
  --accent:#ff6f00;
}

/* Base */
html,body{
  margin:0; padding:0;
  background:var(--sky); color:var(--ink);
  font-family:"Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
h1,h2,h3,.pixel{
  font-family:"Press Start 2P", monospace;
  letter-spacing:1px;
}
.container{max-width:1200px;margin:0 auto;padding:14px;}

/* ---------- Header ---------- */
.site-header{
  display:flex; align-items:center; justify-content:space-between;
  background:var(--panel-2);
  padding:12px 16px; margin:0 0 14px;
  border:2px solid #051018; border-radius:6px;
}
.head-left{display:flex; align-items:center; gap:14px;}

/* Logo */
.logo {
  width:72px; /* bigger square */
  height:72px;
  background:var(--navy);
  display:flex;
  align-items:center;
  justify-content:center;
  border:2px solid #051018;

  font-family:"Press Start 2P", monospace;
  font-size:28px;       /* fills box better */
  font-weight:900;
  color:var(--accent) !important;
  text-decoration:none !important;
  line-height:1;
}
.logo:link,
.logo:visited,
.logo:hover,
.logo:active {
  color:var(--accent) !important;
  text-decoration:none !important;
}

.brand .name{
  font-family:"Press Start 2P", monospace;
  font-size:20px;
  font-weight:800;
  color:var(--ink);
}
.brand .tag{
  font-family:"Press Start 2P", monospace;
  font-size:12px;
  color:var(--accent);
  margin-top:4px;
}

/* Nav */
.menulist{display:flex;gap:12px;list-style:none;margin:0;padding:0;flex-wrap:wrap;}
.menulist a{
  text-decoration:none;color:var(--ink);background:var(--panel);
  padding:10px 16px;border-radius:4px;
  border:2px solid #051018;
  box-shadow:5px 5px 0 rgba(0,0,0,.55);
  font-weight:700;display:block;
}
.menulist .current-menu-item > a,
.menulist a:hover{color:var(--accent);}

/* ---------- Game bar ---------- */
.gamebar{
  margin:14px 0; background:var(--navy);
  padding:12px 16px;
  border:2px solid #051018; border-radius:6px;
  display:flex; gap:24px; align-items:center; flex-wrap:wrap; font-weight:800;
}
.gamebar .chunk{white-space:nowrap;}
.meter{display:flex;align-items:center;gap:10px;margin-left:auto;text-align:right;}
.meter .bar{
  width:120px;height:16px;background:#09202a;
  border:2px solid #051018;position:relative;overflow:hidden;
}
.meter .fill{position:absolute;inset:0 auto 0 0;width:0%;background:var(--accent);}

/* Progress link styling (Caleb to 4k Progress) */
.progress-link:link,
.progress-link:visited{
  color:var(--accent) !important;
  text-decoration:none;
  font-weight:700;
}
.progress-link:hover{
  color:var(--accent) !important;
  text-decoration:underline;
}

/* ---------- Columns ---------- */
.grid{display:grid;grid-template-columns:1fr 340px;gap:18px;}
@media (max-width:1000px){.grid{grid-template-columns:1fr;}}
main, aside{
  background:rgba(11,22,42,0.35);
  padding:12px;
  border:2px solid #051018;
  border-radius:6px;
}

/* ---------- Post cards ---------- */
.card{
  background:var(--panel);
  border-radius:0;
  margin-bottom:16px; padding:16px;
  border:2px solid #051018;
  box-shadow:5px 5px 0 rgba(0,0,0,.55);
}
.card .meta{
  font-size:12px;color:#9fd7ff;
  display:flex;justify-content:space-between;gap:12px;
}
.card .post-title{
  font-family:"Press Start 2P", monospace;
  font-size:20px;
  color:var(--accent);
  margin:10px 0 8px;
}
.card .post-title a{color:inherit;text-decoration:none;}
.card p{color:#cfe9ff;line-height:1.55;}
.btn{
  display:inline-block;margin-top:10px;
  background:var(--accent);color:var(--navy);
  padding:10px 14px;border-radius:4px;font-weight:900;text-decoration:none;
  border:2px solid #051018;
  box-shadow:5px 5px 0 rgba(0,0,0,.55);
}
.btn:hover{filter:brightness(1.05)}

/* ---------- Sidebar boxes ---------- */
.sidebox{
  background:var(--panel-2);
  border-radius:0;
  padding:14px; margin-bottom:16px;
  border:2px solid #051018;
  box-shadow:5px 5px 0 rgba(0,0,0,.55);
}
.sidebox h3{
  font-family:"Press Start 2P", monospace;
  color:var(--accent); 
  font-size:16px;
  margin:0 0 10px;
}

/* Categories */
.catlist{display:flex;flex-direction:column;gap:10px}
.catrow{
  display:grid;grid-template-columns:28px 1fr;align-items:center;gap:10px;
  padding:8px 10px;
  background:#0a2430;text-decoration:none;
  border:2px solid #051018;
  box-shadow:5px 5px 0 rgba(0,0,0,.55);
}
.catrow:hover{filter:brightness(1.05)}
.letter{
  width:28px;height:28px;
  background:var(--navy);
  display:flex;align-items:center;justify-content:center;
  color:var(--accent);font-weight:800;
  border:2px solid #051018;
}
.catname{color:var(--ink);font-weight:700}

/* Bears Schedule */
.schedule-list{display:flex;flex-direction:column;gap:6px;}
.game-item{
  display:grid;
  grid-template-columns:1fr 1fr 2fr;
  gap:10px;
  padding:6px 8px;
  border-bottom:1px solid rgba(255,255,255,0.15);
  font-size:0.85rem;
}
.game-item:last-child{border-bottom:none;}
.game-week{font-weight:bold;color:var(--accent);}
.game-date{color:#9fd7ff;}
.game-matchup{color:var(--ink);}
.game-matchup strong{color:var(--accent);}
.game-matchup em{color:#9fd7ff;font-style:normal;}

/* ---------- Footer ---------- */
.site-footer{
  text-align:center;margin:20px 0 0;padding:16px;color:#bfe6ff;
}