

.picture {
    height: 400px;
    /* mettre dessin d'un genre pirate/chapeau qui tire avec fusil de pirate (vieux fusil) avec un coin de sourir avec une bulle distant genre I got you in my sight !*/
     background-image: url('utils/otherlastheader.jpg');

     /* overflow: hidden; */
    
} 

.nav-bar a.active {
  border-bottom:  solid 2px rgb(30, 76, 185);

  position: relative;
}

.nav-bar a.active::after{
  border-color: transparent transparent rgb(30, 76, 185) transparent; /* Couleur du triangle */
}

/* .picture img {
  width: 100%;
  height: auto;
  object-fit: contain;
} */

.search {
  position: absolute;
  top: 20%;
  left: 65%;
  /* width: 15%; */
  color: white;
}

.index-home-layout h2{
  font-family: Verdana;
  font-size: 25px;
  padding-top: 1em;
}

.news-title {
    padding-left: 30px;
    padding-bottom: 30px;
    padding-top: 30px;
  }
  
  .news-title h2{
    font-size: 50px;
    color:rgb(0, 0, 0);
    font-family: Verdana;
    letter-spacing: 5px;
  }
  
  .card {
    box-shadow: 0 0.2rem 1.2rem rgba(0,0,0,0.2);
    background-color: #fff;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 20px;
  }
  
  .card img {
    object-fit: cover;
    width: 100%;
    height: 400px;

    transition: transform 0.5s ease-in-out;
    transform: scale(1);
    
  }
  
  .card:hover img {
    cursor: pointer;
    /* transition: transform 0.5s; */
    transform: scale(1.05);
  }
  
  .text-child {
    position: absolute;
    bottom: 10%;
    left: 10%;
    color: rgb(229, 228, 228);
  }
  
  .text-child h2 {
    font-family: Arial;
    letter-spacing: 5px;
  }
  
  .undertext-child {
    background-color: rgb(220, 28, 28);
    border-radius: 5px;
    width: 80px;
    text-align: center;
  }
  
  .undertext-child p {
    padding: 7px;
    font-family: Verdana;
    font-size: 15px;
    font-family: Arial;
    font-weight: bold;
    letter-spacing: 3px;
  }
  

  .green-line {
    height:2px;
    background-color:rgb(109, 158, 86);
    width:100%;
    margin-bottom: 50px;
  }

  .row-social-media {
    background: rgb(113,193,230);
    background: radial-gradient(circle, rgba(113,193,230,0.1922969871542367) 0%, rgba(7,165,204,0.7077031496192228) 4%, rgba(201,255,156,1) 100%);
  }

  .social-media {
    text-align: center;
    padding: 50px;
  }

  .social-media h2 {
    font-family: Verdana;
    font-size: 30px;
  }

  .social-media p {
    font-size: 20px;
  }

  .links a  {
    display: inline-block;
    margin: 5rem;
    text-decoration: none;
    color: black;
  }

  .links a > p {
    font-size: 25px;
  }

  .links a > i {
    font-size: 40px;
    padding-bottom: 20px;
  }

  @media screen and (max-width: 700px) {
    .picture {
      height: 200px;
      /* mettre dessin d'un genre pirate/chapeau qui tire avec fusil de pirate (vieux fusil) avec un coin de sourir avec une bulle distant genre I got you in my sight !*/
       background-image: url('utils/otherlastheaderphone.jpg');
  
       /* overflow: hidden; */
    } 

  }

  .list-container {
    max-width: 500px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Cible uniquement le titre dans .list-container */
.list-container h2 {
    color: #333;
    text-align: center;
}

/* Cible uniquement la liste */
.list-container ul {
    list-style-type: "⭐ "; /* Ajoute une icône avant chaque élément */
    padding: 0;
}

.list-container li {
    margin: 10px 0;
}

/* Cible uniquement les liens dans .list-container */
.list-container a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.list-container a:hover {
    color: #ff4500;
}

  