.hero {
  position: relative;
  background-image: url("/../assets/img/home/hero-img-ps.jpg");
  background-size: cover;
  height: calc(100vh - 92px);
}

.hero-text {
  height: 100%;
  text-align: center;
  display: flex;
  gap: 36px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.hero-text h1 {
  line-height: 0.9;
  margin-top: 96px;
}

.hero-text p {
  width: 700px;
}

.cta-btn {
  width: fit-content !important;
  background-color: var(--color-accent);
  padding: 8px 24px;
  color: var(--color-text);
  transition: all 0.3s;
}

.cta-btn:hover {
  cursor: pointer;
  background-color: var(--color-primary);
  color: white;
}

/* ===========================
   Responsives Design (Breakpoints)
   Range: 320px – 1920px
=========================== */

/* Extra Large Devices (1200px – 1599px) */
@media (min-width: 1200px) and (max-width: 1599px) {
  .hero-text p {
    width: 600px;
  }
}

/* Large Devices (992px – 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-text p {
    width: 600px;
  }
}

/* Medium Devices (768px – 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .hero-text p {
    width: 600px;
  }
}

/* Small Devices (576px – 767px) */
@media (max-width: 767px) {
  .hero-text p {
    width: auto;
  }

  .cta-btn {
    padding: 6px 12px;
  }

  .hero {
    background-image: url("/../assets/img/home/hero-img-ps -mobile.jpg");
  }
}

/* Extra Small Smartphones (320px – 575px) */
@media (max-width: 575px) {
  .cta-btn {
    padding: 6px 12px;
  }
}
