li {
  list-style: none;
}

/* header.php */

.hovering-navbar:hover {
  font-weight: bold;
}

.navbar .collapse:not(.show) li a {
  color: #000;
}
.navbar .collapse:is(.show) li a {
  color: #fff;
}
.bg-navbar-mobile {
  background-color: var(--dark-amber);
}
/* index.php */
.homepage-style {
  min-height: 100vh;
  background-color: #fef3c7;
}
/* store.php */

.card-style {
  width: 15rem;
  border-radius: 10px;
  color: #000000;
}

.card-style:hover {
  background-color: rgb(237, 237, 237);
  color: #000;
  transition: heigth 1s;
}
.card-style:hover img {
  box-shadow: 0px 5px 5px rgb(195, 195, 195);
}

.accordion {
  border-width: 0;
}

.py-6 {
  padding-top: 5rem;
  padding-bottom: 3rem;
}

/* MEDIA SCREEN */
@media (width <= 800px) {
  /* store */
  .card-style {
    width: 20rem;
  }
}

@media screen and (width <= 1000px) {
  /* index.php */
  .homepage-style {
    background-color: transparent;
    color: #fff;
  }

  .bg-image {
    width: 100%;
    height: 100%;
    background: #ffffff url(../img/eduardo-soares-y39ElnSaZxc-unsplash.jpg)
      center center/cover no-repeat;
    filter: brightness(0.7);
    z-index: -1;
  }
}
