@font-face {
  font-family: "Veneer";
  src: url("./fonts/Veneer.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Futura";
  src: url("./fonts/Futura.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: auto;
  width: 100vw;
  overflow-x: hidden;
}

body {
  color: #ffffff;
  background-color: #7e56ac;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  min-height: 100vh;
  -webkit-overflow-scrolling: touch;
}

main {
  height: 100vh;
  width: 100vw;
}

#call-to-action,
#hero-png-mobile {
  display: none;
}

#main-section {
  display: flex;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.outer {
  width: 100vw;
  height: 100vh;
  padding: 2%;
  display: grid;
  overflow: visible;
  position: relative;
}

.inner {
  width: 100%;
  height: 100%;
  background: #5c0f8b;
  position: relative;
}

.hero {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  overflow: visible;
}

#hero-png {
  position: relative;
  display: block;
  width: 160vmin;
  height: auto;
  margin-top: -20vmin;
  margin-left: -39vmin;
  transform: rotate(0.5deg);
  object-fit: contain;
  will-change: transform;
}

#cheese {
  position: absolute;
  width: 6vmin;
  left: 5vmin;
  top: 53vmin;
  transform: rotate(-205deg);
  pointer-events: none;
  will-change: transform;
}

#cheese-2 {
  position: absolute;
  width: 9vmin;
  right: 5vmin;
  top: 72vmin;
  transform: rotate(-120deg);
  pointer-events: none;
  will-change: transform;
}

#nacho {
  position: absolute;
  width: 28vmin;
  right: -7vmin;
  top: 3vmin;
  transform: rotate(5deg) scaleX(-1);
  pointer-events: none;
  will-change: transform;
}

#qrcode {
  position: absolute;
  width: 23vmin;
  left: 4vmin;
  bottom: 2.25vmin;
  pointer-events: none;
}

#takis {
  position: absolute;
  width: 62vmin;
  right: 2vmin;
  top: 20vmin;
  pointer-events: none;
  transform: rotate(-8deg);
  will-change: transform;
}

#call-to-action {
  display: none;
  font-family: "Veneer", sans-serif;
  color: #ffffff;
  font-size: 3rem;
  text-align: start;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.steps {
  position: absolute;
  font-family: "Veneer", sans-serif;
  font-size: 3vmin;
  left: 28.5vmin;
  bottom: 2.5vmin;
  max-width: 48vmin;
  display: flex;
  flex-direction: column;
  gap: 1.75vmin;
}

.step {
  line-height: 1;
  letter-spacing: 0.025em;
}

.step span {
  color: #ffed00;
}

.indent {
  display: inline-block;
  width: 2.5ch;
  margin-left: -3px;
}

.share-buttons-section {
  max-width: 75vmin;
  position: absolute;
  display: flex;
  justify-content: center;
  gap: 1rem;
  bottom: 10vmin;
  margin-left: 3vmin;
  left: 50%;
  transform: translateX(-50%);
}

.social-buttons-wrapper {
  width: 95%;
  display: contents;
}

.share-button {
  color: #fff300;
  background-color: transparent;
  border: 1px solid #fff300;
  padding: 0.4rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Futura", sans-serif;
  font-size: 1.2rem;
  text-wrap: nowrap;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.share-button:hover {
  background-color: #fff300;
  color: #120e0b;
}

#footer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-family: "Futura", sans-serif;
  font-weight: 400;
  color: #fff200;
  margin-top: 2vmin;
  font-size: 1.5vmin;
  letter-spacing: 2px;
  max-width: 45vmin;
  margin-left: 5vmin;
}

#footer span {
  cursor: pointer;
}

#footer span:hover {
  text-decoration: underline;
}

#footer a {
  text-decoration: none;
  color: inherit;
}

@media (max-width: 1900px) {
  #hero-png {
    width: 155vmin;
    margin-left: -15vmin;
    margin-top: -35vmin;
  }
  
  #takis {
    width: 60vmin;
    top: 20vmin;
    right: -10vmin;
    transform: rotate(-4deg);
  }
  
  #cheese-2 {
    width: 6vmin;
    right: -2vmin;
  }
  
  .steps {
    font-size: 2.75vmin;
    left: 29vmin;
    bottom: 5vmin;
  }
  
  .share-buttons-section {
    bottom: 11vmin;
  }
  
  #footer {
    position: absolute;
    font-size: 1.2vmin;
    margin-left: 6vmin;
    bottom: 4vmin;
    font-size: 1.5vmin;
    max-width: 45vmin;
  }
}

@media (max-width: 1600px) {
  #hero-png {
    width: 150vmin;
    margin-left: -25vmin;
    margin-top: -35vmin;
  }
  #takis {
    width: 58vmin;
    top: 23vmin;
    right: -8vmin;
    transform: rotate(-4deg);
  }
  #cheese-2 {
    width: 8vmin;
    right: -3vmin;
  }
  .share-button {
    font-size: 1rem;
  }
  .share-buttons-section {
    bottom: 12vmin;
    margin-left: 3vmin;
  }
  .steps {
    left: 29vmin;
    bottom: 4vmin;
    max-width: 48vmin;
    gap: 1.6vmin;
  }
  #footer {
    position: absolute;
    bottom: 5vmin;
    margin-left: 5vmin;
    font-size: 1.5vmin;
    max-width: 50vmin;
  }
}

