

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300&display=swap');

*{
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

body{
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(medias/fondtrop2.jpg);
    height: 100%;
    margin: 0;
    padding: 0;
  }




  h2{
    color: #4a4a4a;
    font-size: 1.3rem;
  }


  h1 {
    text-align: center;
    color: #006600;
  }
  .container {
    max-width: 1050px;
    margin: 0 auto;
    background-color: rgba(16, 16, 16, 0.515);
    padding: 20px;
    margin-top: 20px;
    border-radius: 20px;
    margin-bottom: 100px;
    min-height: 50vh;
  }
  
.titre{
  color: white;
}
  
  .activite {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background-color: rgb(243, 243, 243);
    padding: 15px;
    border-radius: 20px;
  }
  .activite img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    margin-right: 20px;
    border-radius: 10px;
    margin-left: 10px;
  }
  .activite h2 {
    margin: 0;
    margin-top: 10px;
  }
  .activite p {
    font-size: 14px;
    color: #333333;
    margin-top: 0;
    margin-bottom: 0;
  }



  .home-button {
    position: absolute;
    top: 500px;
    left: 10px;
    width: 50px;
    height: 50px;
    border: none;
    background: none;
  }
  
  .home-button img {
    width: 100%;
    height: 100%;
    margin-left: 40px;
    margin-top: 20px;
    
  }
  
  




  .header {
    position: relative;
    width: 70%;
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 20px 0; 
    background-color: #0d0d0d64;
    -webkit-backdrop-filter: blur(10px); 
    backdrop-filter: blur(10px);
    border-radius: 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 100;
    margin-top: 30px;
}




.logo{
    font-size: 1.6rem;
    color: #ededed;
    text-decoration: none;
    font-weight: 600;
}


.navbar a {
    font-size: 1.1rem;
    color: #ededed;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    transition: .3s;
}

.navbar a:hover,
.navbar a.active{
    color: #46b46e;
}


:focus-visible {
  outline: 3px solid #005fcc;
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px dashed #ffba08;
  outline-offset: 4px;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  border: 2px solid #00b5ad;
  outline: none;
  box-shadow: 0 0 3px 2px rgba(0, 181, 173, 0.75);
}

.custom-focus:focus-visible {
  outline: 2px dashed #f39c12;
  outline-offset: 3px;
}



/* Style du prix */
.prix { 
  font-weight: bold;
  color: green;
  position: relative;
  top: 15px;
}

/* Style du bouton */
.bouton {
  padding: 11px 20px;
  border: none;
  text-decoration: none;
  border-radius: 10px;
  background-color: blue;
  color: white;
  cursor: pointer;
  transition: transform 0.3s;
  position: relative;
  left: 300px;
  bottom: 10px;
  width: 100px;
}






/* Search */


.searchTerm{
  max-width: 150px;
  border: 0px solid #006600;
  padding: 15px;
  height: 20px;
  border-radius: 10px;
  outline: none;
  color: #272727;
  margin-right: 10px;
  box-shadow: 0 0 5px 2px rgba(255, 255, 255, 0.2); 
}



/* Animation scroll */

.reveal {
  opacity: 0;
  transform: translateY(-30px);
}

.reveal-visible{
  opacity: 1;
  transform: translateY(0);
  transition: 1s cubic-bezier(.5, 0, 0, 1);
}


.triprix {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(16, 16, 16, 0.515);
  padding: 5px;
  width: 200px;
  border-radius: 20px;
  margin-top: 20px;
}
.triprix select{
  max-width: 100px;
  margin-left: 10px;

}

.skip {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip:focus {
  position: static;
  width: auto;
  height: auto;
}



/* FOOTER FOOTER FOOTER */
.footer {
  position: relative;
  background-color: #333;
  color: #fff;
  padding: 30px 0;
  font-size: 0.9rem;
}

.footer .footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer .footer-content .footer-section {
  width: 30%;
}

.footer .footer-content .footer-section h2 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: white;
}

.footer .footer-content .footer-section p {
  line-height: 1.6;
}

.footer .footer-content .footer-section ul {
  list-style: none;
  padding: 0;
}

.footer .footer-content .footer-section ul li {
  margin-bottom: 5px;
}

.footer .footer-content .footer-section ul li a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s;
}

.footer .footer-content .footer-section ul li a:hover {
  color: #ffd700;
}

.footer .footer-bottom {
  background-color: #222;
  padding: 10px 0;
  text-align: center;
  font-size: 0.8rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}