@font-face {
  font-family: Ginto Nord;
  src: url("./Fonts/DINAMOProjectFOULPLAY/GintoNord/ABCGintoNord-Black.woff2")
      format("woff2"),
    url("./Fonts/DINAMOProjectFOULPLAY/GintoNord/ABCGintoNord-Black.woff")
      format("woff"),
    url("./Fonts/DINAMOProjectFOULPLAY/GintoNord/ABCGintoNord-Black.otf")
      format("otf");
}

@import url("https://p.typekit.net/p.css?s=1&k=nnq5oza&ht=tk&f=37320.37321.37322&a=3985967&app=typekit&e=css");

@font-face {
  font-family: "rigid-square";
  src: url("https://use.typekit.net/af/df3faa/00000000000000007735c424/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3")
      format("woff2"),
    url("https://use.typekit.net/af/df3faa/00000000000000007735c424/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3")
      format("woff"),
    url("https://use.typekit.net/af/df3faa/00000000000000007735c424/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3")
      format("opentype");
  font-display: auto;
  font-style: italic;
  font-weight: 400;
  font-stretch: normal;
}

@font-face {
  font-family: "rigid-square";
  src: url("https://use.typekit.net/af/435145/00000000000000007735c428/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3")
      format("woff2"),
    url("https://use.typekit.net/af/435145/00000000000000007735c428/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3")
      format("woff"),
    url("https://use.typekit.net/af/435145/00000000000000007735c428/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3")
      format("opentype");
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
}

@font-face {
  font-family: "rigid-square";
  src: url("https://use.typekit.net/af/6727e5/00000000000000007735c42c/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n6&v=3")
      format("woff2"),
    url("https://use.typekit.net/af/6727e5/00000000000000007735c42c/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n6&v=3")
      format("woff"),
    url("https://use.typekit.net/af/6727e5/00000000000000007735c42c/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n6&v=3")
      format("opentype");
  font-display: auto;
  font-style: normal;
  font-weight: 600;
  font-stretch: normal;
}

/* My Styles -------------------------------------------------------------------------------------------------------- */

body {
  margin: 0px;
  font-family: ginto nord;
  overflow: hidden;
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bottom-left {
  0% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 15%;
    height: 15%;
    /* padding-top: 10dvh; */
  }
}
@keyframes back-to-center {
  0% {
    width: 15%;
    height: 15%;
    /* padding-top: 10dvh; */
  }
  100% {
    width: 100%;
    height: 100%;
    
  }
}
@keyframes slide-up {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}

/* CSS for non mobilen under construction ------------------------------------------------------------------------------ */


.flex {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content:space-between;
  align-items: center;
  top:0;
  bottom: 0;
  padding: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #F8F3E8;
  width: 100dvw;
  z-index: 1000;
}

.hitbox {
  width: 20vw;
  height: 40vh;
  position: absolute;
  z-index: 2;
}

.foulplay {
  position: relative;
  width:50vw;
}

#center {
  background-color: black;
  position: relative;
  display: flex;
  justify-content:center;
  align-items: center;
  height: 100vh;
  transform: translateY(3%);
  
}
#visible {
  opacity:1;
}
#invisible {
  opacity: 0;
}
.under {
  position: relative;
  font-size: 40px;
  margin: 0;
}
.anim, #anim {
  position: absolute;
  width: 40vw;
  height: 100vw;
  width: 100vw;
  aspect-ratio: 1 / 1;
  transform: translateX(10px);    
}

@media (orientation: landscape) {
  .anim, #anim {
      height: 100vh;
      width: 100vh;
  }
  .desktop {
      display: flex;
  }
}

