
/* ================= HERO ================= */

.hero {
  width: 100%;
  min-height: 90vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 140px 100px 80px;
  gap: 40px;
}

/* ================= TEXT SECTION ================= */

.hero-content {
  width: 50%;
}

.sub-title {
  font-size: 40px;
  color: #f4a100;
  font-family: "Great Vibes", cursive;
}

.hero-content h1 {
  font-size: clamp(40px, 5vw, 80px);
  line-height: 1.05;
  color: #a31212;
  margin: 20px 0;
  font-weight: 700;
}

.hero-content p {
  max-width: 500px;
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 35px;
}

/* ================= BUTTONS ================= */

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  padding: 18px 36px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.35s;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);
}

.btn-primary {
  background: #c1121f;
  color: #fff;
}

.btn-primary:hover {
  background: #a40f1a;
}

.btn-secondary {
  border: 2px solid #25d366;
  color: #25d366;
}

.btn-secondary:hover {
  background: #25d366;
  color: #fff;
}

/* ================= HERO IMAGE ================= */

.hero-image {
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 40px;
}

.hero-image::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: #ffe8d6;
  z-index: -1;
  top: -30px;
}

.hero-image img {
  width: 100%;
  max-width: 550px;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.25));
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ================= BADGES ================= */

.badge {
  position: absolute;
  background: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  font-weight: 600;
}

.badge-one {
  top: 40px;
  left: -50px;
}

.badge-two {
  top: 180px;
  right: -60px;
}

.badge-three {
  bottom: 50px;
  left: 10px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 120px 40px 60px;
  }

  .hero-content {
    width: 100%;
  }

  .hero-content p {
    max-width: 100%;
    margin: 0 auto 30px;
  }

  .hero-image {
    width: 100%;
    margin-top: 50px;
  }

  .hero-image::before {
    width: 320px;
    height: 320px;
  }

  .badge-one,
  .badge-two,
  .badge-three {
    position: absolute;
    transform: scale(0.9);
  }
}

@media (max-width: 600px) {

  .hero {
    padding: 100px 20px 50px;
  }

  .sub-title {
    font-size: 28px;
  }

  .hero-image::before {
    width: 260px;
    height: 260px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}