@import url(https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap);
@import url("https://use.typekit.net/nrf8ylf.css");

@font-face {
  font-family: "Formula Condensed";
  font-style: normal;
  font-weight: 700;
  src: url(../font/FormulaCondensed-Bold.woff2) format("woff2"),
    url(../font/FormulaCondensed-Bold.woff) format("woff");
}

:root {
  --ease-in-out-expo: cubic-bezier(1, 0, 0.13, 1.3) !important;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* Loader Styling */
#preloader {
  position: fixed;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  background: #222 0 0;
}

#preloader[style*="-100vh"] {
  pointer-events: none;
}

#preloader img {
  width: 45%;
  height: auto;
}

.loader-hidden {
  transform: translateY(-100%);
  /* Slide up */
  transition: all 2s cubic-bezier(0.19, 1, 0.22, 1);
}

@media only screen and (max-width: 768px) {
  #preloader img {
    width: 100%;
    height: auto;
  }
}

/* Main content */
#content {
  display: none;
  transition: opacity 1s ease-in;
  /* Smooth fade-in for content */
}

/* Fade-in animation */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* NOISE*/

.main-wrapper {
  position: fixed;
  padding: 0;
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.13;
}

.noise-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 10;
}

.noise-wrapper::after {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(ellipse at center,
      rgba(0, 0, 0, 0) 0%,
      rgb(0 0 0 / 40%) 100%);
}

.noise {
  position: fixed;
  top: -500px;
  right: -500px;
  bottom: -500px;
  left: -500px;
  background: transparent url("../images/noise.png") 0 0;
  background-size: 320px 320px;
  opacity: 0.8;
  animation: noise 1s steps(8, end) infinite both;
}

@keyframes noise {
  0% {
    transform: translate(0px, 0px);
  }

  10% {
    transform: translate(-100px, 100px);
  }

  20% {
    transform: translate(150px, -100px);
  }

  30% {
    transform: translate(-100px, 100px);
  }

  40% {
    transform: translate(100px, -150px);
  }

  50% {
    transform: translate(-100px, 200px);
  }

  60% {
    transform: translate(-200px, -100px);
  }

  70% {
    transform: translateY(50px, 100px);
  }

  80% {
    transform: translate(100px, -150px);
  }

  90% {
    transform: translate(0px, 200px);
  }

  100% {
    transform: translate(-100px, 100px);
  }
}

header {
  top: 5%;
  align-items: center;
  color: #ffff;
  display: flex;
  height: var(--header-height);
  justify-content: space-around;
  left: calc(var(--padding) + var(--safe-area-inset-left));
  position: sticky;
  top: calc(2rem + var(--safe-area-inset-top));

  width: 90%;
  gap: 20%;
  z-index: 2;
  flex-direction: row;
  align-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(-300px);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1),
    opacity 3s cubic-bezier(0.19, 1, 0.22, 1),
    transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  /* Smooth transition for style changes */
}

header.sticky {
  top: 2.5rem;
  justify-content: space-around;
  width: 85%;
  gap: 20%;
  z-index: 2;
  flex-direction: row;
  align-content: center;
  flex-wrap: wrap;
  padding: 0 2%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background-color: #5b5b5b73;
  backdrop-filter: blur(25px);
  color: white;
  border-radius: 50rem;
  border: 1px solid #ffffff78;

  transition: 1s all cubic-bezier(0.19, 1, 0.55, 1.25),
    opacity 3s cubic-bezier(0.19, 1, 0.22, 1),
    transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

#about {
  scroll-margin-top: 15rem;
}

#livework {
  padding: 0rem 0;
}

#fadeDiv {
  opacity: 0;
  transform: translateY(-100px);
  transition: 1s all cubic-bezier(0.19, 1, 0.22, 1),
    opacity 3s cubic-bezier(0.19, 1, 0.22, 1) 0s,
    transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.hidden {
  opacity: 0 !important;
  transition: opacity 1s ease;
}

.visible {
  opacity: 1 !important;
}

