
  
/* -------------------------------------------------------- */
/* VARIABLES */
/* -------------------------------------------------------- */

/* Variables are used like this: var(--text-color) */
:root {
  /* Background Colors: */
  --background-color: #313134;
  --content-background-color: #222222;
  --sidebar-background-color: #222222;

  /* Text Colors: */
  --text-color: #ffffff;
  --sidebar-text-color: #fffefe;
  --link-color: #3026e8;
  --link-color-hover: #7780ec;

  /* Text: */
  --font: Arial, sans-serif;
  --heading-font: Courier New, monospace;
  --font-size: 14px;


  /* Other Settings: */
  --margin: 7px;
  --padding: 20px;
  --border: solid #000000 1.5px;
  --round-borders: 0.3rem;
  --sidebar-width: 226px;
}


/* -------------------------------------------------------- */
/* BASICS */
/* -------------------------------------------------------- */

* {
  box-sizing: border-box;
}

body {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
  font-size: var(--font-size);
  margin: 0;
  padding: var(--margin);
  color: var(--text-color);
  font-family: var(--font);
  line-height: 1.2;
  background: var(--background-color);
  background-image: url("");
  cursor: url("Images/orangecursor32px.png"), auto !important;
  
}

html{
  cursor: url("Images/orangecursor32px.png"), auto !important;
}

::selection {
  /* (Text highlighted by the user) */
  background: rgba(0, 0, 0, 0.2);
}

mark {
  /* Text highlighted by using the <mark> element */
  text-shadow: 1px 1px 4px var(--link-color);
  background-color: inherit;
  color: var(--text-color);
}

/* Links: */
a {
  text-decoration: underline;
   cursor: url("Images/orangecursor32px.png"), auto !important;
}

a,
a:visited {
  color: var(--link-color);
   cursor: url("Images/orangecursor32px.png"), auto !important;
}

a:hover,
a:focus {
  color: var(--link-color-hover);
  text-decoration: none;
  
}

/* //---special links----/// */
a.special-link{
text-decoration: underline;
}
a.special-link:link{
text-decoration: underline;

}
a.special-link:visited{

}

a.special-link:hover{
color: #C4471F !important;
}

a.special-link:active {
  /* color: #3026e8 !important; */
  text-decoration: underline;
}

/* ///----updates sidebar link-----//// */
a.updateslink{
text-decoration: underline;
}
a.special-link:link{
text-decoration: underline;

}
a.special-link:visited{

}

a.updateslink:hover{
color: #C4471F !important;
text-decoration: underline;
}

a.special-link:active {
  text-decoration: underline;
}

/* -------------------------------------------------------- */
/* LAYOUT */
/* -------------------------------------------------------- */
/* 1200px width */
.layout {
  /* width: 1350px; */
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-gap: var(--margin);
  grid-template: "header header header" auto "leftSidebar main rightSidebar" auto "footer footer footer" auto / var(--sidebar-width) auto var(--sidebar-width);
  /* Confused by the grid? Check out my tutorial: https://petrapixel.neocities.org/coding/positioning-tutorial#grid */
}

main {
  grid-area: main;
  overflow-y: auto;
  padding: var(--padding);
  background: var(--content-background-color);
  border: var(--border);
  border-radius: var(--round-borders);
  padding: 20px;
}

.maintext{
  color: #a18f29;
}

/* -------------------------------------------------------- */
/* HEADER */
/* -------------------------------------------------------- */

header {
  grid-area: header;
  font-size: 1.2em;
  border: var(--border);
  border-radius: var(--round-borders);
  overflow: hidden;
  background: var(--content-background-color);
  /* height: 13rem; */
}

.headbanner{
    
    display: grid;
    place-items: center;
}

.header-content {
  padding: var(--padding);
}

.header-title {
  font-family: var(--heading-font);
  font-size: 1.5em;
  font-weight: bold;
}

.header-image img {
  width: 100%;
  height: auto;
  

}

/* -------------------------------------------------------- */
/* SIDEBARS */
/* -------------------------------------------------------- */

aside {
  grid-area: aside;
  border: var(--border);
  border-radius: var(--round-borders);
  overflow: hidden;
  background: var(--sidebar-background-color);
  padding: var(--padding);
  color: var(--sidebar-text-color);
}

.left-sidebar {
  grid-area: leftSidebar;
  
}

.right-sidebar {
  grid-area: rightSidebar;
}

.sidebar-title {
  font-weight: bold;
  font-size: 1.2em;
  font-family: var(--heading-font);
}

.sidebar-section:not(:last-child) {
  margin-bottom: 3em;
}

.sidebar-section ul,
.sidebar-section ol {
  padding-left: 1.5em;
}

.sidebar-section > *:not(p):not(ul):not(ol):not(blockquote) {
  margin-top: 10px;
}

