/* ======================================================
                         RESET
====================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }

html, body {
  overflow: hidden;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #000000;
  color: #111;
  min-height: 100dvh;
  overflow-y: auto;
}

.element::-webkit-scrollbar {
  display: none;
}

.element {
  -ms-overflow-style: none;
  scrollbar-width: none
}

img {
    max-width: 100%;
    display: block;
    }

/* ======================================================
                    STICKY HEADER
====================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;

    background: #156aa5;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 60px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    z-index: 9999999999;
    }

.header-spacer {
  width:30%;
}

.fuck {
  display: flex;
  justfy-content: center;
  align-items: center;
  width: 30%;
border: 2px solid red;
}


.nav {
    display: flex;
    gap: 28px;
    justify-content: end;
    align-items: center;
  width: 30%;
}

.nav a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: 0.25s;
    }

.nav a:hover {
    transform: translateY(-2px);
    opacity: 0.8;
    }

.join-btn {
    background: linear-gradient(45deg,#ff2fa6,#9b4dff);
    padding: 8px 18px;
    border-radius: 20px;
    transition: 0.25s;
    }

.join-btn:hover {
    transform: scale(1.08);
    }

.menu {
    display: none;
    font-size: 26px;
    }

/* ======================================================

                         MORE

====================================================== */

.more {
  display:flex;
  justify-content:center;
  margin-top:10px;
  width:100%;
  height: 90vh;
  overflow: hidden;
}

#click-trigger {
  display: none;
}

/* ================================ */
/*            BRIEFCASE             */
/* ================================ */

.briefcase {
  display: flex;
  align-items: end;
  position: absolute;
  max-width: 90%;
  height: 80%;
  animation: crash .5s linear 0s;
  z-index:0;
  }

.shake-it {
  width: fit-content;
  height: fit-content;
}

.shake-it:hover {
  animation: shake .5s;
}

/* ================================ */
/*       BOX ONE  (BRIEFCASE)       */
/* ================================ */

.box-one-1 {
  z-index: 100;
  transition: transform 0.4s ease-out;
  opacity:1;
}

.box-one-2 {
  z-index: -100;
  transition: transform 0.4s ease-out;
  opacity:0;
  top:0;
  left:0;
  position: absolute;
}

/* ================================ */
/*        BOX ONE - TRIGGERS        */
/* ================================ */

#click-trigger:checked ~ .more .briefcase .box-one-1 {
  z-index: -100;
  transform: translateY(250px) scale(0.3); 
  opacity: 0;
}

#click-trigger:checked ~ .more .briefcase .box-one-2 {
  z-index: 100;
  transform: translateY(200px) scale(0.3); 
  opacity: 1;
  position: absolute;
}

/* ================================ */
/*           ALL CHERRIES           */
/* ================================ */

.all-cherries {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  animation: hide .5s linear 0s;
  transform: scale(.1) rotate(180deg) translateY(300px);
  transition: transform 0.5s ease;
  width: 50%;
  min-width: 600px;
  padding: 0;
margin: 80px 0 30px;
  z-index:-10;
}

.column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height:100%;
margin: 60px 0;
padding: 0;
}

.column-1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height:100%;
padding: 0;
}

#click-trigger:checked ~ .more .all-cherries {
  transform: scale(1) rotate(0deg) translateY(0);
  z-index: 100;
}

.box-three { 
  transform: rotate(0deg) scale(1.5);
  transition: transform 0.5s ease-out .075s;
}

#click-trigger:checked ~ .more .all-cherries .column .box-three {
  transform: rotate(360deg) scale(1);
}

#click-trigger:checked ~ .more .all-cherries .column-1 .box-three {
  transform: rotate(360deg) scale(1);
}

/* ================================ */
/*           EACH CHERRY            */
/* ================================ */

.ch-container {
  width: fit-content;
  position: relative;
}

.cherry {
  width: fit-content;
  position: relative;
}

.cherry-white {
  width: fit-content;
  position: relative;
}

.cherry h2, .cherry-white h2 {
  font-size: 36px;
  color: #ffffff;
}

.ch-text p {
 font-size: 24px;
 width: 100%;
}

.ch-text-down p {
 font-size: 24px;
 width: 100%;
}

.ch-text-right p {
 font-size: 24px;
 width: 100%;
}

.ch-text-down em {
 font-size: 22px;
 font-style: normal;
 font-weight: 900; 
 color: #156aa5;
 width: 100%;
}

.ch-text-right em {
 font-size: 22px;
 font-style: normal;
 font-weight: 900; 
 color: #156aa5;
 width: 100%;
}

.ch-bottom {
  position: absolute; 
  top: 0;
  left: 0;
  opacity:.6;
}

.label {
  position: absolute; 
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* ================================ */
/*           CHERRY TEXT            */
/* ================================ */

.ch-text, .ch-text-down, .ch-text-right {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-100%, -50%);
  width: 100%;
  display: flex;
  flex-direction:column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  z-index:-999;
  opacity:0;
  transition: opacity .1s ease-in,  transform 0.5s ease-out;
}

.ch-text-down {
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0);
}

.ch-text-right {
  top: 50%;
  right: 0;
  transform: translate(100%, -50%);
}

/* ================================ */
/*          CHERRY HOVER            */
/* ================================ */

.cherry:hover {
  transition: transform .5s ease-out;
  transform: translateY(-10px);
}

.cherry-white:hover {
  transition: transform .5s ease-out;
  transform: translateY(-10px);
}

.cherry-white:hover h2 {
  color: #000000;
}

.ch-bottom:hover {
  opacity:1;
}