@media (max-width: 1440px) {
  #hero-png {
    width: 137vmin;
    margin-left: -17vmin;
    margin-top: -36vmin;
  }

  #takis {
    width: 55vmin;
    top: 26vmin;
    right: -10vmin;
    transform: rotate(-1deg);
  }

  #nacho {
    width: 22vmin;
    right: -6vmin;
    top: 5vmin;
  }

  #cheese {
    width: 6vmin;
    left: 6vmin;
    top: 50vmin;
  }

  #cheese-2 {
    width: 5.5vmin;
    right: -2vmin;
    top: 75.5vmin;
  }

  #qrcode {
    left: 3vmin;
    bottom: 3vmin;
  }

  .steps {
    font-size: 3vmin;
    left: 27.5vmin;
    bottom: 4vmin;
    max-width: 48vmin;
    gap: 1.6vmin;
  }

  .share-buttons-section {
    bottom: 14vmin;
    gap: 0.9rem;
    margin-left: 7vmin;
  }

  .share-button {
    font-size: 1rem;
  }

  #footer {
    position: absolute;
    bottom: 7vmin;
    font-size: 1.5vmin;
    margin-left: 15vmin;
    max-width: 45vmin;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  #hero-png,
  #takis,
  #nacho,
  #cheese,
  #cheese-2 {
    display: none;
  }

  .outer {
    padding: 1.5%;
    overflow: visible;
  }

  #hero-png-mobile {
    display: block;
    position: absolute;
    width: 90vw;
    height: auto;
    margin-top: -40vmin;
    flex-shrink: 0;
  }

  #qrcode {
    width: 20vmin;
    left: 3vmin;
    bottom: 10vmin;
  }

  .steps {
    font-size: 2.2vmin;
    left: 24vmin;
    bottom: 15vmin;
    gap: 1.4vmin;
  }

  .share-buttons-section {
    bottom: 6vmin;
    right: 3vmin;
    left: auto;
    transform: none;
    max-width: 70vmin;
    gap: 0.75rem;
  }

  .share-button {
    font-size: 0.7rem;
    padding: 0.45rem 0.65rem;
  }

  #footer {
    position: absolute;
    bottom: 4vmin;
    right: 3vmin;
    left: auto;
    font-size: 1.1vmin;
    max-width: 50vmin;
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  #hero-png,
  #takis,
  #qrcode,
  #cheese,
  #cheese-2,
  .separatorPipe,
  .steps {
    display: none;
  }

  #main-section {
    overflow-x: hidden;
    overflow-y: visible;
    height: auto;
  }

  .outer {
    padding: 3%;
    overflow: visible;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: auto;
    padding: 0;
    padding-bottom: 4vmin;
    gap: 4vmin;
    overflow-x: hidden;
  }

  #hero-png-mobile {
    display: block;
    position: absolute;
    width: 117vw;
    height: auto;
    margin-top: -8vmin;
    margin-right: 6vmin;
    flex-shrink: 0;
  }

  #call-to-action {
    display: flex;
    position: relative;
    width: 70vw;
    text-align: start;
    align-items: flex-start;
    height: auto;
    font-size: 9vmin;
    cursor: pointer;
    margin-top: 32rem;
    margin-left: 1.25rem;
    flex-shrink: 0;
    gap: 0rem;
  }

  .cta-line {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: flex-end;
    gap: 0.25rem;
  }

  .cta-line svg {
    width: 14vmin;
    height: 14vmin;
    margin-left: 0.25vmin;
    padding-bottom: 1vmin;
  }

  .cta-subtitle {
    width: 100%;
    white-space: nowrap;
    margin-top: -0.5rem;
  }

  .share-buttons-section {
    display: flex;
    position: relative;
    font-size: 1rem;
    flex-direction: column;
    align-items: stretch;
    width: 70vw;
    margin-right: 5px;
    gap: 0.5rem;
    flex-shrink: 0;
    left: auto;
    bottom: auto;
    transform: none;
  }

  .social-buttons-wrapper {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }

  #share-experience-button {
    font-size: 1.3rem;
    width: 95%;
  }

  .share-button {
    font-size: 0.65rem;
    justify-content: center;
  }

  #footer {
    width: 100%;
    display: flex;
    margin-top: 4.5rem;
    margin-left: -9rem;
    position: relative;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: start;
    text-align: start;
    font-size: 3vmin;
    flex-shrink: 0;
  }

  #nacho {
    position: absolute;
    width: 13rem;
    height: 9rem;
    right: 0.25rem;
    top: 47rem;
    object-fit: cover;
    object-position: top;
    transform: scaleX(-1);
    pointer-events: none;
  }
}
