body {
    font-family: 'Inria Serif', serif;
    background-color: #ece5cc;
    color: #252323;
    margin: 0;
    padding: 20px;
  }
  
  h1 {
    text-align: center;
    color: #5c483a;
    margin-bottom: 40px;
    font-size: 2.5em;
  }
  
  .galerie {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .carte-oeuvre {
    width: 220px;
    background-color: #fff8ee;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    padding: 10px;
    text-align: center;
    transition: transform 0.2s ease;
  }
  
  .carte-oeuvre:hover {
    transform: scale(1.02);
  }
  
  .carte-oeuvre img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
  }
  
  .carte-oeuvre h3 {
    color: #5c483a;
    font-size: 1.2em;
    margin: 10px 0 5px;
  }
  
  .carte-oeuvre a {
    text-decoration: none;
    color: #5a473a;
    font-weight: bold;
  }
  
  .carte-oeuvre a:hover {
    text-decoration: underline;
    color: #3d3027;
  }
  
  .carte-oeuvre p {
    margin: 5px 0;
    color: #7a695b;
    font-size: 0.95em;
  }
  
  a.index {
    display: block;
    text-align: center;
    margin: 40px auto 20px;
    font-size: 1.1em;
    color: #5a473a;
    text-decoration: none;
    font-weight: bold;
  }
  
  a.index:hover {
    color: #3d3027;
    text-decoration: underline;
  }

  .filtre-formulaire {
    background-color: #fff8ee;
    border-radius: 16px;
    padding: 20px 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
  }
  
  .filtre-champ {
    display: flex;
    flex-direction: column;
    flex: 1 1 200px;
    min-width: 200px;
  }
  
  .filtre-champ label {
    font-weight: bold;
    margin-bottom: 6px;
    color: #5c483a;
  }
  
  .filtre-champ input,
  .filtre-champ select {
    padding: 8px 12px;
    border: 1px solid #d6c6b3;
    border-radius: 8px;
    background-color: #fffdf7;
    color: #3d3027;
    font-family: 'Inria Serif', serif;
    font-size: 0.95em;
  }
  
  .filtre-champ input::placeholder {
    color: #a59c91;
  }
  
  .filtre-actions {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    margin-top: 10px;
  }
  
  .btn-filtrer {
    padding: 10px 20px;
    background-color: #5c483a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-family: 'Inria Serif', serif;
    transition: background-color 0.3s ease;
  }
  
  .btn-filtrer:hover {
    background-color: #3d3027;
  }
  
  .btn-reset {
    padding: 10px 20px;
    background-color: transparent;
    border: 2px solid #5c483a;
    color: #5c483a;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
  }
  
  .btn-reset:hover {
    background-color: #ece5cc;
    color: #3d3027;
    border-color: #3d3027;
  }
  
  .btn-filtrer {
  padding: 12px 26px;
  font-size: 1em;
  min-width: 180px; 
  text-align: center;
}