@media screen and (max-width: 600px) {
  .desktop {
      display: none;}
  canvas {
    height: 90dvh !important;
  }
  .threeD {
    /* height: 100%; */
    /* overflow: hidden; */
    /* background-color: orange; */
    position: relative;
  }
  .threeD-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .buttons {
    position: relative;
    width: 50vw;
    height: 50vh;
  }
  .buttons > * {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .buttons > h3 {
    opacity: 0;
  }
  /* Intro Video ------------------------------------------------------------------------------------------------------- */
  .intro-video {
    position: absolute;
    width: 100%;
    overflow: hidden;
    top: 0;
    z-index: 10001;
    background: white;
  }

  .overlay {
    display: flex;
    height: 100dvh;
    flex-direction: column;
    position: relative;
    top: 0;
    justify-content: space-between;
    align-items: center;
    z-index: 100001;
  }
  .overlay > #logo {
    margin-top: 15px;
    width: 92% !important;
    filter: invert(1);
  }

  #enter {
    font-family: "rigid-square", sans-serif;
    font-size: 1.7em;
    font-style: normal;
    color: white;
    font-weight: 100;
  }
  .video {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0px;
    z-index: 100;
  }
  .switchwrapper {
    align-self: flex-end;
  }
  .wrapped {
    top: unset !important;
    bottom: 22px;
  }
  .wrapped > .slider:before {
    background-color: white !important;
  }

  .wrapped > .slider {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 1) !important;
  }

  /* switch ------------------------------------------------------------------------------------------------- */
  .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    right: 13px;
    top: 15px;
  }

  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-color: #ccc; */
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: black;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }

  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }

  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 1);
  }

  .slider.round:before {
    border-radius: 50%;
  }

  /* Swiper -------------------------------------------------------------------------------------------------------- */
  html,
  body {
    position: relative;
    height: 100dvh;
  }

  .snap {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100%;
  }

  .gallery {
    scroll-snap-align: start;
  }
  .text-menu {
    scroll-snap-align: start;
  }

  .swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* CSS for Logo & Header */
  header {
    position: fixed;
    display: flex;
    justify-content: space-between;
    top: 0px;
    z-index: 10;
    height: 10dvh;
    width: 100%;
    align-items: center;
  }

  #logo {
    width: 45%;
    padding-left: 10px;
    z-index: 100;
  }

  #burger {
    position: relative;
    height: 20px;
    aspect-ratio: 1/1;
    right: 15px;
  }

  .burgerMenu {
    position: absolute;
    top: 0px;
    width: 100dvw;
    height: 100dvh;
    background: white;

    transform: translateY(-100%);
  }
  .burgerMenuWrapper {
    top: inherit;
    position: inherit;
    width: inherit;
    height: inherit;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .burgerMenuWrapper > h1 {
    padding: 30px 0px;
  }
  .burgerMenuWrapper > h1 > a {
    text-decoration: none;
    color: black;
  }
  #burgerExit {
    position: absolute;
    height: 30px;
    aspect-ratio: 1 / 1;
    top: 20px;
    right: 15px;
    z-index: 100;
  }

  #aboutContent {
    position: absolute;
    top: 10dvh;
    height: 90dvh;
    overflow: scroll;
    opacity: 0;
    z-index: 0;
  }
  #aboutContent > h1 {
    padding-bottom: 20px;
  }
  #aboutContent > * > a {
    color: black;
  }

  #video {
    width: 95vw;
  }

  #newsletter {
    display: flex;
    height: 32px;
  }

  #newsletter > img {
    margin: 4px;
  }
  /* Infinite Scrolling Text */
  .menuheader {
    position: absolute;
    top: 0px;
    z-index: 100;
    background-color: white;
    transform: translateY(-100%);
  }
  .container {
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .scroll > div {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .scroll > div > img {
    width: unset !important;
    height: 50% !important;
  }

  /* Text */
  h1,
  h2,
  h3,
  h4 {
    margin: 0px;
    padding-left: 10px;
  }
  h2,
  h3,
  h4 {
    font-family: "rigid-square", sans-serif;
    font-weight: 600;
  }
  h1 {
    font-size: 2.1rem;
    line-height: 1.9rem;
    padding-right: 10px;
  }

  h2 {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.4rem;
  }
  .text-menu {
    height: 20dvh;
    padding-top: 10dvh;
  }
  .text-fields {
    display: flex;
    flex-direction: column;
    justify-content: start;
    margin-bottom: 30px;
    vertical-align: baseline;
  }
  .text-fields > :nth-child(1) {
    font-style: normal;
  }
  .text-fields > :nth-child(2) {
    /* margin-bottom: 30px; */
  }
  .text-fields > :nth-child(3) {
    margin-bottom: 20px;
    margin-top: auto;
  }

  .image-menu {
    height: 70dvh;
  }

  .main-image {
    background-size: cover;
    background-position: center;
  }

  .swiper-button-prev,
  .swiper-button-next {
    --swiper-navigation-color: white;
    --swiper-navigation-top-offset: 0px;
    padding: 30px 15px;
    --swiper-navigation-size: 25px;
    --swiper-navigation-sides-offset: 0px;
  }

  .swiper-pagination {
    --swiper-pagination-top: 20px;
    height: 5%;
  }

  .swiper-pagination-bullet {
    opacity: 30%;
  }

  .swiper-pagination-bullet-active {
    opacity: 100%;
  }

  .swiper-pagination-bullet,
  .swiper-pagination-bullet-active {
    --swiper-pagination-color: #fff;
    width: 14px;
    height: 14px;
  }

  #view-product {
    position: relative;
    transform: translateY(-100%);
    color: white;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "rigid-square", sans-serif;
    letter-spacing: 0.12rem;
  }

  #line {
    width: 1px;
    height: 10px;
    background-color: white;
    margin-top: 10px;
  }

  .menu {
    height: 100dvh;
  }

  /* Coode from initial Example ------------------------------------------------------------------------------------ */
  /* Hide scrollbar for Chrome, Safari and Opera */
  .gallery::-webkit-scrollbar,
  .product::-webkit-scrollbar {
    display: none;
  }

  /* Hide scrollbar for IE, Edge and Firefox */
  .gallery,
  .product {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
  body {
    margin: 0px;
  }
  .gallery {
    padding: 0rem;
    margin: 0rem;
    display: grid;
    grid-template-columns: repeat(6, 100vw);
    flex-wrap: wrap;

    height: 100dvh;
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
    overflow: scroll;
  }

  .product {
    overflow: scroll;
    -ms-scroll-snap-type: y proximity;
    scroll-snap-type: y proximity;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .product > * {
    /* Code to snap to every section */
    scroll-snap-align: start;
    scroll-snap-stop: always;
    /* overflow: scroll; */
    scroll-margin-top: 10dvh;
  }

  .description-tile {
    padding-top: 10dvh;
    margin-bottom: 10dvh;
    min-height: 100%;
  }

  .title > h1 {
    font-size: 2rem;
  }
  .artist {
    /* margin-top: 30px; */
    font-size: 0.8rem;
  }

  .product-details {
    margin-top: 55px;
    font-size: 0.9rem;
  }

  .details {
    margin-top: 20px;
    line-height: 1.25rem;
    font-weight: 200;
  }

  .details > h4 > span {
    font-style: italic;
  }

  .description {
    margin-top: 46px;
  }

  p {
    padding: 10px;
    font-family: "rigid-square", sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.53rem;
  }

  .image-carousel {
    height: 100%;
    scroll-snap-type: y mandatory;
    overflow: scroll;
  }
  .image-carousel > * {
    width: 100%;
    scroll-snap-align: center;
  }

  .artist > img {
    width: 100vw;
    height: 65dvh;
    object-fit: cover;
  }
  .artist > h3 {
    font-size: 3rem;
    margin-top: 24px;
    font-weight: 400;
  }
  .artist > p {
    padding-top: 10px;
  }
  .links {
    margin-top: 30px;
    margin-bottom: 10px;
  }
  .links > h3 > a {
    text-decoration: none;
    color: black;
  }
  #scroll-to-top-arrow {
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    background-color: white;
  }
  /* code for infinite slide banner -------------------------------------------------------------------------------------------------*/
  .slider-infinite ul{
    padding: 0;
    list-style: none;
    display: flex;
    width: max-content;
    animation: runSlider 2s linear infinite;
    height: 100%;
    margin-block: 0px;
    background-color: white;
  }
  .slider-infinite > a {
    text-decoration: none;
    color: black;
  }

  .slider-infinite img{
    object-fit: contain;
    
    margin-right: 10px;
    height: 100%;
  }

  .slider-infinite li {
    
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35vw;
    padding: 10px 0px;
    margin-right: 2vw;
  }
  .slider-infinite {
    overflow: hidden;
    height:100%;
  }

  .slider-infinite {
    position: relative;
    /* z-index: -1; */
  }
  .scrollSection {
    padding: 0px 20px 0px 10px;
    font-size: 1.4rem;
  }

  @keyframes runSlider {
    from {
      transform: translateX(0);
    } to {
      transform: translate(calc(-37vw* 2));
    }
  }
}
