/* Variables
-------------------------*/
/* Colors */
/* CSS Properties */
/* Fonts */
@import url("https://use.typekit.net/jmo4lax.css");
@import url("https://fonts.googleapis.com/css2?family=Rouge+Script&display=swap");
h1, h2, h3, h4 {
  font-family: "owners-wide", sans-serif;
  color: #f7eedf;
  line-height: 1.15;
}

p, ul li, a, .fancy-button {
  font-family: "owners-wide", sans-serif;
  color: #f7eedf;
}

h1 {
  font-size: clamp(28px, 5.5vw, 70px);
  margin-bottom: clamp(40px, 4vw, 60px);
  font-weight: 400;
}

h2 {
  font-size: clamp(28px, 4.5vw, 70px);
  margin-bottom: clamp(40px, 4vw, 60px);
  font-weight: 400;
}

h3 {
  font-size: clamp(24px, 4vw, 55px);
  font-weight: 400;
}

h4 {
  font-size: clamp(17px, 3.5vw, 30px);
}

p {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.75;
  -webkit-hyphens: manual;
          hyphens: manual;
}

ul li {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.75;
}

/* Elements
-------------------------*/
body {
  background-color: #2e473c;
  overscroll-behavior: contain;
}
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-track {
  background: #1f332a;
}
body::-webkit-scrollbar-thumb {
  background: var(--theme-color);
}
body::-webkit-scrollbar-thumb:hover {
  background: var(--theme-color);
}

/* Header
-----------------*/
@keyframes full-rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
nav {
  position: fixed;
  z-index: 99;
  height: 100vh;
  height: 100svh;
  width: 100%;
  padding: clamp(15px, 4vw, 50px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto 1fr auto;
  opacity: 0;
  filter: blur(10px);
  transition: 1s cubic-bezier(0.25, 0.1, 0.25, 1) all;
  transform: scale(1.05);
}
nav.revealed {
  transform: scale(1);
  opacity: 1;
  filter: blur(0px);
}
nav a {
  color: #d5f085;
  font-size: clamp(15px, 2vw, 18px);
  transition: 0.2s ease all;
  letter-spacing: 0.05em;
}
nav a:hover {
  color: #f7eedf;
}
nav .linkedin {
  grid-row: 1;
  grid-column: 1;
}
nav .instagram {
  grid-row: 1;
  grid-column: 3;
  text-align: right;
}
nav .mail {
  grid-row: 3;
  grid-column: 1;
}
nav .coming-soon {
  position: relative;
  grid-row: 3;
  grid-column: 3;
  text-align: right;
  color: #d5f085;
  font-family: "owners-wide", sans-serif;
  display: inline-block;
  font-size: clamp(15px, 2vw, 18px);
  display: grid;
  grid-gap: 8px;
  grid-template-columns: auto auto;
}
nav .coming-soon span.asterix-container {
  display: flex;
  align-items: flex-end;
  width: auto;
}
nav .coming-soon span.asterix {
  vertical-align: middle;
  align-items: center;
  font-size: clamp(17px, 3.5vw, 30px);
  animation: full-rotation 3s infinite linear;
  transform-origin: 50% 30%;
}

/* Content
-----------------*/
section {
  background-color: #2e473c;
}
section.home {
  position: relative;
  height: 100vh;
  height: 100svh;
  display: grid;
  align-items: center;
  justify-content: center;
}
section.home .container {
  position: relative;
  height: 100vh;
  height: 100svh;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
section.home .text-container {
  z-index: 9;
  grid-row: 1;
  grid-column: 1;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}
section.home .text-container.revealed h1 {
  transform: translateY(0px) scale(1);
  opacity: 1;
  filter: blur(0px);
}
section.home .text-container h1 {
  font-family: "owners-wide", sans-serif;
  font-size: calc(clamp(28px, 5.5vw, 70px) * 2);
  color: #d5f085;
  will-change: transform;
  transform: scale(1.1) translateY(clamp(15px, 4vw, 50px));
  opacity: 0;
  filter: blur(10px);
  transition: 2s cubic-bezier(0.25, 0.1, 0.25, 1) all;
}
section.home .image-container {
  position: relative;
  grid-row: 1;
  grid-column: 1;
  height: 100vh;
  object-fit: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.home .image-container img {
  clip-path: inset(50% 0px 50% 0px);
  transform: translateY(calc(0px - clamp(15px, 4vw, 50px)));
  max-height: 90%;
  transition: 1.5s cubic-bezier(0.385, 0, 0, 0.995) all;
  filter: blur(10px);
}
section.home .image-container.revealed img {
  transform: translateY(0px);
  clip-path: inset(0px 0px 0px 0px);
  filter: blur(0px);
}

/* Footer
-----------------*/
/* Media Queries
-------------------------*/
@media screen and (min-width: 1026px) {
  .phablet {
    display: none !important;
  }
}
@media screen and (min-width: 642px) {
  .mobile-only {
    display: none !important;
  }
}
@media screen and (max-width: 1025px) {
  .desktop-only {
    display: none !important;
  }
}
@media screen and (max-width: 641px) {
  .tablet-up {
    display: none !important;
  }
}