.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 150px 0 40px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-family: var(--font-alverica) !important;
}

.hero .hero-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .hero-bg::before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 15%);
  position: absolute;
  inset: 0;
  /* z-index: 2; */
}

.hero .container {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  width: 70%;
  height: 20%;
  justify-content: flex-start;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  /* max-width: 500px; */
}

.hero h1 {
  margin: 0;
  font-size: 30px;
  /* font-weight: 700; */
  line-height: 56px;
}

.hero h1 span {
  color: var(--accent-color);
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

/* Reduced Image Size */
.hero-img-top {
  max-width: 350px;
  height: auto;
}
.hero-img-bottom {
  max-width: 150px;
  height: auto;
}
.hero .line {
  border: 2px solid var(--primary-color);
  width: 250px; /* Adjust width as needed */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero .container {
    width: 80%;
  }

  .hero-content {
    max-width: 400px;
    text-align: center;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 48px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero-img-top {
    max-width: 250px;
  }
  .hero-img-bottom {
    max-width: 100px;
  }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 120px 0;
  }

  .hero .container {
    width: 90%;
    justify-content: center;
  }

  .hero-content {
    align-items: center;
  }
.hero 
  .hero h1 {
    font-size: 32px;
    line-height: 40px;
  }

  .hero p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 24px;
    line-height: 32px;
  }

  .hero p {
    font-size: 14px;
  }
.hero
  .hero-img-top {
    max-width: 250px;
  }
  .hero-img-bottom {
    max-width: 70px;
  }
}
