[data-bs-theme="light"] .btn-outline-theme {
color: black;
border-color: black;
}

[data-bs-theme="dark"] .btn-outline-theme {
color: white;
border-color: white;
}

.btn-outline-theme:hover {
background-color: currentColor;
color: #fff;
}

.carousel-item {
position: relative;
}

.carousel-img {
filter: blur(2px);
height: 400px;
object-fit: cover;
}

.carousel-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.4); 
}

.carousel-caption-custom {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
z-index: 10;
text-align: center;
padding: 1rem;
}

@media (max-width: 768px) {
.carousel-caption-custom h2 {
    font-size: 1.5rem;
}

.carousel-caption-custom p {
    font-size: 1rem;
}
}
.carousel-caption-header{
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
    font-variation-settings:
    "wdth" 75;

    font-size: 64px;
}
.carousel-caption-sub{
    font-family: "Roboto", sans-serif;
    font-size: 14px;
}
.about-us-container {
  /* border-radius: 1rem; */
  padding: 3rem 2.5rem;
  margin: 4rem auto;
  max-width: 1140px;
  transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.2);
  font-family: "Roboto", sans-serif;
}


/* Light Theme */
[data-bs-theme="light"] .about-us-container {
  background-color: #ffffff;
  color: #212529;
}

/* Dark Theme */
[data-bs-theme="dark"] .about-us-container {
  background-color: #2b2b2b;
  color: #f1f1f1;
}

/* I should probably yeet this later */
.about-us-container h2 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5rem;
}

/* I have no idea what on earth is  this */
.about-us-container strong {
  color: var(--bs-primary);
}
img {
  object-fit: cover;
}

.about-us-container h2 {
  font-size: 2rem;
  font-weight: 600;
  text-align: left;
  margin-bottom: 1.5rem;
}

