body {
    position: relative;
    margin: 0;
    padding: 0;
    height: 100vh;
    background-image: url('/img/background1.jfif'); /* Replace 'path/to/your/image.jpg' with the actual path to your image */
    background-size: cover; /* Ensures the image covers the entire background */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    /* You can add more styles as needed */
}
.parent-container {
  position: relative;
}

.overlay {
    
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.80); /* Transparent white overlay */
    z-index: 1; /* Ensure the overlay is above the background image */
}

header
{
  background-color: rgba(255, 255, 255, 0.60);
}

footer
{
  background-color: rgba(70, 155, 212, 0.60);
  padding: 20px 0;
}

#filters {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
  }

#filters li {
    cursor: pointer;
    margin: 0 10px;
    padding: 8px 16px;
    border: 1px solid #ccc;
    border-radius: 20px;
    transition: all 0.3s ease;
  }

#filters li:hover {
    background-color: #f8f9fa;
}

#filters .filter-active:hover {
    background-color: rgba(70, 155, 212, 0.6);
}

#filters .filter-active {
    background-color: #469bd4;
    color: #fff;
  }
.titre
  {
    margin-left: 10px; 
    font-weight: bold; 
  }
.slogan
  {
    font-weight: bold; 
  }
.navbar-nav .nav-link.active {
    color: rgba(70, 155, 212);;
    border-bottom: 2px solid rgba(70, 155, 212);;
}
.condition
{
  padding-top: 50px;
}
