/* Importing fonts first: */
@import url("extra/fonts.css");

/* Importing auxiliary CSS files: */
@import url("aux/style_header.css");      /* Header */
@import url("aux/style_navbar.css");      /* Navbar */

/* Main body */
body {
  background-color: #222;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

body.hide {
  overflow: hidden;
}

#content-container {
  position: absolute;
  z-index: -1;
  
  padding: 85px 25px 25px 25px;
}

#content-container::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(RGBA(34,34,34,0.1),RGBA(34,34,34,0.25),RGBA(34,34,34,0.8),RGBA(34,34,34,1));
  opacity: 1;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

#content-container.hide::before {
  opacity: 0;
}

#content-container > * {
  position: relative;
  z-index: 1;
}

#content-inner {
  display: flex;
  height: calc(100vh - 110px);
  
  color: white;
  
  flex-direction: column;
}

#content-inner.navbar-on {
  padding-left: 150px;
}

#content-main {
  transition: opacity 0.6s ease, transform 0.6s ease;
  opacity: 1;
  flex: 1;
}

#content-main.hide {
  opacity: 0;
  transform: scale(0.98);
  transform-origin: center center;
  pointer-events: none;
}

#content-header {
  display: block;
  top: 0;
  width: 100%;
  min-height: 100px;
  max-height: 200px;
  align-content: center;
  margin: auto;
}

#content-header img {
  display: block;
  margin: auto;
  max-height: 200px;
}

#content-body {
  font-family: 'ABeeZee', sans-serif;
  text-shadow: 1.5px 1.5px 1.5px #111;
}

#content-body a {
  text-decoration: none;
  color: #A2AAD1;
  transition: 0.05s ease-in-out;
}

#content-body a:hover {
  color: #493D7F;
}

#content-body-img {
  display: block;
  float: right;
}

#content-body-img img {
  max-width: 450px;
  max-height: 500px;
}

#content-back {
  position: fixed;
  display: flex;
  max-height: 100px;
  margin: auto 10px 10px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  
  color: white;
  opacity: 0;
  
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-end;
  column-gap: 10px;
}

#content-back.show {
  opacity: 1;
}

#content-back .btn {
  font-family: 'Poppins', sans-serif;
  line-height: 1rem;
}

#image-info {
  display: flex;
  position: relative;
  padding: 10px 15px;
  width: 100%;
  max-width: 850px;
  min-width: 0;
  
  font-family: 'Poppins', sans-serif;
  text-shadow: 1.25px 1.25px 1.5px black;
  
  flex-direction: column;
  align-items: flex-end;
}

#image-info::before {
  content: "";
  position: absolute;
  inset: 0;
  
  /*border: 14px solid transparent;*/
  /*border-image-source: url("/img/assets/MGTT_box.png");*/
  /*border-image-slice: 14 fill;*/
  /*border-image-repeat: stretch;*/
  
  opacity: 0.65;
  z-index: -1;
}

.info-no-link {
  pointer-events: none;
  text-decoration: none;
  color: #CCC;
  cursor: default;
}