.hero-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.background-image-hero {
  height: 100vh;
  background: linear-gradient(rgba(47, 14, 63, 0.55), rgba(47, 14, 63, 0.55)),
    url("../assets/hero/hero.webp") center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.overlay-top-right {
  position: absolute;
  top: -14px;
  right: 0;
  width: 200px;
  height: 200px;
  background-image: url("../assets/decors/rectangle1.png");
  background-size: cover;
}

.overlay-left {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);  
  width: 100%;
  min-width: 318px; 
  min-height: 614px;           
  height: 100vh;
  background-image: url("../assets/decors/rectangle.png");
  background-size: contain;  
  background-repeat: no-repeat;
  background-position: left center;
  overflow: hidden;
}

.content-hero {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  color: white;
  z-index: 1;
}

.content-hero h1 {
  font-size: 50px;
  width: 100%;
  margin: 0;
  padding: 0 10px;
  line-height: 50px;
  letter-spacing: 8px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  z-index: 1;
}


@media (max-width: 768px) {
  .content-hero h1 {
    font-size: 45px;
    line-height: 60px;
    letter-spacing: 4px;
    word-spacing: 0.25em; /* Slightly smaller gap for tablets */
    padding: 0 8px;
  }
}

@media (max-width: 576px) {
  .content-hero h1 {
    font-size: 40px; 
    letter-spacing: 1px;
    word-spacing: 1rem; /* Smaller gap for mobile */
  }
}