.shadow-text { text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--bs-gray-200);
}
h1, h2, h5 {
  text-transform: uppercase;
}
.text-orange { color: var(--bs-orange); }
.bg-orange { background-color: var(--bs-orange); }
.navbar {
  border-bottom: 4px solid var(--bs-orange);
}
.sponsor-section {
  background: var(--bs-white);
  padding: 40px 0;
  border-radius: 15px;
  margin-top: 20px;
}
    
.sponsor-logo {
  filter: grayscale(1);
  opacity: 0.7;
  transition: 0.3s;
}
.sponsor-logo:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
  opacity: 1;
}
.faceCard {
    width: 110px;
    height: 155px;
}
.faceCard img {
    position: absolute
}

.product-img { width: 80px; height: 80px; object-fit: cover; border-radius: 10px; }

footer ul li a:hover {
  color: var(--bs-orange) !important;
  transition: 0.3s;
}

/* When data-bs-theme is dark */
[data-bs-theme="dark"] body {
    background-color: var(--bs-gray-900);
}
[data-bs-theme="dark"] .sponsor-section{background: var(--bs-black);}