/* Fade-up effect */
.fade-up {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Fade-up effect */
.main_navBar {
  transform: translateY(0);
}

header:after {
  left: -0.75rem;
}

.bar {
  height: 4px;
  background-color: #ddd;
  /* Default color */
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease-out;
}

header.sticky .bar {
  background-color: #000000;
}

/* Simulated content */
.content {
  padding: 0px 20px;
  height: auto;
}

#menu-icon {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -12px;
  margin-right: 30px;
  display: none;
}

@media only screen and (max-width: 959px) {
  #menu-icon {
    display: inline;
    top: 45px;
    cursor: pointer;
  }
}

#header:after {
  content: "";
  clear: both;
  display: block;
}

#container {
  padding-top: 5px !important;
  transition: opacity 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media only screen and (max-width: 1440px) {
  #container {
    padding-top: 0px !important;
  }
}

.menu {
  grid-row-gap: 4rem;
  display: grid;
  grid-template-areas:
    "location location"
    ". social"
    "menu menu"
    "copyright copyright";
  grid-template-columns: 1fr 4fr;
  grid-template-rows: 1fr auto 1fr 2rem;
  touch-action: none;
  position: fixed;
  top: -200%;
  right: 5%;
  width: 90%;
  height: 100dvh;
  background-color: rgb(255 255 255 / 35%);
  backdrop-filter: blur(15px);
  padding: var(--padding) calc(var(--padding) + var(--safe-area-inset-right)) var(--padding) calc(var(--padding) + var(--safe-area-inset-left));
  box-shadow: inset -20px -19rem 20rem 0 rgb(255 255 255 / 55%);
  color: var(--color-primary);
  z-index: 100;
  row-gap: 1rem;
  border: 1px solid #ffffff;
  border-bottom-left-radius: 3rem;
  border-bottom-right-radius: 3rem;
  transition: box-shadow 3s cubic-bezier(0.19, 1, 0.22, 1),
    top 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.menu:hover {
  box-shadow: inset -15px 20rem 20rem 0 rgb(255 255 255 / 55%);
  transition: box-shadow 3s cubic-bezier(0.19, 1, 0.22, 1),
    top 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.menu.open {
  top: -1%;
  /* Moves into view when open */
}

@media only screen and (max-width: 768px) {
  .menu {
    right: 0%;
    width: 100%;
  }
}

@media only screen and (min-width: 600px) {
  .menu {
    grid-template-areas:
      ". ."
      "menu menu"
      "social copyright";
    grid-template-rows: 2rem 1fr 2rem;
  }
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 999;
}

.close-btn svg {
  width: 34px;
  height: 34px;
  color: white;
}

/* Intro styles */

#intro-section {
  position: relative;
  z-index: 1;
  opacity: 1;
  visibility: visible;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50dvh;
  margin-top: 10dvh;
}
 
.row-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 15rem; 
  overflow: hidden;
}

 
.word-wrapper {
  display: inline-flex;
  align-items: baseline;
  font-size: 16rem;
  line-height: 1;
  margin-top: 25px;
}

.word-gap {
padding-right: 35px;
}

.character {
  display: inline-block;
  transform: translateY(-1.2em);
  opacity: 0;
color: white;
  transition:
    transform 1s cubic-bezier(1, 0.02, 0.5, 1.11),
    opacity 0.9s ease-out;
  will-change: transform, opacity, filter;

}
.banner-box {
  will-change: width;
}

.intro.play .character {
  transform: translateY(0);
  opacity: 1;
}

 
/* BANNER WRAPPER */

.banner-box {
  width: 0rem;
  height: 13rem;
  overflow: hidden;
  padding: 0 4rem;
  border-radius: 10px;
}

.banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px; 
}

@keyframes curtain {
  from { width: 0rem; }
  to   { width: 30rem; }
}


@media only screen and (max-width: 590px) {

  #intro-section {
 
   height:25dvh;
    margin-top: 15dvh;
}
.banner { 
    border-radius: 5px;
}
  .row-intro { 
    height: 5rem; 
}
.word-wrapper { 
  font-size: 5rem;
  line-height: 1;
  margin-top: 10px;
}
.banner-box {
    width: 0rem;
    height: 4rem; 
    padding: 0 1rem;
    border-radius: 10px;
}
@keyframes curtain {
  from { width: 0rem; }
  to   { width: 10rem; }
}
}

