/* =========================
   FONTS
========================= */
@font-face {
    font-family: "f1";
    src: url("../fonts/Gilroy-Regular.ttf");
}
@font-face {
    font-family: "f4";
    src: url("../fonts/Gilroy-Bold.ttf");
}

body {
  font-family: "f1", sans-serif;
  background: #fff;
}


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

.hero-banner {
  padding: 20px;
}

.carousel-item {
  height: 70vh;
  min-height: 620px;
}

.hero-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
  filter: brightness(65%);
}

/* TEXT */
.hero-content {
  bottom: 20%;
  left: 6%;
  right: 6%;
  text-align: left;
}

.hero-title {
  font-family: "f4";
  font-size: 52px;
  color: #fff;
  line-height: 1.2;
}

.hero-text {
  font-size: 18px;
  color: #eaeaea;
  max-width: 700px;
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 6.25rem !important;
    left: 5% !important;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
}

/* =========================
   CUSTOM INDICATORS
========================= */

.carousel-indicators {
  position: static !important;
  margin-top: 16px;
}

.carousel-indicators.custom-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.carousel-indicators.custom-indicators button {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background-color: #bfbfbf !important;
  border: none !important;
  opacity: 1 !important;
  margin: 0 !important;

  transition:
    width 0.35s ease,
    background-color 0.35s ease,
    transform 0.25s ease;
}

.carousel-indicators.custom-indicators button.active {
  width: 28px !important;
  border-radius: 20px !important;
  background-color: #ff5a3c !important;
  transform: scale(1.05);
}


/* =========================
   SMOOTH SLIDE
========================= */

.carousel-item {
  transition: transform 0.9s ease-in-out;
}


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

@media (max-width: 992px) {
  .carousel-item {
    height: 60vh;
    min-height: 520px;
  }

  .hero-title {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .carousel-item {
    height: 50vh;
    min-height: 420px;
  }

  .hero-title {
    font-size: 26px;
  }

  .hero-text {
    font-size: 14px;
  }
}
