/*
Theme Name: Joe Visual
Author: Blank Design Lab
*/

@charset "utf-8";

/**
 * ========================================
 * // common
 * ========================================
 */

/* @font-face {
  font-family: 'Montserrat';
  font-style: normal;
  src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw0aXpsog.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} */

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth; /* or auto */
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  word-break: auto-phrase;
  margin: 0;
  background-color: #0a0a0a;
  cursor: url("https://joevisualstudio.com/wp-content/themes/joe-visual/images/cursor/orange.cur") 8 8, pointer;
}

body:not(.ready) {
  overflow: hidden;
}

* {
  -webkit-tap-highlight-color: transparent;
}

.page {
  margin-top: -70px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.page.loaded {
  opacity: 1;
  pointer-events: auto;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: url("https://joevisualstudio.com/wp-content/themes/joe-visual/images/cursor/white.cur") 8 8, pointer;
  user-drag: none;
  -webkit-user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

button,
button:hover,
a:hover {
  cursor: url("https://joevisualstudio.com/wp-content/themes/joe-visual/images/cursor/white.cur") 8 8, pointer;
  -webkit-user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

img {
  -webkit-user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none; /* Safari, iOS */
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media screen and (min-width: 1441px) {
  .wrap {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    padding-top: 150px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1440px) {
  .wrap {
    max-width: 70vw;
    width: 100%;
    margin: auto;
    padding-top: 150px;
  }
}

@media screen and (max-width: 767px) {
  .wrap {
    max-width: 85vw;
    width: 100%;
    margin: auto;
    padding-top: 150px;
  }
}

/**
 * ========================================
 * // color
 * ========================================
 */

.orange {
  color: #ef5323 !important;
}

/**
 * ========================================
 * // header
 * ========================================
 */

header {
  position: relative;
  z-index: 9999;
}

.hsite {
  position: sticky;
  z-index: 9999;
  top: 40px;
  display: flex;
  align-content: center;
  align-items: center;
  padding: 0px 45px;
  justify-content: space-between;
  mix-blend-mode: difference;
}

.hsite.menu-open {
  mix-blend-mode: normal;
}

.hlogo img {
  height: 45px;
}

.hamburger {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0px;
  z-index: 1001;
  cursor: url("https://joevisualstudio.com/wp-content/themes/joe-visual/images/cursor/white.cur") 8 8, pointer;
}

.himg {
  width: 45px;
  height: 45px;
  transition: transform 0.6s ease;
}

.himg.rotated {
  transform: rotate(90deg);
}

/* Navigation styling */
.main-nav {
  position: fixed;
  top: 0;
  right: -100%; /* completely off-screen */
  width: 700px;
  height: 100vh;
  background: #0a0a0a;
  padding: 2rem 1.5rem;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
  transition: right 0.6s ease;
  z-index: 999;
  opacity: 1; /* fully visible, just offscreen */
}

.main-nav.active {
  right: 0;
}

.main-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  height: 80vh;
  margin: 0;
}

.main-nav li {
  font-size: 42px;
  font-weight: 900;
  color: #4d4d4d;
  margin-bottom: 20px;
}

.main-nav li.active a {
  color: #e6e6e6;
}

.main-nav li a:hover {
  color: #e6e6e6;
}

.hbutton {
  display: flex;
  color: #c63c17;
  font-size: 14px;
  font-weight: 900;
  align-items: center;
  justify-content: space-evenly;
  max-width: 500px;
  width: 100%;
  margin: -50px auto 0 auto;
  border: solid 2px;
  border-radius: 50px;
}

.hright {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
}

.hright img {
  height: 20px;
  width: auto;
}

#linked_orange img {
  height: 19px !important;
}

#behance_orange img {
  height: 17px !important;
}

.hoverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.hoverlay.active {
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .hsite {
    top: 30px;
    padding: 0px 35px;
  }

  .hlogo img {
    height: 35px;
  }

  .himg {
    width: 35px;
    height: 35px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hsite {
    top: 25px;
    padding: 0px 30px;
  }

  .main-nav {
    width: 100vw;
    padding: 0;
  }

  .main-nav ul {
    height: 85vh;
  }

  .hlogo img {
    height: 30px;
  }

  .himg {
    width: 30px;
    height: 30px;
  }
}

@media screen and (max-width: 767px) {
  .hsite {
    top: 15px;
    padding: 0px 15px;
  }

  .main-nav {
    width: 100vw;
    padding: 0;
  }

  .main-nav ul {
    height: 85vh;
  }

  .main-nav li {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .hbutton {
    flex-wrap: wrap;
    padding: 15px 0;
    gap: 10px;
    width: 80vw;
  }

  .hleft {
    margin: 0;
  }

  .hright img {
    height: 18px;
  }

  #linked_orange img {
    height: 17px !important;
  }

  #behance_orange img {
    height: 15px !important;
  }

  .hlogo img {
    height: 30px;
  }

  .himg {
    width: 30px;
    height: 30px;
  }
}

/**
 * ========================================
 * // footer
 * ========================================
 */

footer {
  background-color: #0a0a0a;
  position: relative;
  z-index: 0;
}

#footer {
  border-top: solid #e6e6e6 1px;
  max-width: 100%;
  width: 100%;
}

.fbox {
  max-width: 1200px;
  width: 100%;
  padding-top: 50px;
  display: flex;
  justify-content: space-between;
  margin: auto;
}

.fleft {
  max-width: 540px;
  width: 100%;
}

.fright {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
}

.fsocmedbox {
  display: flex;
  margin-left: 50px;
}

.fsocmed {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin-left: 10px;
  align-items: flex-start;
}

.fsocmed img {
  height: 20px;
  margin-bottom: 10px;
}

.ftitle {
  color: #ef5323;
  font-size: 20px;
  font-weight: 900;
  margin-top: 0px;
}

.ftel {
  margin-bottom: 0px !important;
}

.fmail {
  margin-top: 0px;
}

.ftext {
  color: #b3b3b3;
  font-size: 12px;
}

.fcopy {
  display: flex;
  justify-content: space-between;
  padding: 80px 30px 0px 30px;
}

.fcopy-mask {
  display: inline-block;
  overflow: hidden;
}

.fcopy span {
  font-weight: 900;
  color: #2f2f2f;
  font-size: 80px;
  display: inline-block;
  opacity: 0;
  transform: translateY(50px);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.fcopy.animate span {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .fbox {
    max-width: 70vw;
  }

  .fleft {
    max-width: 50%;
  }

  .ftitle {
    font-size: 18px;
  }

  .fcopy {
    padding-top: 65px;
  }

  .fcopy span {
    font-size: 66px;
  }

  .fsocmed img {
    height: 18px;
    margin-bottom: 5px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fbox {
    max-width: 70vw;
    gap: 35px;
  }

  .fleft {
    max-width: 60%;
  }

  .ftitle {
    font-size: 18px;
  }

  .fcopy {
    padding-top: 50px;
  }

  .fcopy span {
    font-size: 52px;
  }

  .fsocmedbox {
    display: flex;
    margin-left: 0px;
  }

  .fsocmed {
    margin-left: 0;
    margin-right: 10px;
  }

  .fsocmed img {
    height: 18px;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 767px) {
  .fbox {
    max-width: 85vw;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 35px;
  }

  .fleft {
    max-width: 100%;
  }

  .ftitle {
    font-size: 16px;
    text-align: center;
  }

  .ftext {
    font-size: 10px;
    text-align: center;
  }

  .fcopy {
    padding: 30px 15px 5px 15px;
  }

  .fcopy span {
    font-size: 26px;
  }

  .fright {
    justify-content: center;
    margin: auto;
  }

  .fsocmedbox {
    display: flex;
    margin-left: 0px;
    width: 100%;
    justify-content: center;
    margin-top: 15px;
  }

  .fsocmed {
    margin-left: 0;
    gap: 20px;
    flex-direction: row;
  }

  #fsocmed1 {
    margin-right: 20px;
  }

  #fsocmed2 {
    margin-right: 0px;
  }

  .fsocmed img {
    height: 18px;
    margin-bottom: 5px;
  }
}