/* end Intro styles */

 
 
.hamburger-menu {
  left: 50%;
  position: fixed !important;
  top: 0;
  transform: translateX(-50%);
}

.card {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 1.5s ease-out,
    transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1.5s ease-out,
    transform 1.5s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 3s cubic-bezier(0.19, 1, 0.22, 1);
}

.contentslider {
  opacity: 0;
  transform: translate3d(-10%, 0, 0);
  will-change: transform, opacity;
}

.contentslider.slide-in-from-right {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: transform 1s cubic-bezier(0.39, 0.57, 0.54, 1.27),
    opacity 1s cubic-bezier(0.39, 0.57, 0.54, 1.27);
}

.index {
  opacity: 1;
  transform: translateY(0%); 
}

.dot {
  height: 2rem;
  width: 2rem;
  margin: 2px;
  background-color: #ffffff;
  border: 1px solid white;
  border-radius: 50%;
  display: inline-block;
}

.dot-outline {
  height: 2rem;
  width: 2rem;
  margin: 2px;
  background-color: #ffffff00;
  border: 1px solid white;
  border-radius: 50%;
  display: inline-block;
}

@media only screen and (max-width: 768px) {
  .dot {
    height: 1.5rem;
    width: 1.5rem;
  }

  .dot-outline {
    height: 1.5rem;
    width: 1.5rem;
  }
}

.card .image[data-v-cardsinfoabout] {
  border-radius: var(--radius);
  grid-area: image;
  overflow: hidden;
  padding-top: 60%;
  position: relative;
  width: 100%;
  will-change: transform;
  display: block;
  height: 50%;
  transition-duration: 0.5s;
  opacity: 1;
  object-fit: cover;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.card img[data-v-cardsinfoabout] {
  border-radius: var(--radius);
  height: 100%;
  left: -2.5%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: -2.5%;
  transition: 0.5s transform var(--ease-out-cubic);
  width: 105%;
}

.card .image[data-v-cardsinfoabout]:after {
  box-shadow: inset 0 0 3rem 0 rgba(0, 0, 0, 0.5);
  content: "";
  height: 94%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: 0.5s opacity var(--ease-out-cubic);
  width: 100%;
}

#myBtn-gotop {
  display: none;
  position: fixed;
  bottom: 2dvh;
  right: 20px;
  z-index: 99;
  font-size: 18px;
  /* border: none; */
  outline: none;
  backdrop-filter: blur(20px);
  border: 1px solid white;
  border-radius: 50px;
  color: white;
  cursor: pointer;
  padding: 10px 15px 5px 15px;
}

#myBtn-gotop:hover {
  background-color: #ffffff41;
  transition: transform 0.5s ease;
}

#myBtn-gotop:hover .arrow-top {
  transform: rotate(25deg);
  transition: transform 0.5s ease;
}

.arrow-top {
  display: block;
  margin: 10px 0px 5px 0px;
  width: 20px;
  height: 20px;
  border-top: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  transform: rotate(45deg);
  transition: transform 0.5s ease;
}

.typewriter-container {
  position: fixed;
  display: flex;
  margin: auto;
  width: auto;
  min-width: 10%;
  background-color: #dddddd3b;
  border-radius: 30px;
  border: 1px solid rgb(255, 255, 255);
  padding: 0px 10px;
  left: 50%;
  transform: translate(-50%, 0);
  visibility: hidden;
  bottom: 0;

  z-index: 9999;
  animation: fadeIntypewriter 1s ease 2s forwards;
  justify-content: center;
  align-items: center;
}

.typewriter-container h1 {
  font-size: 20px;
  line-height: 42px;
  padding: 0px;
  color: white;
  font-family: "Formula Condensed", Helvetica, Arial, sans-serif;
}

/* Fade-in animation */
@keyframes fadeIntypewriter {
  0% {
    opacity: 0;
    visibility: hidden;
  }

  100% {
    opacity: 1;
    visibility: visible;
  }
}

