/* Styles spécifiques à la page des événements */

/* Style global */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* En-tête */
  header {
    background: #000;
    color: #fff;
    padding: 10px 0;
  }
  
  header .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  header nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    margin: 0;
  }
  
  header nav ul li {
    margin-left: 20px;
  }
  
  header nav ul li a {
    text-decoration: none;
    color: #fff;
    padding: 5px 10px;
  }
  
  header nav ul li a.active {
    background: #f90;
    border-radius: 5px;
  }
  
  /* Section Héro */
  .hero-small {
    background: url('hero-small.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
  }
  
  .hero-small h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  /* Filtres */
  .filters {
    background: #f4f4f4;
    padding: 20px 0;
    text-align: center;
  }
  
  .filters h2 {
    margin-bottom: 15px;
  }
  
  .filters form {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .filters form input,
  .filters form select {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .filters form button {
    padding: 10px 20px;
    font-size: 1rem;
    background: #f90;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  /* Liste des événements */
  .evenements {
    padding: 50px 0;
  }
  
  .evenement-card {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
  }
  
  .evenement-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
  }
  
  .evenement-card h3 {
    font-size: 1.2rem;
    margin: 10px;
  }
  
  .evenement-card p {
    margin: 0 10px 10px;
    color: #666;
  }
  
  .evenement-card .btn {
    display: block;
    text-align: center;
    text-decoration: none;
    background: #f90;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    margin: 10px;
    transition: background 0.3s;
  }
  
  .evenement-card .btn:hover {
    background: #e58b00;
  }
  
  /* Pied de page */
  footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 20px 0;
  }
  