body {
  font-family: 'Karla', sans-serif;
  color: #ffffff;
  padding-bottom: 75px;
  position: relative; /* needed for the pseudo-element positioning */
  z-index: 0;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  filter: blur(8px); /* Adjust blur value as needed */
  z-index: -1; /* places the background behind the content */
}

@media (min-width: 768px) {
  body {
    padding-bottom: 110px;
  }
}

.navbar-brand {
  margin-right: 0;
}
.navbar-brand img {
  height: 21px;
}

.navbar-dark {
  padding-top: 35px;
  padding-bottom: 35px;
}
.navbar-dark .navbar-text {
  color: #ffffff;
  opacity: 1;
  padding: 0 20px;
  border-right: 1px solid #ffffff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.navbar-dark .navbar-text:last-child {
  border-right: 0;
}
@media (max-width: 767px) {
  .navbar-dark {
    padding-bottom: 0;
  }
}

.page-title {
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 6px;
}
@media (max-width: 767px) {
  .page-title {
    font-size: 35px;
    margin-bottom: 14px;
  }
}

/* Updated page-description styles */
.page-description {
  font-size: 30px;
  margin: 0 auto 59px; /* centers the description block */
}
@media (max-width: 767px) {
  .page-description {
    font-size: 25px;
    max-width: 100%;  /* allow full width on small screens */
    margin: 0 auto 59px;
  }
}

p {
  font-size: 25px;
  margin-bottom: 21px;
}

.footer-social-links .social-link {
  display: inline-block;
  text-align: center;
  line-height: 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #000000;
  margin-right: 16px;
  transition: all 0.3s ease-in-out;
}
.footer-social-links .social-link:last-child {
  margin-right: 0;
}
.footer-social-links .social-link:hover {
  text-decoration: none;
  background-color: #000000;
  color: #ffffff;
}

/* Extra responsive adjustments for very small screens */
@media (max-width: 576px) {
  .page-title {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .page-description {
    font-size: 20px;
    margin-bottom: 40px;
  }
  p {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .navbar-dark {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .navbar-dark .navbar-text {
    font-size: 16px;
    padding: 0 10px;
  }
  .footer-social-links .social-link {
    width: 35px;
    height: 35px;
    line-height: 35px;
    margin-right: 10px;
  }
}

/*# sourceMappingURL=bd-coming-soon.css.map */