.scroll-animation {
  display: flex;
  position: relative;
  height: 50px;
  width: 100%;
  justify-content: center;
  position: fixed;

  bottom: 10dvh;
}

.chevron {
  position: absolute;
  width: 30px;
  height: 5px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 1s ease-out 1s infinite;
}

.chevron:first-child {
  animation: move 1s ease-out 1s infinite;
}

.chevron:nth-child(2) {
  animation: move 1s ease-out 1s infinite;
}

.chevron:before,
.chevron:after {
  content: " ";
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #fff;
}

.chevron:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.chevron:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}

@keyframes move {
  25% {
    opacity: 1;
  }

  33% {
    opacity: 1;
    transform: translateY(30px);
  }

  67% {
    opacity: 1;
    transform: translateY(40px);
  }

  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

.text {
  display: block;
  margin-top: 75px;
  margin-left: -30px;
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.25;
  animation: pulse 2s linear alternate infinite;
}

@keyframes pulse {
  to {
    opacity: 1;
  }
}

body {
  transition: opacity 0.3s ease-in-out;
}

.fade-out {
  opacity: 0;
}

#container {
  transition: opacity 0.3s ease-in-out; 
  opacity: 1;
}

.hidden {
  opacity: 0;
  pointer-events: none; 
}

.featured {
  align-self: center;
}

.featured .slider {
  list-style: none;
  padding: 0;
}

.slider li {
  height: 400px;
  width: 300px;
  border-radius: 4px;
  background-color: #00bcd4;
  display: flex;
}

.slider li.item {
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  opacity: var(--text-opacity, 1);
  will-change: opacity;
}

.slider li p {
  font-family: "Formula Condensed", Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
  margin: 0;
  padding: 0;
  line-height: 1.2;
  font-weight: 400;

  bottom: 10px;
  position: absolute;
  margin-top: auto;
  background: #3b383875;
  width: 100%;
  padding: 20px 20px;
  display: block;
  bottom: 0;
  z-index: 99;
}

.slider li svg {
  cursor: pointer;
  position: absolute;
  margin-top: auto;
  right: 10px;
  bottom: 10px;
  width: auto;
  padding: 3px;
  display: block;
  z-index: 100;
}

.slider li:nth-child(n) {
  background-color: #3599db00;
}

.slider li:nth-child(2n) {
  background-color: #e61b7600;
}

.slider li:nth-child(3n) {
  background-color: #00bbd400;
}

.slider li:nth-child(4n) {
  background-color: #f4b35100;
}

.slider li:nth-child(5n) {
  background-color: #8d449700;
}

/* STACKED CARDS */
.stacked-cards {
  position: relative;
  width: 100%;
  padding: 5%;
  overflow: hidden;
}

.stacked-cards P {
  font-family: "Formula Condensed", Helvetica, Arial, sans-serif;
  font-size: 2.6rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1;
  padding: 0 2rem;
  padding-bottom: 5%;
  text-align: center;
  text-transform: uppercase;
  color: #ffff;
}

.stacked-cards ul {
  position: relative;
  max-width: 60%;
  margin: 0 auto;
  padding-left: 0;
}

.stacked-cards li {
  margin-top: 5px;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 3px 6px 0px #333;
  list-style: none;
  width: 65%;
  position: absolute;
  left: 50%;
  transition: 0.5s ease transform;
}

.stacked-cards li:after {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.stacked-cards li img {
  position: relative;
  display: block;
  height: 100%;
  width: auto;
  z-index: 4;
}

.stacked-cards li.active {
  cursor: default;
  box-shadow: 0 5px 10px 0px #333;
  transition: 0.5s ease transform;
}

@media only screen and (max-width: 768px) {
  .stacked-cards ul {
    height: 250px !important;
  }
.word-gap {
padding-right: 10px;
}
  .slider li {
    height: 200px;
    width: 200px;
    border-radius: 4px;
    background-color: #00bcd4;
    display: flex;
  }

  .stacked-cards li img {
    left: -5%;
  }
}

.inspiration {
  display: flex;
  position: relative;
  width: 100%;
  padding: 1%;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  color: rgb(66, 66, 66);
  font-size: 14px;
}