*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  font-family: 'Montserrat', sans-serif;

  background-color: black;

  color: white;

  overflow-x: hidden;
}

/* HERO */

.hero{
  position: relative;

  width: 100%;
  height: 100vh;

  overflow: hidden;
}

/* VIDEO */

.video-bg{
  position: absolute;

  top: 50%;
  left: 50%;

  width: 115%;
  height: 115%;

  object-fit: cover;

  transform: translate(-50%, -50%);

  z-index: 1;
}

/* OVERLAY */

.overlay{
  position: absolute;

  width: 100%;
  height: 100%;

  top: 0;
  left: 0;

  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.45)
  );

  z-index: 2;
}

/* HEADER */

header{
  position: absolute;

  width: 100%;

  top: 25px;

  display: flex;
  justify-content: center;

  z-index: 5;
}

/* MENU */

nav{
  background: rgba(255,255,255,0.08);

  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.15);

  padding: 16px 35px;

  border-radius: 50px;
}

nav ul{
  display: flex;

  gap: 40px;

  list-style: none;
}

nav a{
  color: white;

  text-decoration: none;

  font-weight: 500;

  transition: 0.3s;
}

nav a:hover{
  color: #f4e033;
}

/* HERO CONTENT */

.hero-content{
  position: relative;

  z-index: 4;

  width: 100%;
  height: 85vh;

  display: flex;

  flex-direction: column;

  justify-content: center;
  align-items: center;

  text-align: center;

  padding: 20px;
}

/* LOGO */

.logo{
  width: 280px;

  margin-bottom: 25px;

  animation: logoFloat 3.5s ease-in-out infinite alternate;
}

/* TITULO */

.hero h1{
  font-size: 82px;

  line-height: 0.95;

  font-weight: 900;

  margin-bottom: 25px;

  text-shadow: 0px 0px 20px rgba(0,0,0,0.4);
}

/* TEXTO */

.hero p{
  font-size: 24px;

  margin-bottom: 35px;

  color: #f1f1f1;
}

/* BOTON */

.btn{
  display: inline-block;

  background: linear-gradient(
    45deg,
    #f4e033,
    #ff00aa
  );

  color: black;

  text-decoration: none;

  padding: 18px 40px;

  border-radius: 50px;

  font-weight: bold;

  transition: 0.3s;
}

.btn:hover{
  transform: scale(1.05);
}

/* INSTAGRAM */

.instagram{
  margin-top: 25px;

  font-size: 18px;

  font-weight: bold;

  color: #f4e033;
}

/* ANIMACION */
@keyframes logoFloat{

  0%{

    transform:
    translateY(0px)
    scale(1);

    filter:
    drop-shadow(0px 0px 10px rgba(255,255,255,0.15))
    drop-shadow(0px 0px 20px rgba(255,0,120,0.25))
    drop-shadow(0px 0px 35px rgba(255,0,120,0.15));

  }

  100%{

    transform:
    translateY(-12px)
    scale(1.03);

    filter:
    drop-shadow(0px 0px 20px rgba(255,255,255,0.35))
    drop-shadow(0px 0px 40px rgba(255,0,120,0.6))
    drop-shadow(0px 0px 70px rgba(255,0,120,0.35));

  }

}

@media(max-width: 768px){

  nav ul{
    gap: 15px;
  }

  nav{
    padding: 12px 20px;
  }

  nav a{
    font-size: 14px;
  }

  .logo{
    width: 180px;
  }

  .hero h1{
    font-size: 48px;

    line-height: 1;
  }

  .hero p{
    font-size: 18px;

    padding: 0px 20px;
  }

  .btn{
    padding: 15px 30px;

    font-size: 14px;
  }

  .instagram{
    font-size: 16px;
  }

}

