/* Waterloo Indie Awards - outback indie theme */
:root {
  --bg: #100b09;
  --bg-2: #17110d;
  --panel: #1e1610;
  --panel-2: #251a12;
  --orange: #ef5a1c;
  --orange-deep: #c8431a;
  --amber: #f6b21b;
  --gold: #f4c95d;
  --cream: #f4e7cb;
  --text: #ece3d0;
  --muted: #b19b7f;
  --line: rgba(244, 201, 93, 0.16);
  --line-strong: rgba(244, 201, 93, 0.32);
  --max: 1120px;
  --radius: 4px;
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Barlow", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: 0.25s; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--amber); color: #1a1208; padding: 10px 16px; font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.02;
  text-transform: uppercase;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  color: var(--amber);
}

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.95rem;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 15px 30px; border-radius: var(--radius); border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--orange); color: #1a0f07; }
.btn-primary:hover { background: var(--amber); }
.btn-ghost { border-color: var(--line-strong); color: var(--cream); }
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }
.btn[aria-disabled="true"] { opacity: 0.55; cursor: not-allowed; }

/* ---- nav ---- */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(16, 11, 9, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.nav-brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 1.25rem; color: var(--cream); }
.nav-brand img { width: 40px; height: 40px; border-radius: 50%; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-weight: 600; text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; color: var(--muted); }
.nav-links a:hover { color: var(--amber); }
.nav-links .nav-cta { color: var(--orange); }
.nav-toggle { display: none; background: none; border: 0; color: var(--cream); font-size: 1.6rem; cursor: pointer; }

/* ---- hero ---- */
.hero { position: relative; border-bottom: 3px solid var(--orange); background: #0b0806; }
.hero-banner { width: 100%; height: auto; object-fit: cover; }
.hero-under { text-align: center; padding: 34px 20px 46px; }
.hero-sub { max-width: 640px; margin: 0 auto 22px; color: var(--muted); font-size: 1.12rem; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: center; margin-bottom: 26px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.8rem; color: var(--cream);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta .tba { color: var(--amber); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---- section shell ---- */
section { padding: 84px 0; border-bottom: 1px solid var(--line); }
.section-head { max-width: 720px; margin-bottom: 46px; }
.section-head h2 { font-size: clamp(2.1rem, 5vw, 3.2rem); color: var(--cream); margin: 10px 0 0; }
.section-head p { margin-top: 16px; color: var(--muted); }
.section-dark { background: var(--bg-2); }

/* ---- about ---- */
.about p { max-width: 760px; color: var(--text); margin-bottom: 18px; font-size: 1.08rem; }
.about strong { color: var(--gold); font-weight: 600; }

/* ---- awards ---- */
.awards-sig { display: grid; gap: 20px; grid-template-columns: 1fr; margin-bottom: 40px; }
.sig-card {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line-strong); border-left: 4px solid var(--amber);
  border-radius: var(--radius); padding: 26px 28px;
}
.sig-card .tag { font-size: 0.72rem; letter-spacing: 2px; color: var(--amber); font-weight: 700; text-transform: uppercase; }
.sig-card h3 { font-size: 1.7rem; color: var(--cream); margin: 8px 0 4px; }
.sig-card .sub { font-style: italic; color: var(--orange); font-weight: 600; font-size: 0.95rem; margin-bottom: 12px; font-family: var(--font-body); text-transform: none; }
.sig-card p { color: var(--muted); font-size: 0.98rem; }

.awards-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
.award-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px;
}
.award-card h4 { font-family: var(--font-display); font-weight: 400; font-size: 1.35rem; letter-spacing: 0.5px; text-transform: uppercase; color: var(--cream); }
.award-card p { color: var(--muted); font-size: 0.95rem; margin-top: 6px; }

/* ---- rules ---- */
.rules-list { display: grid; gap: 0; max-width: 860px; }
.rule-row { display: grid; grid-template-columns: 190px 1fr; gap: 18px; padding: 18px 0; border-top: 1px solid var(--line); }
.rule-row:last-child { border-bottom: 1px solid var(--line); }
.rule-key { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.5px; color: var(--amber); font-size: 1.05rem; }
.rule-val { color: var(--text); }

/* ---- submit ---- */
.submit-box {
  text-align: center; max-width: 720px; margin: 0 auto;
  background: var(--panel); border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 48px 30px;
}
.submit-box h2 { font-size: clamp(2rem, 5vw, 3rem); color: var(--cream); }
.submit-box p { color: var(--muted); margin: 16px auto 26px; max-width: 520px; }
.tba-pill { display: inline-block; margin-top: 18px; font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--amber); border: 1px dashed var(--line-strong); padding: 8px 16px; border-radius: 40px; }

/* ---- footer ---- */
.footer { padding: 56px 0 40px; background: #0b0806; border-bottom: 0; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 26px; align-items: center; justify-content: space-between; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 58px; height: 58px; border-radius: 50%; }
.footer-brand .fb-name { font-family: var(--font-display); font-size: 1.3rem; color: var(--cream); }
.footer-brand .fb-tag { color: var(--orange); font-weight: 600; letter-spacing: 1px; font-size: 0.82rem; text-transform: uppercase; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; font-size: 0.82rem; }
.footer-links a:hover { color: var(--amber); }
.footer-meta { width: 100%; margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.85rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* ---- responsive ---- */
@media (min-width: 700px) {
  .awards-sig { grid-template-columns: repeat(3, 1fr); }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .awards-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .nav-links { position: absolute; top: 66px; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--bg-2); border-bottom: 1px solid var(--line); max-height: 0; overflow: hidden; transition: max-height 0.3s; }
  .nav-links.open { max-height: 320px; }
  .nav-links a { width: 100%; padding: 16px 20px; border-top: 1px solid var(--line); }
  .nav-toggle { display: block; }
  .rule-row { grid-template-columns: 1fr; gap: 4px; }
  section { padding: 60px 0; }
}
