
.hero-sec {
  position: relative;
  width: 100%;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  gap: 2rem;
  overflow: hidden;
  z-index: 1;
}

.hero-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://media.istockphoto.com/id/1073935306/photo/girls-carrying-shopping-bags.jpg?s=612x612&w=0&k=20&c=JB-TrME32dc0VTnaXVxsbJIExZqR71m-iyVOnG-7puM=');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
  filter: blur(8px) brightness(0.8); /* blur and darken slightly */
  z-index: -1;
  /* opacity: 0.5; */
}


/* LEFT SIDE */

/* LEFT SIDE */
.hero-left {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-left .content {
  width: 100%;
  padding: 0 2rem;
  box-sizing: border-box;
  margin-left: 4rem;
}

.hero-left .content h1 {
  width: fit-content;
  font-size: 3.5rem;
  color: rgb(255, 255, 255);
  margin: 2rem 0;
  line-height: 1.2;
  max-width: 100%;
  backdrop-filter: blur(4px);
  border: none;
  text-shadow: #113fd6 0px 0px 10px;
}

.hero-left .content h1 span {
  color: rgb(212, 201, 201);
  font-weight: 700;
  font-size: 3.8rem;
  white-space: nowrap;
  opacity: 107;
}

.hero-left .content p {
  font-size: 2rem;
  /* font-weight: 600; */
  color: rgb(212, 201, 201);
  margin: 1rem;
  max-width: 100%;
  backdrop-filter: blur(0.2rem);
  text-shadow: #113fd6 0px 0px 10px;
  /* -webkit-backface-visibility: var(--black); */
}

.hero-left .content p:hover {
    color: var(--white);
    transition: color 0.3s ease;
}

.hero-left .content a {
  display: inline-block;
  padding: 15px 25px;
  background-color: var(--blue);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1.2rem;
  margin: 1rem 0;
  transition: background-color 0.6s ease;
}

.hero-left .content a:hover {
  background-color: #ffa947;
}


/* RIGHT SIDE */
.hero-right {
  width: 40%;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-right img {
  width: 100%;
  max-width: 400px;
  transform: rotate(-10deg);
  filter: contrast(1.5);
  margin-top: 5rem;
  scale: 2;
  opacity: 0.8;
}

.hero-right img:hover {
    filter:contrast(3.5);
    transition: filter 0.3s ease;
    rotate: -360deg;
    transition: ease-in-out 0.5s;
    transition-duration: 1s;
}

/* RESPONSIVE: MOBILE */
@media (max-width: 600px) {
  .hero-sec {
    flex-direction: column;
    height: 80vh;
    padding: 1.5rem 1rem;
  }

  .hero-left {
    width: 100%;
    height: auto;
  }

  .hero-left .content {
    width: 100%;
    padding: 0;
    margin: 0%;
  }

  .hero-left .content h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-top: 0;
  }

  .hero-left .content h1 span {
    font-size: 2rem;
  }

  .hero-left .content p {
    font-size: 1rem;
    margin: 1rem 0;
    max-width: 100%;
  }

  .hero-left .content a {
    font-size: 1rem;
    padding: 10px 20px;
    margin-top: 1.5rem;
  }

  .hero-right {
    display: none;
  }
}
