@font-face {
  font-family: "italiano";
  src: url("../fonts/Italianno-Regular.ttf") format("truetype");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Italianno, sans-serif ;
  background-color: black;
  color: aliceblue;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  justify-items: center;
  align-items: center;
  padding: 2vh;
  gap: 3vh;
  text-align: center;
  position: relative;
  overflow-x: hidden;
}

/* Imagen de fondo si la necesitas */
.main img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
}

/* Header: logo + título */
.header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  z-index: 1;
}

/* Logo circular */
.logo img {
    position: absolute;
    left: 0;
    top: 0;
  width: 7vw;
  max-width: 200px;
  border-radius: 50%;
}

/* Título principal */
.banner img {
  height: 15vh;
  max-height: 200px;
  object-fit: contain;
}

/* Navegación y contenido */
.nav {
  display: grid;
  gap: 2vh;
  z-index: 1;
  width: 100%;
  max-width: 300px;
}

/* Elementos del menú */
.nav-item, .nav-item1, .cont {
  font-size: 2rem;
  padding: 0.8em;
  border-radius: 12px;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-item a,
.nav-item1 a {
  text-decoration: none;
  color: aliceblue;
}

/* Icono dentro de botón (Instagram) */
.nav-item1 img {
  width: 40px;
  height: 40px;
  margin-right: 0.5em;
}

/* Hover */
.nav-item:hover,
.nav-item1:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Texto decorativo */
span {
  font-size: 1.8rem;
  margin-top: 1vh;
}

/* Clase para separación vertical */
.super {
  margin-top: 2vh;
}

/* Código QR */
.qr {
  z-index: 1;
  display: grid;
  place-items: center;
  margin-top: 3vh;
}

.qr img {
  width: 20vw;
  max-width: 180px;
  height: auto;
  border-radius: 8px;
}

/* Animación al hacer hover */
@keyframes zoom {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.shake:hover {
  animation: zoom 1.5s ease;
}

@media (max-width: 1000px) {
  .logo {
    display: none;
  }
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Bixbite.ttf") format("truetype");
}