.updates{
  height: 12.5rem;
  width: 11.5rem;
  overflow-y:auto;
 display: block;
 padding: 0.6rem;
}



/* .updates a:hover{
  color: #3026e8 !important;
} */

.updatestext{
  text-align: left;
  display: block;
  max-height: 11.5rem;
  overflow-y: auto;
  margin:0;
}


/* Sidebar Blockquote: */

.sidebar-section blockquote {
  background: rgba(0, 0, 0, 0.1);
  padding: 15px;
  margin: 1em 0;
  border-radius: 10px;
  overflow: hidden;
}

.sidebar-section blockquote > *:first-child {
  margin-top: 0;
}

.sidebar-section blockquote > *:last-child {
  margin-bottom: 0;
}

/* Site Button: */

.site-button {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-button textarea {
  font-family: monospace;
  font-size: 0.7em;
}

/* -------------------------------------------------------- */
/* FOOTER */
/* -------------------------------------------------------- */

footer {
  grid-area: footer;
  border: var(--border);
  border-radius: var(--round-borders);
  overflow: hidden;
  font-size: 1rem;
  padding: 15px;
  background: var(--content-background-color);
  display: flex;
  justify-content: center;
}

footer a,
footer a:visited {
  color: var(--link-color);
}

footer a:hover,
footer a:focus {
  color: var(--link-color-hover);
}

/* -------------------------------------------------------- */
/* NAVIGATION */
/* -------------------------------------------------------- */

nav {
  margin-bottom: 3em;
}

nav .sidebar-title {
  margin-bottom: 0.5em;
}

nav ul {
  margin: 0 -5px;
  padding:0;
  list-style: none;
  user-select: none;
  
}

nav ul li {
  margin-bottom: 0;
  

}



nav > ul li > a,
nav > ul li > strong {
    display: inline-block;
  /* background-color: #b23a14;  */
  /* background: linear-gradient(to right, #b23a14, #ac5439); */
  background: radial-gradient(#ac5439, rgba(182, 102, 77, 0.98));
  
  border: 3px solid #b98b60; /* <-- THIS is what you want */
  /* font-family: 'optima','Franklin Gothic Medium', sans-serif; */

  margin-bottom: 0.7rem;
  text-align: center;
}

nav > ul li > a,
nav > ul li > details summary,
nav > ul li > strong {
  padding: 5px 10px;
  font-size: 1.9rem;
  color: #ffffff;
  text-align: center;
  border-radius: 0.4rem;
  font-family: 'caveat'
  
}


nav a:link,
nav a:visited {
    color:#ffffff;
    text-decoration: none;
}


nav > ul li > a.active,
nav > ul li > details.active summary {
  font-weight: bold;
}

nav ul summary {
  cursor: pointer;
}

nav ul ul li > a {
  padding-left: 30px;
  
}


nav ul li a .prim{
    font-size: 8rem;
    
}


/* -------------------------------------------------------- */
/* CONTENT */
/* -------------------------------------------------------- */

main {
  line-height: 1.5;
}

main a,
main a:visited {
  color: var(--link-color);
}

main a:hover,
main a:focus {
  color: var(--link-color-hover);
  text-decoration-style: wavy;
  
}

main p,
main .image,
main .full-width-image,
main .two-columns {
  margin: 0.75em 0;
}

main ol,
main ul {
  margin: 0.5em 0;
  padding-left: 1.5em;
}

main ol li,
main ul li {
  margin-bottom: 0.2em;
  line-height: 1.3;
}

main ol {
  padding-left: 2em;
}

main blockquote {
  background: rgba(0, 0, 0, 0.1);
  padding: 15px;
  margin: 1em 0;
  border-radius: 10px;
}

main pre {
  margin: 1em 0 1.5em;
}

main code {
  text-transform: none;
}

main center {
  margin: 1em 0;
  padding: 0 1em;
}

main hr {
  border: 0;
  border-top: var(--border);
  margin: 1.5em 0;
}

/* HEADINGS: */

main h1,
main h2,
main h3,
main h4,
main h5,
main h6 {
  font-family: var(--heading-font);
  margin-bottom: 0;
  line-height: 1.5;
}

main h1:first-child,
main h2:first-child,
main h3:first-child,
main h4:first-child,
main h5:first-child,
main h6:first-child {
  margin-top: 0;
}

main h1 {
  font-size: 3rem;
  text-align: center;
  color: #fefae0;
}

main h2 {
  font-size: 1.4em; color:#b23a14 ;
  text-align: center;
}

main h3 {
  font-size: 1.3em;
  text-align: center;
}

main h4 {
  font-size: 1.2em;
}

main h5 {
  font-size: 1.1em;
}

main h6 {
  font-size: 1em;
}

/* COLUMNS: */

.two-columns {
  display: flex;
}

.two-columns > * {
  flex: 1 1 0;
  margin: 0;
}

.two-columns > *:first-child {
  padding-right: 0.75em;
}

.two-columns > *:last-child {
  padding-left: 0.75em;
}

/* -------------------------------------------------------- */
/* CONTENT IMAGES */
/* -------------------------------------------------------- */

.image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

.full-width-image {
  display: block;
  width: 100%;
  height: auto;
}

.images {
  display: flex;
  width: calc(100% + 5px + 5px);
  margin-left: -5px;
  margin-right: -5px;
}

.images img {
  width: 100%;
  height: auto;
  padding: 5px;
  margin: 0;
  overflow: hidden;
}

/* -------------------------------------------------------- */
/* ACCESSIBILITY */
/* -------------------------------------------------------- */

/* please do not remove this. */

#skip-to-content-link {
  position: fixed;
  top: 0;
  left: 0;
  display: inline-block;
  padding: 0.375rem 0.75rem;
  line-height: 1;
  font-size: 1.25rem;
  background-color: var(--content-background-color);
  color: var(--text-color);
  transform: translateY(-3rem);
  transition: transform 0.1s ease-in;
  z-index: 99999999999;
}

#skip-to-content-link:focus,
#skip-to-content-link:focus-within {
  transform: translateY(0);
}

