:root {
  --bg-blue: #201880;
}

@font-face {
  font-family: font-rough;
  src: url("./assets/fonts/Hansief_Rough.otf");
  font-display: swap;
}
@font-face {
  font-family: font-hansief;
  src: url("./assets/fonts/Hansief.otf");
  font-display: swap;
}

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

a{
  text-decoration: none;
}

html,body {
  margin: 0;
  padding: 0;
  height: 100dvh !important;
  min-height: 100dvh !important;
  overflow: hidden;
}

body {
  background-color: var(--bg-blue);
  position: relative;
  padding-bottom: 3rem;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  min-height: 100vh;
  background-image: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  mix-blend-mode: unset;
  z-index: -1;
}

/* ================================================================ */
/* Stickers: Initially hidden */
.red-sticker, .red-sticker-gif,
.yellow-sticker, .yellow-sticker-gif,
.blue-sticker, .blue-sticker-gif {
  display: none; /* Hidden during the flash screen */
}

/* Stickers visible after flash screen ends */
body:not(.flash-screen-active) .red-sticker, body:not(.flash-screen-active) .red-sticker-gif,
body:not(.flash-screen-active) .yellow-sticker, body:not(.flash-screen-active) .yellow-sticker-gif,
body:not(.flash-screen-active) .blue-sticker, body:not(.flash-screen-active) .blue-sticker-gif {
  display: block;
}

/* ================================================================== */


nav {
  position: fixed;
  z-index: 1;
  padding: 2rem 2.5rem;
  inset: 0;
  width: 100vw;
  height: 10vh;
  display: flex;
  justify-content: space-between;
  align-items: start;
  animation: fadeIn 0.5s normal 6.3s backwards;
}

.logo-text {
  font-family: font-rough;
  font-weight: 100;
}

nav .insta {
  font-family: sans-serif;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: right;
  margin-top: 0.25rem;
}
.insta h5 {
  font-weight: 700;
}

/* .insta .handle {
  font-size: 0.8rem;
  text-decoration: none;
}

.insta .handle:hover {
  color: #fcc220;
} */

.insta .barto {
  font-size: 0.8rem;
  text-decoration: none;
}

.insta .barto:hover {
  color: #E63733;
}

.insta .amoremio {
  font-size: 0.8rem;
  text-decoration: none;
}

.insta .amoremio:hover {
  color: #fcc220;
}

.insta .panozzi {
  font-size: 0.8rem;
  text-decoration: none;
}

.insta .panozzi:hover {
  color: cyan;
}

.slogan {
  font-family: sans-serif;
  text-transform: uppercase;
  font-weight: 200;
}

main {
  position: relative;
  height: 100dvh; /* Ensures the main container takes up full viewport height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* scale: 0.9; */
}

.typo-container {
  display: flex;
  justify-content: center; /* Centers the image horizontally */
  align-items: center; /* Centers the image vertically */
  height: 100%; /* Ensures the container takes full height of its parent (optional) */
}

.typo {
  width: 80%;
  height: auto;
  max-width: 100%;
  animation: typoFadePositionMobile 3s normal 3.6s backwards;
  margin-bottom: 5rem;
}

section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.intro-text {
  font-family: font-rough;
  font-weight: 100;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  font-size: 1.2rem;
  animation: scaleMobile 0.5s normal 6.1s backwards;
  transform: translateY(-4.5rem);
}

.intro-text .type1 {
  display: inline-block;
  overflow: hidden;
  animation: typing 1.2s steps(40, end) 1s backwards;
}

.intro-text .type2 {
  display: inline-block;
  overflow: hidden;
  animation: typing 1.2s steps(40, end) 2.2s backwards;
}

.lemon {
  position: absolute;
  bottom: 7.8rem;
  width: 100px;
  animation: fadeIn 1.5s normal 3.6s backwards, lemon 0.5s normal 6.1s backwards;
}

.buttons {
  position: absolute;
  bottom: 0;
  border: 1px solid white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: fadeIn 0.5s normal 6.3s backwards;
  z-index: 1000;
}

.buttons .btn {
  padding: 1.2rem;
}

.buttons .btn:hover {
  background-color: white;
}

.btn-2 {
  position: relative;
}

.btn-2::before,
.btn-2::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px; /* Adjust the width of the vertical bars */
  height: 50%;
  background-color: white; /* Color of the bars */
  transform: translateY(50%);
  
}

.btn-2::before {
  left: 1px; /* Adjust distance from the left of the button */
}

.btn-2::after {
  right: 1px; /* Adjust distance from the right of the button */
}
.logo-white{
  font-family: font-hansief;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
}
/* Initially hide the blue logo */
.logo-blue {
  display: none;
}

/* Hide the white logo and show the blue logo when hovering over the button */
.btn:hover .logo-white {
  color: #201880;
}



