/** ADD YOUR AWESOME CODES HERE **/

  body {
 
    font-family: 'Poppins', sans-serif;
  
  
  } 
  
/* style concercant la partie pedagogie*/

.feature-box {
  padding: 20px;
  text-align: left;
  border-radius: 5px;
}
.bg-gray {
  background-color: #f0f0f0; /* Fond gris clair */
}
.feature-icon {
  font-size: 40px;
  color: #ecdb07; /* Couleur jaune */
  margin-bottom: 10px;
}

.show-more{
  margin-left: 985px;
}

/* style de la partie evenement*/
.event-container {
    position: relative;
    border-radius: 20px;
    background-image: url('../images/istockphoto-1571704743-1024x1024.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    width: 100%;
    max-width: 400px;
    overflow: hidden;
  }

  .event-text {
    position: absolute;
    left: 20px;
    right: 10px;
    bottom: 10px;
    display: flex;
    justify-content: space-between;
    color: white;
    font-weight: 600;    
  }

/*.event-text div {
    background-color: white;
    margin: 3pX;
    border-radius: 5px;
    font-weight: bold;
  }
*/

  .event-date {
    font-size: 16px;
  }

  .event-status {
    font-size: 16px;
  }

  .event-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 0 10px;
  }

  .event-location {
    font-size: 20px;
  }

  .register-btn button {
    font-size: 16px;
    padding: 8px 16px;
    border: 1x solid rgb(221, 221, 226);
    background: rgb(221, 221, 226);
    color: blue ;
    border: none;
    border-radius: 5px;
  }

 /* .voir-plus-btn {
    text-align: right;
    border: none;
    margin-top: 20px;
  }*/

  .styled-button {
    align-items: center;
    justify-content: center;
    padding: 5px;
    background-color: rgb(59, 59, 59); /* Couleur de fond */
    color: #fff; /* Couleur du texte */
    font-size: 15px;
    text-decoration: none;


}

.styled-button i {
    margin-right: 10px; /* Espacement entre l'icône et le texte */
}

.styled-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 35;
}

.styled-button:hover {
    background-color:#0b1da5; /* Couleur de fond au survol */
    color: white;
}

.styled-button:active {
    transform: translateY(2px); /* Effet de clic */
    box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.2);
}
.btn-decouvrir {
  border: 1px solid transparent; 
  border-radius: 50px;
  padding: 10px; 
  font-weight: 600; 
  text-decoration: none; 
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.btn-decouvrir:hover {
  background-color:#0b1da5;
  opacity: 0.8;
  color: #fff; 
  text-decoration: none;
}

.btn-decouvrir i {
  margin-left: 5px; 
}
  

  /*la style de la partie resume des autres rubriques*/

  /* p {
    text-align: center;
    color: #555;
} */

/* Style des cercles */
.icon-box {
    text-align: center;
    margin: 30px 0;
}

.icon-box .icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 0 auto 15px auto;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Icônes */
.icon-box i {
    font-size: 40px;
    color: #ecdb07;
    transition: color 0.3s ease;
}

/* Effet hover */
.icon-box .icon-circle:hover {
    background-color: #0b1da5;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.icon-box .icon-circle:hover i {
    color: #fff;
}

/* Effet clic */
.icon-box .icon-circle:active {
    background-color: #002855;
    transform: scale(0.95);
}


