/* GLOBAL STYLES
-------------------------------------------------- */
/* Padding below the footer and lighter body text */

body {
  padding-top: 3rem;
  padding-bottom: 3rem;
  color: rgb(var(--bs-tertiary-color-rgb));
}


/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

/* Carousel base class */
.carousel {
  margin-bottom: 4rem;
}
/* Since positioning the image, we need to help out the caption 
.carousel-caption {
  bottom: 3rem;
  z-index: 10;
}*/

.carousel-caption {
  position: absolute;
  left: 8%;
  right: auto;
  bottom: 28%;
  text-align: left;
  z-index: 2;
}

/* Declare heights because of positioning of img element */
.carousel-item {
  height: 32rem;
  position: relative;
}


/* MARKETING CONTENT
-------------------------------------------------- */

/* Center align the text within the three columns below the carousel */
.marketing .col-lg-4 {
  margin-bottom: 1.5rem;
  text-align: center;
}
/* rtl:begin:ignore */
.marketing .col-lg-4 p {
  margin-right: .75rem;
  margin-left: .75rem;
}
/* rtl:end:ignore */


/* Featurettes
------------------------- */

.featurette-divider {
  margin: 5rem 0; /* Space out the Bootstrap <hr> more */
}

/* Thin out the marketing headings */
/* rtl:begin:remove */
.featurette-heading {
  letter-spacing: -.05rem;
}

/* rtl:end:remove */

/* RESPONSIVE CSS
-------------------------------------------------- */

@media (min-width: 40em) {
  /* Bump up size of carousel content */
  .carousel-caption p {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .featurette-heading {
    font-size: 50px;
  }
}

@media (min-width: 62em) {
  .featurette-heading {
    margin-top: 7rem;
  }
}


.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.45) 60%,
    rgba(0, 0, 0, 0.15) 100%
  );
  z-index: 1;
}

.banner-title {
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 12px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.banner-title::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background-color: #ff0000; /* logo red */
  margin-top: 10px;
}
.banner-subtitle {
  font-family: "Roboto", "Segoe UI", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #ededed;
  max-width: 620px;
  line-height: 1.6;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.55);
}

@media (max-width: 768px) {
  .carousel-caption {
    bottom: 18%;
    left: 5%;
  }

  .banner-title {
    font-size: 2.2rem;
  }

  .banner-subtitle {
    font-size: 1.05rem;
  }
}