@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
  outline: none;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  letter-spacing: 0.05vw;
  box-sizing: border-box;
  text-decoration: none;
  
}

html {
  height: 100%;
  margin: 0;
  padding: 0;
  background-size: cover;
}



body {
    background-size: cover;
    padding-top: 2vw; 
    
}







/* HERO */
.hero {
  width: 100%;
  top: 5vw;
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.banner img {
  width: 90%;
  height: 25vw;
  object-fit: cover;
  margin: 0 auto;
  border-radius: 2vw;
  z-index: 1;
  filter: brightness(0.5);
}

.hero-title {
  font-size: 8vw;
  color: white;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  z-index: 2;
  position: absolute;
  font-family: "Italianno", cursive;
  font-weight: 400;
  font-style: normal;
  text-shadow: 0vw 0vw 1vw black;
}








/* CONTACT */

.contact-container {
  background-image: linear-gradient(to right, rgb(96, 12, 12), rgb(138, 20, 20));
  margin: 0 auto;
  width: 55vw;
  border-radius: 1.5vw;
  height: auto;
  margin-top: 9vw;
  margin-bottom: 4vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 2vw 3vw;
}

.contact-title {
  color: white;
  font-weight: 500;
  font-size: 2.5vw;
  margin-top: -0.1vw;
}

.contact-description {
  color: white;
  font-weight: 200;
  font-size: 1.35vw;
  margin-top: -2.35vw;
  margin-bottom: 1.5vw;
}

.contact-inputs {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.contact-input {
  width: 49.5%;
  margin-bottom: 1vw;
  padding: 0.85vw 1vw;
  border: none;
  border-radius: 1vw;
  font-size: 1vw;
}

.contact-textarea {
  width: 100%;

  height: 10vw;
  padding: 1vw;
  border: none;
  border-radius: 1vw;
  font-size: 1vw;
  margin-bottom: 1vw;
  
}

.contact-button {
  width: 100%;
  padding: 1vw;
  border: none;
  border-radius: 1vw;
  background-color: rgba(224, 224, 224, 0);
  color: white;
  cursor: not-allowed;
  transition: background-color 0.2s ease, color 0.2s ease;
  font-size: 1.15vw;
  border: 0.2vw solid white;
}

.contact-button.active {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  cursor: pointer;
  transition: background-color 0.2s ease, border 0.2s ease; 
  border: 0.2vw solid white;
}
.contact-button.active:hover {
  background-color: rgb(231, 231, 231);
  border: 0.2vw solid rgb(231, 231, 231);
}




.contact-bottom-container a {
  text-decoration: none;
  color: black;
}

.contact-bottom-container {
  display: none;
}


@media (max-width: 768px) {
    .contact-bottom-container {
    margin: 0 auto;
    border-radius: 1.5vw;
    height: auto;
    margin-top: 9vw;
    margin-bottom: 5vw;
    display: block;
    align-items: center;
    justify-content: space-between;
    padding: 2vw 3vw;
    text-align: center;
    font-size: 6vw;
}

  .contact-bottom-container i {
    color: #a02424;
    font-size: 7vw;
  }
}



@media (max-width: 768px) {
  .contact-container {
    width: 96%;
    border-radius: 3vw;
    margin-top: 13vw;
  }
}

@media (max-width: 768px) {
  .contact-title {
    font-size: 5vw;
    margin-top: -0.1vw;
  }
  
  .contact-description {
    font-size: 2.65vw;
    margin-top: -4.5vw;
    margin-bottom: 2vw;
  }
}

@media (max-width: 768px) {
  .contact-input {
    padding: 1vw 1.35vw;
    font-size: 3vw;
  }
  
  .contact-textarea {
    height: 23vw;
    padding: 1vw 1.35vw;
    border-radius: 1vw;
    font-size: 3vw;
  }
}

@media (max-width: 768px) {
  .contact-button {
    padding: 1.25vw;
    font-size: 3.5vw;
    margin-bottom: 1vw;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-title {
      font-size: 18vw;
    }
  
    .banner img {
      width: 100%;
      height: 40vw;
      border-radius: 0vw;
    }
  }