/* - FONTS - */

@font-face {
  font-family: 'orbit';
  src: url("/!data/content/fonts/Orbit/Orbit-Regular.ttf");
}

@font-face {
  font-family: 'tektur';
  src: url("/!data/content/fonts/Tektur/Tektur-VariableFont_wdth\,wght.ttf");
}

@font-face {
  font-family: 'hairline';
  src: url("/!data/content/fonts/Bungee_Hairline/BungeeHairline-Regular.ttf");
}

@font-face {
  font-family: 'orbit';
  src: url("/!data/content/fonts/Orbit/Orbit-Regular.ttf");
}

@font-face {
  font-family: 'tourney';
  src: url("/!data/content/fonts/Tourney/Tourney-VariableFont-wdthwght.ttf");
  font-weight: 100;
}


/* - BASICS - */

* {
  font-variant-ligatures: none;
}

body {
  background-color: rgb(0, 0, 0);
  color: white;
  font-family: 'orbit', 'Courier New', Courier, monospace;
  margin: 0;
  margin-top: 10vh;
  padding: 0;
  width: 100vw;

  overflow-x: hidden;
}

h1 {
  font-family: 'tektur', 'orbit', 'Courier New', Courier, monospace;
  font-size: 400%;
}

h2 {
  font-family: 'hairline', 'tourney', 'orbit', 'Courier New', Courier, monospace;
  font-size: 200%;
  margin-bottom: 0px;
}

h3 {
  font-size: 150%;
}

a {
  color: white;
}

ul {
  list-style-type: none;
  padding: 0px;
}

.content-area {
  padding: 0px 10px;
  margin: 20px 60px 30px 60px;
  text-align: center;
}

.content-area p {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.card {
  /*background-color: #0e0e0e;*/

}

button {
  display: inline;
  background-color: #0e0e0e;
  font-family: 'orbit', 'Courier New', Courier, monospace;
  color: white;
  border: none;
  padding: 10px 20px;
  border: #00000000 2px solid;
  transition: 0.25s;
}

button:hover {
  cursor:pointer;
  border: white 2px solid;
  transition: 0.5s;
}

/* - EFFECTS - */

.fx-skew {
  transform-style: preserve-3d;
	transform: skewY(-10deg);
  max-width: min-content;
  margin: auto;
}

.fx-skew a {
  color: gray;
  text-decoration: none;
}

.fx-skew li:hover a {
  color: white;
  transition: 0.2s;
}

.fx-glow {
  text-shadow: 2px 2px 5px #ff0000;
}



/* - NAVBAR - */

div.navbar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: #0e0e0e;
  display: flex;
  align-items: center;
}

div.navbar ul li a {
  display: block;
  color: rgb(255, 255, 255);
  font-weight: bold;
  font-size: larger;
  padding: 14px 12px;
  height: 100%;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

div.navbar li {
  height: fit-content;
  padding: 0px 0px;
}

div.navbar ul li a:hover {
  background-color: #ffffff;
  color: black;
}

div.navbar img {
  height: 64px;
  margin: -22px 16px -22px 20px;
  filter: invert();
  transform: translate(0px, 3px) rotate(90deg);
}

div.navbar {
  position: fixed;
  min-height: 10%;
  width: 100vw;
  overflow: hidden;
  top: 0;
  z-index: 10;
}

.navbar p {
  pointer-events: none; font-size: large; text-align: right; transform: translate(-25px, -60px);
}

/* Hide Ryefield text when low on space */
@media screen and (max-width: 600px) {
  .navbar p {
    display: none;
  }
}

/* - GALLERY - */

.gallery-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 4vw;
  width: 100vw;
  height: auto;
}

.gallery-image-container {
  position: relative;
  margin-left: 2vw;
  margin-right: 2vw;
  width: 40vw;
  height: 30vw;
  overflow: hidden;
  border: 2px white solid;
  border-radius: 16px;
  text-align: center;
}

.gallery-image-container h3 {
  position: absolute;
  width: 100%;
  left: 0px;
  top: 0%;
  background-color: rgba(0, 0, 0, 0.8);
  filter: blur(0px);
  z-index: 1;
  pointer-events: none;
  transition: 0.2s;
}

.gallery-image-container:hover h3 {
  color: #FFFFFF;
  text-shadow: 0 0 10px #FFFFFF;
  transition: 0.5s;
}

.gallery-image-container img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  overflow: hidden;

  filter: brightness(90%);
  transition: 1s;
}

.gallery-image-container:hover img {
  filter: brightness(110%);
  width: 104%;
  transform: translate(-2%, 0%);
  transition: 0.5s;
}

.gallery-entry-description h2 {
  font-size: 5vw;
}

.gallery-entry-more {
  max-height: 0px;
  overflow: hidden;
}

.collage img {
  max-width: 70vw;
  max-height: 50vh;
  margin: 5px;
  border-radius: 16px;
  cursor: pointer;
}

/* Modal = The popup for when you click on an image in the gallery collage */

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 2; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  max-width: 80vw;
  max-height: 80vh;
}

/* Caption of Modal Image */
.modal-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation */
.modal-content, .modal-caption {  
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0.1)} 
  to {transform:scale(1)}
}

/* The modal Close Button */
.modal-close {
  position: absolute;
  transform: translate(0px, -50px);
  right: 16px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

/* - OVERLAY - */

#loadOverlay
{
  transition: 1s ease-in-out;
  opacity: 0;
  pointer-events: none;
}