/* -------------------------------------------------------- */
/* MOBILE RESPONSIVE */
/* -------------------------------------------------------- */

/* CSS Code for devices < 800px */
@media (max-width: 800px) {
  body {
    font-size: 14px;
  }

  .layout {
    width: 100%;
    grid-template: "header" auto  "leftSidebar" auto "main" auto "footer" auto / 1fr;
    /* Confused by the grid? Check out my tutorial: https://petrapixel.neocities.org/coding/positioning-tutorial#grid */
  }

  
  .right-sidebar { 
    display: none;
  }

  aside {
    border-bottom: 1px solid;
    padding: 9px;
    font-size: 0.9em;
  }

  
  nav {
    padding: 0;
  }

  nav > ul {
    padding-top: 0.5em;
  }

  nav > ul li > a,
  nav > ul li > details summary,
  nav > ul li > strong {
    padding: 0.5em;
  }

  main {
    max-height: none;
    padding: 15px;
  }

  .images {
    flex-wrap: wrap;
  }

  .images img {
    width: 100%;
  }

  #skip-to-content-link {
    font-size: 1rem;
  }
}

.text
{
color:white

}

.header > img{
    width: 100%;
    height: auto;
    display: block;
}



/* //---navbar animation---// */

/* .pa-background-shutter-in-vertical ul li a {
    display: block;
    position: relative;
    background-color: #D5B982;  base color under gradient */
    /* overflow: hidden;
    color: #ffffff;
    transition: color 0.3s; */
/* } */

/* .pa-background-shutter-in-vertical ul li a {
   display: block;
   position: relative;
   background-color: #D5B982;
   overflow: hidden;
   transition: color 0.3s; */
/* } */

/* .pa-background-shutter-in-vertical ul li a::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   /* background: #C4471F; */
   /* background: linear-gradient(to right, #b23a14, #b55031); */ */
   /* transform: scaleY(1); */
     /* transform: scaleY(0); */
   /* transform-origin: center;
   transition: transform 0.3s ease-out;
   z-index: 0;
}

.pa-background-shutter-in-vertical ul li a span {
   position: relative;
   z-index: 1;
}

.pa-background-shutter-in-vertical ul li a:hover::before {
   transform: scaleY(0);
}

.pa-background-shutter-in-vertical ul li a:hover {
   color: #060500;
} */


/* //----------// */

.maintext {
    font-size: 0.9rem;
    color: #a18f29;
}

.updates{
 color: #a18f29;
}

/* //-------- scrollbar-------// */
/* //-------- scrollbar-------// */

::-webkit-scrollbar {
  width: 0.7rem;
}

::-webkit-scrollbar-track {
  background: #4f4f4f;
}

::-webkit-scrollbar-thumb {
  background: #C4471F;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #D5B982;
}

/* BUTTONS */
::-webkit-scrollbar-button {
  display: block;
  width: 16px;
  height: 16px;

  background-color: #C4471F;

  border: none;
  box-shadow: none;

  background-repeat: no-repeat;
  background-position: center;
  background-size: 6px 6px;

  -webkit-appearance: none;
}

/* UP BUTTON */
/* =========================
   BASE SCROLLBAR
========================= */

::-webkit-scrollbar {
  width: 0.7rem;
}

::-webkit-scrollbar-track {
  background: #4f4f4f;
}

::-webkit-scrollbar-thumb {
  background: #C4471F;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #D5B982;
}


::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none;
}

/* =========================
   OPTIONAL: IF BROWSER STILL SHOWS BUTTON AREA
========================= */