.cherry:hover ~ .ch-bottom {
  opacity:1;
}

.cherry:hover ~ .ch-bottom {
  opacity:1;
}

.cherry:hover ~ .ch-text {
  opacity:1;
  transform: translate(-120%, -50%);
}

.cherry:hover ~ .ch-text-down {
  opacity:1;
  transform: translate(-50%, 30%);
}

.cherry:hover ~ .ch-text-right {
  opacity:1;
  transform: translate(120%, -50%);
}

.cherry-white:hover ~ .ch-text-right {
  opacity:1;
  transform: translate(120%, -50%);
}

/* ================================ */

/*            ANIMATIONS            */

/* ================================ */

@keyframes hide {
   0% {
      opacity:0}
  75% {
      opacity:0}
 100% {
      opacity:1}
}

@keyframes crash {
   0% {
      transform: translateY(-5000px) rotate(-15deg);}
  75% {
      transform: translateY(0) rotate(-15deg) scale(1.1);}
  85% {
      transform: translateY(-50px) rotate(10deg);}
  90% {
      transform: translateY(-100px) rotate(-5deg);}
 100% {
      transform: translateY(0) rotate(0deg);}
}

@keyframes shake {
   0% {
      transform: rotate(0deg);
      }
  33% {
      transform: rotate(-20deg) scale(1);
      animation-timing-function: ease-in;
      }
  66% {
      transform: rotate(30deg) scale(1);
      animation-timing-function: ease-out;
      }
 100% {
      transform: rotate(0deg) scale(1);
      animation-timing-function: ease-out;
      }
}

@keyframes descend {
   0% {
      transform: translateY(-100px);}
 100% {
      transform: translateY(0);}
}

/* ======================================================

                       RESPONSIVE 

====================================================== */

@media (max-width: 1175px) {

.header-spacer {
  display: none;
}

.menu-logo {
  padding: 0;
  margin: 0;
  align-items: start;
}

.menu-logo img {
  transform: translateX(-25px);
}

.nav {
  width: 70%;
}

}

/* ======================================================

                         MOBILE 

====================================================== */

@media (max-width: 600px) {

/* ==============================================
                     MENU                             [MOBILE]
============================================== */

button {
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

/*
.header-spacer {
  display: none;
}
*/

.menu-logo {
  display: none;
  }

.nav {
  display: none;
}

.header {
  width: 100vw;
  padding: 5px;
  }

.small-logo {
  width: 100px;
  }


.hidden-menu {
  color: #156aa5;
  }

.menu {
  display:flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  }

/* ==============================================
                     MORE                             [MOBILE]
============================================== */

html, body {
  overflow: auto;
  height: auto;
}


.more {
  overflow: auto;
  justify-content: start;
  height: auto;
  margin-top: 40px;
}

#click-trigger {
  display: none;
}

/* ==============================================
                   BRIEFCASE                             [MOBILE]
============================================== */

.briefcase {
  width: 90%;
  display: none;
}

.box-one-1 {
  transition: transform 1.4s ease-out;
}

#click-trigger:checked ~ .more .briefcase .box-one-1 {
  z-index: -100;
  transform: translateY(-600px) scale(1) rotate(180deg); 
  opacity: 0;
}

#click-trigger:checked ~ .more .briefcase .box-one-2 {
  z-index: -100;
  transform: rotate(180deg) translateY(-600px) scale(1); 
  opacity: 0;
}

/* ==============================================
                 ALL CHERRIES                             [MOBILE]
============================================== */

.all-cherries {
  flex-direction: column;
  justify-content: normal;
  gap:0px;
  transform: scale(1) rotate(0) translateY(0);
  animation: crash 2s ease-out 0s;
  width: fit-content;
  padding:0;
  margin:0;
  min-width:0;
}

.column {
  flex-direction: column;
  padding: 0;
  margin: 0 !important;
  width: 100%;
}

.column-1 {
  flex-direction: column-reverse;
  margin: 0;
}

.ch-container {
  padding: 15px 5px;
}

.box-three { 
  transform: rotate(0deg) scale(.8);
  margin: -10px;
  animation: shake 1.5s ease-in-out .6s;
}

#click-trigger:checked ~ .more .all-cherries .column .box-three {
  transform: rotate(0) scale(.8);
}

#click-trigger:checked ~ .more .all-cherries .column-1 .box-three {
  transform: rotate(0) scale(.8);
}

/* ==============================================
                 CHERRY TEXT                             [MOBILE]
============================================== */

.ch-text, .ch-text-down, .ch-text-right {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% + 200px), -50%);
  opacity:1;
  animation: hide 2.6s linear forwards;
/*
  animation: reveal-image linear forwards;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
*/
}

.cherry:hover ~ .ch-text {
  transform: translate(calc(-50% + 200px), -50%);
}

.cherry:hover ~ .ch-text-down {
  transform: translate(calc(-50% + 200px), -50%);
}

.cherry:hover ~ .ch-text-right {
  transform: translate(calc(-50% + 200px), -50%);
}

.cherry-white:hover ~ .ch-text-right {
  transform: translate(calc(-50% + 200px), -50%);
}

@keyframes crash {
   0% {
      transform: translate(50%, -2000px) rotate(0) scale(1.4);}
  40% {
      transform: translate(50%, 500px) rotate(0) scale(1.4);}
  45% {
      transform: translate(50%, 460px) rotate(0) scale(1.4);}
 100% {
      transform: translate(0, 0) rotate(0) scale(1);}
}

@keyframes shake {
   0% {
      transform: rotate(360deg) scale(.8);
      }
 100% {
      transform: rotate(0deg) scale(.8);
      }
}

