

/* Fonts */

@font-face {
  font-family: 'site_regular';
  src: url('./fonts/ss-var.ttf') format('truetype');
  font-weight: 400;
  font-style: serif;
}

@font-face {
  font-family: 'site_bold';
  src: url('./fonts/ss-var.ttf') format('truetype');
  font-weight: 700;
  font-style: serif;
}

@font-face {
  font-family: 'terminal';
  src: url('./fonts/vt323.ttf') format('truetype');
}

/* Blinking animation */

.blink {
  display: inline-block;
  animation: blink-animation 1s steps(1, start) infinite;
}

@keyframes blink-animation {
  0% { visibility: visible; }
  50% { visibility: hidden; }
  100% { visibility: visible; }
}

/* Formatting */

.jctp_banner {
  font-family: 'terminal', monospace;
  font-weight: normal;
  font-size: 1.1rem; 
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  color: #FFFFFF;
  text-shadow: 0 0 10px #FFFFFFFF;
  line-height: 1;

  /* Frame effect */
  border: 1px solid #4C566A; 
  border-radius: 16px;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);

  /* Scanline effect */
  background: repeating-linear-gradient(
    to bottom,
    #000000 0px,
    #111111 2px,
    #000000 4px
  );
}

.jctp_banner_blue {
  display: inline-block;
  color: #0000FF;
  text-shadow: 0 0 10px #2222FFFF;
}

.jctp_banner_yellow {
  display: inline-block;
  color: #FFFF00;
  text-shadow: 0 0 10px #FFFF00FF;
}

/* Shiny screen effect */

.shiny_screen {
  position: relative;
  overflow: hidden; /* ensures the shine doesn't spill out */
}

.shiny_screen::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  margin-left: -40px;
  margin-right: -40px;

  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none; /* allows clicks to pass through */
  z-index: 1; /* sits above content but below interactive elements */
}

/* Navbar */

.tmux_navbar {
  color: #000;
  background-color: #00FF00;
  padding: 3pt;
  font-size: 1.5em;
  box-shadow: 0 0 10px #00FF00AA;
  a {
    color: #000;
    text-decoration-line: underline;
  };
  a:hover {
    color: #FFF;
  }
}

.tmux_navbar_right {
    margin-left: auto;
    margin-right: 0;
  }
/* Rest of the Site */

h1, h2, h3, h4, h5, h6 {
  font-family: 'site_bold', sans-serif;
  color: #ebcb8b;
}

body{
  background-color: #2E3440;
  font-family: 'site_regular';
  padding-top: 50px;
  padding-left: 500px;
  padding-right: 500px;
}

p, ul, main {
  font-family: 'site_regular';
  color: #d8dee9;
}

/* Tablet styles */
@media (max-width: 1600px) {
  body {
    padding-top: 50px;
    padding-left: 250px;
    padding-right: 250px;
  }

  .jctp_banner {
    font-size: 1.25rem; /* Adjust size as needed */
  }
  .tmux_navbar {
    font-size: 1.75em;
  }
}

/* Mobile styles */
@media (max-width: 1200px) {
  body {
    padding-top: 50px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .jctp_banner {
    font-size: 1.5rem; 
  }
  .tmux_navbar {
    font-size: 2.00em;
  }
}

a {
  color: #88C0D0; 
  text-decoration: none;
}

a:hover {
  color: #81A1C1; 
}

hr {
  border: none;
  border-top: 1px solid #4C566A; 
}

body {
  background-color: #2E3440; 
  color: #ECEFF4; 
  font-family: serif;
  margin: 0;
}

a {
  color: #88C0D0;
  text-decoration: none;
}

a:hover {
  color: #81A1C1; 
}

hr {
  border: none;
  border-top: 1px solid #4C566A; 
}
