:root {
  --active-color: #f76700; /* fallback default */
  --cover-image: url('/assets/images/covers/jh.webp');
}

/* ------------------------- DOCUMENT SETUP ------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100%;
  height: 100%;
  background-color: #FCFCFC;
  color: #282828;
  margin: 0px;
  padding: 0px;
  text-align: left;
  font-family: "Avenir", sans-serif;
  font-size: 17.5px;
  font-weight: 500;
  line-height: 1.5em;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* ------------------------- COVER PAGE ------------------------- */
.page {
  width: 100%;
  height: 100vh;
  padding: 0px;
  margin: 0px auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
}

.leftside {
  width: 49%;
  margin-top: 120px;
  text-align: right;
  padding-right: 20px;
}

.coverimg {
  width: 320px;
  aspect-ratio: 750/477;
  background-image: var(--cover-image);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  float: right;
}

.rightside {
  width: 50%;
  margin-top: 180px;
  text-align: left;
  padding-left: 20px;
}

.nameField {
  font-family: "Mulish";
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -1px;
  margin-bottom: 38px;
  opacity: 0;
  animation: floatUp 0.7s ease-out forwards;
}

.entry {
  margin-bottom: 15px;
  opacity: 0;
  line-height: 1.3em;
  animation: floatUp ease-out forwards;
}

.titleline {
  opacity: 0.4;
}

.menu {
  margin-top: 40px;
  margin-left: -8px;
}

.menu-icon {
  display: inline-block;
  width: 38px;
  height: 38px;
  padding: 5px;
  margin: 0px;
  color: #282828;
  opacity: 0;
  transition: color 0.2s ease;
}

/* ------------------------- SVG ------------------------- */
.menu-icon svg {
  width: 26px !important;
  height: 26px !important;
  min-width: 26px; /* Prevent shrinking */
  min-height: 26px;
  color: #282828;
}

.menu-icon svg:hover {
  color: var(--active-color);
  transition: color 0.2s ease;
}

/* ------------------------- ANIMATIONS ------------------------- */
@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.rightside .entry:nth-child(1) {
  animation-delay: 0.1s;
  animation-duration: 0.3s;
}

.rightside .entry:nth-child(2) {
  animation-delay: 0.2s;
  animation-duration: 0.4s;
}

.rightside .entry:nth-child(3) {
  animation-delay: 0.3s;
  animation-duration: 0.5s;
}

.rightside .entry:nth-child(4) {
  animation-delay: 0.4s;
  animation-duration: 0.6s;
}

.menu .menu-icon:nth-of-type(1) {
  animation-delay: 0.4s;
  animation-duration: 0.3s;
  animation-name: floatUp;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.menu .menu-icon:nth-of-type(2) {
  animation-delay: 0.5s;
  animation-duration: 0.4s;
  animation-name: floatUp;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.menu .menu-icon:nth-of-type(3) {
  animation-delay: 0.6s;
  animation-duration: 0.5s;
  animation-name: floatUp;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.menu .menu-icon:nth-of-type(4) {
  animation-delay: 0.7s;
  animation-duration: 0.6s;
  animation-name: floatUp;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.menu .menu-icon:nth-of-type(5) {
  animation-delay: 0.8s;
  animation-duration: 0.7s;
  animation-name: floatUp;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.menu .menu-icon:nth-of-type(6) {
  animation-delay: 0.9s;
  animation-duration: 0.8s;
  animation-name: floatUp;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

/* ------------------------- LINKS ------------------------- */
a, a:visited, a:active {
  color: #282828;
  text-decoration: none;
  text-decoration-color: transparent;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

a:hover {
  color: var(--active-color);
  text-decoration: underline;
  text-decoration-color: var(--active-color);
  text-decoration-thickness: 0.5px;
  text-underline-offset: 4px;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

/*--------------------------------- MOBILE -------------------------------------------*/
@media only screen and (max-width: 815px) {
  body {
    font-size: 19.5px;
  }
  .page {
    display: inline-block;
    width: 98%;
    padding-top: 80px;
  }
  .leftside, .rightside {
    width: 100%;
    text-align: center;
  }
  .leftside {
    margin: 30px auto 0px auto;
    padding: 0px;
  }
  .coverimg {
    width: 75%;
    margin: 0px auto;
    float: none;
  }
  .rightside {
    margin-top: 40px;
  }
  .leftside img {
    width: 80%;
  }
  img[src*="#whole"] {
    width: 100%;
    height: 100%;
  }
  img[src*="#half"] {
    width: 100%;
    height: 100%;
  }
  img[src*="#third"] {
    width: 100%;
    height: 100%;
  }
  iframe {
    width: 100%;
  }
  .verticalSpacer {
    height: 4px;
  }
  .content {
    width: 90%;
    margin: 35px auto;
    padding: 0;
  }
}

/*# sourceMappingURL=cover.css.map */