/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */


@font-face {
  font-family: 'OSRS';
  src: url(assets/RuneScape-Quill-8.ttf)   format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}



body {
    
  /* Plain Text */
  color: lightgrey;
  font-family: 'OSRS', Times;
  /* Cursor */
  cursor: url(assets/GauntletCursor.png), auto;
}

h1 {
  font-size: 300%;
}

h2 {
  font-size: 200%
}

  /* Default link color */
  a {
    color: goldenrod;
  }
  
  /* Visited link color */
  a:visited {
    color: lightgrey;
  }

  /* Hovered link color */
  a:hover {
    color: yellowgreen;
  }

  /* Active link color */
  a:active {
    color: lightpink;  
}

 /* Change the cursor only when hovering links */
 a:hover {
  cursor: url(assets/GauntletCursorPointed.png)  , auto;

}

/* Center all paragraphs and headings */
body {
  text-align: center;
}



.torch-side {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  pointer-events: none; /* don’t interfere with clicks */
  z-index: 1000;
}

.left-torches {
  left: 0;
}
.right-torches {
  right: 0;
}

.torch {
  width: 100px;
  height: 200px;
  margin: 10px auto;
  background: url(nothing/) no-repeat center / contain;
  position: relative;
}

.torch::after {
  content: '';
  position: absolute;
  top: -43px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 220px;
  background: url(assets/torchanimated2.gif) no-repeat center / contain;
}


.gate-img {
  display: block;
  width: 300px;  /* match PNG dimensions */
  height: 400px;
  margin: 100px auto;
  background: url('assets/castlegate.png') center/cover no-repeat;
  text-align: center;
  line-height: 400px;
  font-family: 'OSRS', Times;
  color: lightgrey;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  text-decoration: none;
}

.vine-border {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 80px;                /* adjust to your vine’s width */
  background: url(assets/JungleVine.png) repeat-y center;
  pointer-events: none;
  z-index: 999;
}

/* Left side */
.vine-border.left {
  left: 0;
}

/* Right side: mirror the image */
.vine-border.right {
  right: 0;
  transform: scaleX(-1);
}