::-webkit-scrollbar-button:single-button {
  width: 16px;
  height: 16px;
  display: block;
  background: #C4471F;
  border: none;
  box-shadow: none;
}

/* =========================
   UP ARROW
========================= */

::-webkit-scrollbar-button:single-button:vertical:decrement {
  background-color: #C4471F;
  background-image:
    linear-gradient(135deg, transparent 50%, #D5B982 50%),
    linear-gradient(225deg, transparent 50%, #D5B982 50%);
  background-position:
    calc(50% - 3px) center,
    calc(50% + 3px) center;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

/* =========================
   DOWN ARROW
========================= */

::-webkit-scrollbar-button:single-button:vertical:increment {
  background-color: #C4471F;
  background-image:
    linear-gradient(45deg, transparent 50%, #D5B982 50%),
    linear-gradient(315deg, transparent 50%, #D5B982 50%);
  background-position:
    calc(50% - 3px) center,
    calc(50% + 3px) center;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

/* =========================
   HOVER STATES
========================= */

::-webkit-scrollbar-button:hover {
  background-color: #D5B982;
}

/* ::-webkit-scrollbar-button:single-button:vertical:decrement:hover {
  background-image:
    linear-gradient(135deg, transparent 50%, #C4471F 50%),
    linear-gradient(225deg, transparent 50%, #C4471F 50%);
} */

/* ::-webkit-scrollbar-button:single-button:vertical:increment:hover {
  background-image:
    linear-gradient(315deg, transparent 50%, #C4471F 50%),
    linear-gradient(45deg, transparent 50%, #C4471F 50%);
} */


/* ----sidebar timelapse--- */
.timelapse{
  width: 10rem;
  

}

/* ///--so links color won't change---/// */
a,
a:link,
a:visited,
a:hover,
a:active {
  color: inherit !important;
  text-decoration: none;
}

/* Back Pulse */
@-webkit-keyframes hvr-back-pulse {
  50% {
    background: radial-gradient(#b23a14, #cb5430);
  }
}
@keyframes hvr-back-pulse {
  50% {
    background: radial-gradient(#d4b173, #D5B982);
  }
}
.hvr-back-pulse ul li a {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  overflow: hidden;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
   cursor: url("Images/orangecursor32px.png"), auto !important;
}
.hvr-back-pulse ul li a:hover, .hvr-back-pulse ul li a:focus, .hvr-back-pulse ul li a:active {
  -webkit-animation-name: hvr-back-pulse;
  animation-name: hvr-back-pulse;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background: radial-gradient(#d4b173, #D5B982);
cursor: url("Images/orangecursor32px.png"), auto !important;
  color: white;
}

.hvr-back-pulse ul li a {
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  padding: 10px;

  background: radial-gradient(#b23a14, #cb5430);
  transition: 
    transform 0.2s ease,
    background 0.3s ease;
}

.hvr-back-pulse ul li a:hover {
  background: radial-gradient(#d4b173, #D5B982);
  transform: scale(1.1);
}

.hvr-back-pulse ul li a {
  display: inline-block;
  width: 100%; /* fixed width for uniformity */
  box-sizing: border-box;
  text-align: center;
  padding: 10px;
}


video{
   cursor: url("Images/orangecursor32px.png"), auto !important;
}

footer span{
  color:#b23a14; 
  font-family: Courier New; 
  font-weight: bold;
}

.sidebar-section blockquote {
  text-align: center;
}

.hvr-back-pulse ul li{
  transition: transform .2s; /* Animation */
}

.hvr-back-pulse ul li :hover {
  transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.video-container {
   
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

.timelapse {
    width: 100%;
    display: block;
    border-radius: 6px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 70px;
    height: 70px;

    border: none;
    border-radius: 50%;

    background: #cb5430;
    color: #D5B982;

    font-size: 32px;
    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: 0.2s ease;
}

.play-button span {
    transform: translateX(2px);
}

.play-button:hover {
    background: #D5B982;
    color: #cb5430;
}

.play-button.hidden {
    display: none;
}
/* ensure li stays exactly as before */
nav ul li {
  position: relative;
}

/* do NOT change display of a or li */

nav ul li {
  position: relative;
}

.soon-label {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(20deg); /* other way */

  font-size: 0.7rem;
  padding: 2px 6px;

  background: #c99916;
  color: #e7e7e7;
  border-radius: 999px;

  white-space: nowrap;
  pointer-events: none;
}

.hvr-back-pulse ul li.store-item:hover {
  transform: none !important;
}

/* Block the a hover animation and color pulse */
.store-item a,
.store-item a:hover,
.store-item a:focus,
.store-item a:active {
  animation: none !important;
  transform: none !important;
  background: radial-gradient(#ac5439, rgba(182, 102, 77, 0.98)) !important;
  cursor: default !important;
}