:root {
  font-family: Arial, Helvetica, sans-serif;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  background: #0c0c0c;
  color: #f2efe6;
}


/* =========================
   LANDING PAGE
   ========================= */

.landing {
  display: grid;
  place-items: center;
  background: #050505;
}

.landing-shell {
  position: relative;
  width: min(100vw, 1536px);
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.cover-art {
  width: 100%;
  height: 100vh;
  object-fit: contain;
  display: block;
}

/*
  Invisible clickable area positioned over
  the LOGIN graphic already contained in the PNG.
*/
.login-link {
  position: absolute;

  left: 41%;
  bottom: 10.5%;

  width: 18%;
  height: 7%;

  display: block;
  cursor: pointer;

  padding: 0;
  border: 0;
  background: transparent;
  color: transparent;
  text-decoration: none;
}


/* =========================
   LOGIN / MEMBERS PAGES
   ========================= */

.auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;

  background:
    radial-gradient(circle at center, #29251c 0%, #111 45%, #050505 100%);
}

.auth-card {
  width: min(100%, 430px);
  padding: 42px 44px;

  background:
    linear-gradient(
      145deg,
      rgba(30, 28, 23, .97),
      rgba(10, 10, 10, .98)
    );

  border: 1px solid #b49a5a;
  border-radius: 6px;

  box-shadow:
    0 25px 70px rgba(0,0,0,.75),
    0 0 25px rgba(180,154,90,.10);

  text-align: center;
}

.auth-card h1 {
  margin: 5px 0 10px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  font-weight: normal;

  color: #e3c878;
  letter-spacing: .12em;
}

.auth-card .eyebrow {
  margin-bottom: 8px;

  color: #9d8955;
  font-size: .72rem;
  letter-spacing: .32em;
  text-transform: uppercase;
}

.auth-card .muted {
  color: #999;
  font-size: .9rem;
  margin-bottom: 30px;
}

.auth-card label {
  display: block;
  margin: 18px 0;

  text-align: left;
  color: #c7b98f;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.auth-card input {
  width: 100%;
  margin-top: 8px;
  padding: 13px 14px;

  border: 1px solid #4c4636;
  border-radius: 3px;

  background: #090909;
  color: #f5f0df;

  font-size: 1rem;

  outline: none;
}

.auth-card input:focus {
  border-color: #c7a95c;

  box-shadow:
    0 0 0 1px #c7a95c,
    0 0 12px rgba(199,169,92,.15);
}

.auth-card button {
  width: 100%;
  margin-top: 12px;
  padding: 13px;

  border: 1px solid #c7a95c;
  border-radius: 3px;

  background: #b3954f;
  color: #090909;

  font-family: Georgia, "Times New Roman", serif;
  font-size: .85rem;
  font-weight: bold;

  letter-spacing: .2em;
  text-transform: uppercase;

  cursor: pointer;

  transition:
    background .2s ease,
    color .2s ease;
}

.auth-card button:hover {
  background: #d2b666;
}

.auth-card .error {
  min-height: 1.3em;
  margin-top: 15px;

  color: #d88779;
  font-size: .85rem;
}

.auth-card .back-link {
  display: inline-block;
  margin-top: 18px;

  color: #887b59;
  font-size: .75rem;

  text-decoration: none;
  letter-spacing: .08em;
}

.auth-card .back-link:hover {
  color: #d2b666;
}

h1 {
  margin: 0 0 8px;
}

.muted,
.eyebrow {
  color: #aaa;
}

.eyebrow {
  letter-spacing: .2em;
  font-size: .78rem;
}

label {
  display: block;
  margin: 18px 0;
}

input {
  width: 100%;
  margin-top: 7px;
  padding: 12px;
  border: 1px solid #444;
  background: #0b0b0b;
  color: #fff;
}

button {
  padding: 11px 17px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
}

.error {
  min-height: 1.2em;
  color: #ff9d9d;
}

.back-link {
  color: #bbb;
  text-decoration: none;
}

/* =========================
   MEMBERS LANDING PAGE
   ========================= */

.members-landing {
  margin: 0;
  background: #050505;
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.members-shell {
  position: relative;
  width: min(100vw, 1536px);
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.members-art {
  display: block;
  width: 100%;
  height: 100vh;
  object-fit: contain;
}

.members-title {
  position: absolute;
  top: 4%;
  left: 50%;
  transform: translateX(-50%);

  color: #f2dfae;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 48px);
  font-weight: bold;
  letter-spacing: .12em;
  white-space: nowrap;

  text-shadow:
    0 2px 3px rgba(0,0,0,.9),
    0 0 15px rgba(0,0,0,.8);
}

.members-logout {
  position: absolute;
  right: 2%;
  bottom: 2%;

  padding: 8px 14px;
  border: 1px solid rgba(242,223,174,.7);

  background: rgba(0,0,0,.6);
  color: #f2dfae;

  cursor: pointer;
  font-size: .7rem;
  letter-spacing: .15em;
}

.logged-in-user {
  position: absolute;
  left: 2%;
  bottom: 2%;

  padding: 8px 12px;

  background: rgba(0,0,0,.55);
  border: 1px solid rgba(242,223,174,.5);

  color: #f2dfae;

  font-size: .7rem;
  letter-spacing: .08em;
}

.logged-in-user #username {
  font-weight: bold;
  color: #fff;
}

.members-link {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);

  padding: 11px 22px;

  color: #090909;
  background: #d2b666;

  border: 2px solid #f2dfae;
  border-radius: 4px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(13px, 1.2vw, 17px);
  font-weight: bold;
  letter-spacing: .08em;

  text-decoration: none;

  box-shadow: 0 4px 12px rgba(0,0,0,.6);

  transition:
    background .2s ease,
    color .2s ease,
    transform .2s ease;
}

.members-link:hover {
  background: #7a1f28;
  color: #ffffff;

  transform: translateX(-50%) scale(1.04);
}
