/* ==========================================================================
   Root Site Stylesheet  —  tylerlester.net
   ========================================================================== */

/* ===== Base ================================================================ */
html, body {
  background-color: #0b0b0e !important; /* dark canvas fallback before JS applies image */
  background-image: url("/assets/images/bgs/vi_low_1600x1200.jpg");
  background-repeat: repeat-x;
  background-attachment: fixed;
  background-position: 50% 50%;
}

/* ===== Typography ========================================================== */
h1 {
  font-family: Georgia, serif;
  font-size: 36px;
  display: inline-block;
  margin-left: 16px;
  padding: 8px;
  letter-spacing: 2px;
  word-spacing: 2px;
  color: rgba(16,16,16,0.9);
  background-image: linear-gradient(to right, rgba(80,191,111,0.8), rgba(80,191,161,0.8));
  background-color: rgba(80,191,111,0.3);
  border-radius: 8px;
  outline: 3px solid rgba(16,16,16,0.9);
  text-shadow: 2px 2px 4px rgba(128,128,128,0.5);
}

h2 {
  font-family: Georgia, serif;
  font-weight: lighter;
  font-size: 36px;
  display: inline-block;
  margin-left: 16px;
  padding: 8px;
  letter-spacing: 2px;
  word-spacing: 2px;
  color: rgba(16,16,16,0.9);
  background-image: linear-gradient(to right, rgba(226,202,116,0.8), rgba(226,147,116,0.8));
  background-color: rgba(226,202,116,0.3);
  border-radius: 8px;
  text-shadow: 2px 2px 4px rgba(128,128,128,0.5);
}

h2.norm {
  font-size: 20px;
  font-weight: normal;
  background-image: linear-gradient(to left, rgba(240,240,240,1), rgba(155,155,155,0.9));
  outline: 1px dashed rgba(16,16,16,0.9);
}

h3 {
  font-family: "Courier New", monospace;
  font-weight: lighter;
  font-size: 16px;
  display: inline-block;
  margin-left: 16px;
  margin-right: 16px;
  padding: 8px;
  letter-spacing: 0;
  word-spacing: 12px;
  line-height: 26px;
  color: rgba(16,16,16,0.9);
  background-image: linear-gradient(to left, rgba(240,240,240,1), rgba(155,155,155,1));
  border-radius: 8px;
  outline: 4px double rgba(16,16,16,0.9);
  text-shadow: 2px 2px 4px rgba(128,128,128,0.5);
}

p {
  font-family: Helvetica, sans-serif;
  font-size: 16px;
  display: inline-block;
  margin-left: 32px;
  padding: 0;
  letter-spacing: 2px;
  word-spacing: 2px;
  color: rgba(16,16,16,0.9);
  background-color: rgba(255,255,255,0.9);
  text-shadow: 2px 2px 4px rgba(128,128,128,0.5);
}

/* ===== Door + Nav Buttons (home page interactive elements) ================ */
.door {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 220px;
  width: 172px;
  margin: -55px 0 0 -88px;
}

.doorlink,
.leftbuttonlink,
.rightbuttonlink,
.topbuttonlinkL,
.topbuttonlinkR {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.leftbutton,
.rightbutton,
.topbuttonL,
.topbuttonR {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.leftbutton  { margin: -3px 0 0 -224px; }
.rightbutton { margin: -3px 0 0 208px; }
.topbuttonL  { margin: -185px 0 0 -51px; }
.topbuttonR  { margin: -185px 0 0 35px; }

.leftbutton:hover,
.topbuttonL:hover,
.topbuttonR:hover { background: rgba(255,255,255,0.7); }
.rightbutton:hover { background: rgba(255,255,255,0.5); }
