@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;
}


/* ABOUT */
.container {
  width: 70vw;
  margin: 0 auto;
  font-family: Arial, sans-serif;
}

h1, h2 {
  color: #333;
  margin-bottom: 1.6vw;
  font-size: 2.4vw;
  text-align: center;
}

p {
  font-size: 1.2vw;
  line-height: 1.6vw;
  text-align: justify;
  margin-bottom: 3.2vw;
}

section {
  padding: 2.4vw;
  background-color: #f4f4f4;
  border-radius: 0.8vw;
  margin-top: 0.8vw;
}

.intro, .history, .bottles, .essence, .experience {
  background-color: #dddddd61;
}

.intro {
  margin-top: 10vw;
}

.intro h1 {
  margin-left: -6vw;
}

.intro img {
  width: 20vw;
}

.bottles img {
  margin-top: -7vw;
  float: right;
}

.bottles h2 {
  text-align: left;
}

.bottles p {
  max-width: 33vw;
  margin-left: 1vw;
}

.experience h2 {
  margin-left: 14.5vw;
}

.experience p {
  transform: translateX(0.35vw);
}

.essence p {
  text-align: center;
}



.responsive-img {
  width: 28vw;
  height: auto;
  border-radius: 1.6vw;
  margin-top: -6vw;
  margin-bottom: 2.4vw;
  float: left;
  margin-right: 1.6vw;
  margin-left: 0;
}

.history, .experience, .bottles, .essence {
  background-color: #dddddd61;
}






/* Mobile adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 18vw;
  }

  .banner img {
    width: 100%;
    height: 40vw;
    border-radius: 0vw;
  }

  .container {
    width: 90%;
  }

  h1, h2 {
    font-size: 8vw;
    margin-top: -2vw;
  }

  p {
    font-size: 5vw;
    line-height: 6vw;
  }

  section {
    padding: 6vw;
    border-radius: 5vw;
    margin-top: 3vw;
  }

  .intro h1 {
    margin-left: 0vw;
  }

  .intro img {
    width: 100%;
    margin-top: 3vw;
  }

  .bottles img {
    width: 100%;
    margin-top: 5vw;
    margin-right: 0;
  }

  .bottles h2 {
    text-align: center;
    margin-bottom: -0.5vw;
  }

  .bottles p {
    max-width: 100%;
    margin-left: 0;
  }

  .experience h2 {
    margin-left: 0;
  }

  .responsive-img {
    width: 100%;
    margin-top: 3vw;
    margin-bottom: 6vw;
    margin-right: 0;
    
  }
}