.hero {
  width: 100%;
  height: 100vh;
  background: url("./assets/hero-video.mp4");
  display: flex;
  align-items: center;
  position: relative;
  background-image: url("../assets/coverImage.png");
  background-position: center;
  background-size: cover;
}

.hero #heroVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
  filter:brightness(.7);

}

.hero .hero-text {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding-left: 10%;
  max-width: 40%;
  color: white;
  backdrop-filter: blur(.1rem);
  letter-spacing: .05rem;
  z-index: 2;

  animation: fadeInView .5s linear;
}

.hero .hero-text h1 {
  color: var(--secondary-color);
  width: 100%;
  text-align: left;
}

.hero .hero-text .action-buttons {
  display: flex;
  flex-direction: column;
 
  gap: .5rem;
}

.hero .hero-text .action-buttons .learn-more-btn {
  color: var(--secondary-color);
  width: fit-content;
}

.hero .hero-text .music-btn {
  width: fit-content;
  padding: .5rem .75rem;
  border: white 2px solid;
  background-color: var(--secondary-color);
  color: white;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;

  transition: all .3s ease-in-out;
}

.hero .hero-text .action-buttons .learn-more-btn:hover {
  color: white;
}


.hero .hero-text .music-btn:hover {
  color: var(--secondary-color);
  background-color: white;
  cursor: pointer;
  border: var(--secondary-color) 2px solid;
}

.subhero {
  display: flex;
  flex-direction: column;
  padding: 5rem;
  position: relative;
}

.subhero .subhero-container {
  display: flex;
  align-items: center;
  gap: 5rem;
  position: relative;
}

.subhero .subhero-container section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  letter-spacing: .05rem;
  position: relative;

  animation: slideInFromRight .5s linear;
}

.subhero .subhero-container section h2 {
  color: var(--secondary-color);
  font-size: 2rem;
}

.subhero .subhero-container img {
  width: 50%;
  max-width: 30rem;
  border-radius: 50%;
}

.subhero .subhero-container .aboutImg {
  animation: slideInFromLeft .5s linear;
}

.subhero .about1 section .about1-background2 {
  position: absolute;
  z-index: -2;
  width: 100% !important;
  bottom: -10rem;
  left: 0;
  transform: scaleX(-1) skewY(30deg);
}

.subhero .subhero-container section .about1-background {
  position: absolute;
  z-index: -1;
  width: 100% !important;
  top: -12rem;
  right: 0;
}

.about-bg-image {
  animation: fadeInView 1s linear;
}



.contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  position: relative;
  padding: 5rem;
}

.contact img {
  width: 50%;
  max-width: 30rem;
  border-radius: 50%;
}

.contact section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 50%;
}

.contact section h2 {
  color: var(--secondary-color);
  font-size: 2rem;
}

.contact section form {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}


.contact section form input {
  padding: 1rem;
  border: var(--secondary-color) 2px solid; 
  border-radius: 8px;
  transition: all .3s ease-in-out;
}

.contact section form input:hover,
.contact section form textarea:hover,
.contact section form input:focus,
.contact section form textarea:focus
 {
  box-shadow: 0 4px 8px #000;
  outline: none;
}

.contact section form textarea {
  padding: 1rem;
  border: var(--secondary-color) 2px solid;
  height: 5rem;
  resize: none;
  border-radius: 8px;
  transition: all .3s ease-in-out;
}

.contact section form button {
  padding: .5rem .75rem;
  border: white 2px solid;
  background-color: var(--secondary-color);
  color: white;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;

  transition: all .3s ease-in-out;
}

.contact section form button:hover {
  color: var(--secondary-color);
  background-color: white;
  cursor: pointer;
  border: var(--secondary-color) 2px solid;
}


@media screen and (max-width: 800px) {
  .hero .hero-text {
    max-width: 100%;
    padding: 0 2rem;
    display: flex;
    align-items: center;
  }
  .hero .hero-text h1 {
    font-size: 1.5rem;
    text-align: center;
  }

  .hero .hero-text p {
    text-align: center;
  }

  .hero .hero-text .action-buttons {
    align-items: center;
  }

  .subhero {
    padding: 1rem;
  }

  .subhero-container {
    flex-direction: column;
  }

  .subhero .subhero-container .aboutImg {
    width: 100%;
  }

  .subhero .subhero-container section {
    gap: 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .subhero .subhero-container section h2 {
    font-size: 5rem 1rem;
  }

  .subhero .subhero-container section .about1-background {
  }

  .contact {
    flex-direction: column-reverse;
    padding: 5rem 1rem;
  }

  .contact img {
    width: 100%;
  }

  .contact section {
    width: 100%;
  }
} 
