/* Theme Name: RustyOG
Theme URI: https://rustyog.net
Author: Rusty Old Gamers
Description: Responsive one-page RustyOG community theme.
Version: 1.0.5
Requires PHP: 7.4
Text Domain: rustyog */
.skip-link{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden;z-index:-999}
.skip-link:focus{left:16px;top:16px;width:auto;height:auto;overflow:visible;z-index:100000;padding:12px 18px;background:#fff;color:#111;font-weight:700;text-decoration:none;box-shadow:0 0 0 3px var(--gold)}
:root {
  --gold: #e2a33a;
  --red: #b94732;
  --ink: #eee7da;
  --bg: #090b0b;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.65 system-ui;
}
.wrap {
  width: min(1400px, calc(100% - 48px));
  margin: auto;
}
.site-header {
  position: fixed;
  z-index: 5;
  width: 100%;
  background: #080a0ae8;
}
.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand,
.menu a {
  color: white;
  text-decoration: none;
  font-weight: 900;
}
.brand-mark {
  border: 2px solid var(--gold);
  border-radius: 50%;
  padding: 10px;
  margin-right: 9px;
}
.menu {
  display: flex;
  gap: 24px;
}
.hero {
  min-height: 92vh;
  display: flex;
  align-items: end;
  padding: 150px 0 90px;
  background-image:
    linear-gradient(
      90deg,
      rgba(5, 7, 7, 0.78) 0%,
      rgba(5, 7, 7, 0.58) 42%,
      rgba(5, 7, 7, 0.16) 100%
    ),
    url("assets/images/hero.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
h1,
h2,
h3 {
  font-family: Impact, sans-serif;
  text-transform: uppercase;
  line-height: 1;
  margin: 12px 0;
}
h1 {
  font-size: clamp(55px, 11vw, 125px);
  max-width: 900px;
}
h2 {
  font-size: clamp(42px, 7vw, 70px);
}
h3 {
  font-size: 34px;
}
.hero p {
  font-size: 21px;
  max-width: 680px;
}
.button {
  display: inline-block;
  background: var(--gold);
  color: #111;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  padding: 15px 22px;
  box-shadow: 6px 6px var(--red);
}
section {
  padding: 90px 0;
}
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.grid article {
  padding: 32px;
  background: #141818;
  border-top: 5px solid #4da1c4;
}
.grid article + article {
  border-color: var(--red);
}
code {
  display: block;
  background: #070909;
  padding: 14px;
  color: var(--gold);
}
#community {
  background-image:
    linear-gradient(rgba(8, 12, 12, 0.9), rgba(8, 12, 12, 0.9)),
    url("assets/images/survival-banner.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#join {
  text-align: center;
  background-image:
    linear-gradient(rgba(6, 8, 8, 0.78), rgba(6, 8, 8, 0.88)),
    url("assets/images/join-banner.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.site-footer {
  padding: 25px;
}
.menu-toggle {
  display: none;
}
@media (max-width: 700px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .menu {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .menu.is-open {
    display: flex;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #111;
    padding: 20px;
    flex-direction: column;
  }
}
