* {
  box-sizing: border-box;
}

.italiana-regular {
  font-family: "Italiana", sans-serif;
  font-weight: 200;
  font-style: light;
}

body {
  margin: 0;
  background: #0f0f0f;
  font-family: "Italiana", sans-serif;
  overflow-x: hidden;
  color: white;
  text-transform: uppercase;
}

#myVideo {
  position:absolute;
  width: 100%;
  z-index: -1; /* Ensure the video is behind the content */
  filter:blur(3px);
}

.hero {
  height: 100vh;
  display: block;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 3.5rem;
  font-weight: bold;
  text-shadow: 0 0 20px #000;
  padding-top: 200px;
  z-index: 0;
}

.hero::after {
  content: "";
  display: block;
  margin: 40px auto 0 auto;
  width: 50%;
  height: 3px;
  background: linear-gradient(90deg, #fff, #888);
  border-radius: 2px;
  z-index: 0;
}

.parallax-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 60px;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.column img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  will-change: transform;
}

.column img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}


/* @media (max-width: 1024px) {
  .parallax-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .parallax-grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .hero {
    font-size: 1.5rem;
    height: 60vh;
    padding-top:20px;
  }

  h1 {
    margin: 0 ;
  }

  .column img {
    border-radius: 8px;
  }
} */

@media (max-width: 480px) {
  .hero {
    font-size: 1.2rem;
    height: 20vh;
    z-index: 0;
    padding: 30px 0px 160px;
  }

  .hero::after {
    width: 80%;
    margin: 20px auto 0 auto;
  }

  .parallax-grid {
    gap: 15px;
  }

  .parallax-grid {
    grid-template-columns: 1fr;
    padding: 50px 20px;
  }

  .column img {
    border-radius: 6px;
  }

  #second-column {
    display: none;
  }

  #third-column {
    display: none;
  }

  data-speed {
    display: none;
  }
}

#mobile-hint {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
}

#mobile-hint.hidden {
  display: none;
}

.hint-box {
  background-color: #222;
  border-radius: 12px;
  padding: 20px 30px;
  box-shadow: 0 0 10px black;
  max-width: 90%;
}

#close-hint {
  margin-top: 15px;
  background-color: white;
  color: black;
  border: none;
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: bold;
  cursor: pointer;
}

