/* ============================================================
   menu.css — shared styling for georgescott.com site nav + home
   Edit colors/spacing here; affects every page that includes it.
   ============================================================ */

:root {
  --gs-bg: #11151c;
  --gs-panel: #1b212c;
  --gs-panel2: #232b39;
  --gs-line: #313b4d;
  --gs-text: #e6e9ef;
  --gs-muted: #8a93a6;
  --gs-accent: #4aa3ff;
}

/* ---------- Top nav bar (included on every page) ---------- */
.gs-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--gs-panel);
  border-bottom: 1px solid var(--gs-line);
  padding: 8px 14px;
  font-family: -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  position: sticky;
  top: 0;
  z-index: 1000;
  flex-wrap: wrap;
}

.gs-nav__brand {
  color: var(--gs-text);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  margin-right: 12px;
  white-space: nowrap;
}

.gs-nav__links {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
}

.gs-nav__link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gs-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.gs-nav__link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.gs-nav__link:hover {
  background: var(--gs-panel2);
  color: var(--gs-text);
}

.gs-nav__link.is-active {
  background: var(--gs-accent);
  color: #07223f;
}

/* ---------- Landing page tile grid (index.php) ---------- */
.gs-home {
  font-family: -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--gs-bg);
  color: var(--gs-text);
  min-height: 100vh;
}

.gs-home__header {
  text-align: center;
  padding: 48px 20px 12px;
}

.gs-home__header h1 {
  margin: 0 0 6px;
  font-size: 28px;
  font-weight: 700;
}

.gs-home__header p {
  margin: 0;
  color: var(--gs-muted);
  font-size: 14px;
}

.gs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 760px;
  margin: 32px auto;
  padding: 0 20px 48px;
}

.gs-tile {
  display: block;
  background: var(--gs-panel);
  border: 1px solid var(--gs-line);
  border-radius: 14px;
  padding: 22px;
  text-decoration: none;
  color: var(--gs-text);
  transition: transform 0.15s, border-color 0.15s, background 0.15s;
}

.gs-tile:hover {
  transform: translateY(-2px);
  border-color: var(--gs-accent);
  background: var(--gs-panel2);
}

.gs-tile__icon {
  width: 34px;
  height: 34px;
  color: var(--gs-accent);
  margin-bottom: 12px;
}

.gs-tile__icon svg {
  width: 100%;
  height: 100%;
}

.gs-tile__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.gs-tile__desc {
  font-size: 13px;
  color: var(--gs-muted);
  margin-bottom: 14px;
}

.gs-tile__live {
  font-size: 13px;
  color: var(--gs-text);
  border-top: 1px solid var(--gs-line);
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  font-variant-numeric: tabular-nums;
}

.gs-tile__live .label {
  color: var(--gs-muted);
}

@media (max-width: 560px) {
  .gs-grid {
    grid-template-columns: 1fr;
  }
  .gs-nav__link span.gs-nav__label {
    display: none;
  }
  .gs-nav__link {
    padding: 8px;
  }
}
