* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* Meilleure gestion des largeurs/paddings */
}

/* Police et lisibilité */
body {
  user-select: none; /* Désactive la sélection de texte */
  -webkit-user-select: none; /* Pour les navigateurs basés sur WebKit */
  -moz-user-select: none; /* Pour Firefox */
  -ms-user-select: none; /* Pour Internet Explorer/Edge */
  font-size: 16px;
  font-family: 'Ruda', sans-serif;
  word-wrap: break-word;
  line-height: 1.6;
  background-color: #fff;
  color: #000;
}

/* Ligne horizontale */
hr {
  border: none;
  border-top: 1px solid rgb(200, 200, 215);
}

/* En-tête avec image de fond */
header {
  background-image: url(images/02/cropped-DSC02871-1-scaled-1-1536x1022.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 20vh;
  width: 100%;
  overflow: hidden;
  z-index: -1;
  position: relative;
}

/* Titre principal */
.titre {
  color: #fff;
  padding: 10% 0 0 4%;
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
}

/* Titre de section */
h2.categorie {
  padding-left: 5%;
  font-size: 26px;
  text-transform: uppercase;
}

/* Menu principal */
menu {
  list-style-type: none;
  overflow: hidden;
  background-color: #fff;
  position: sticky;
  top: 0;
  padding: 12px;
  z-index: 10; /* Plus haut que le header */
}

/* Conteneur du menu */
menu div {
  padding-left: 10%;
  display: flex;
  flex-wrap: wrap;
  overflow: auto;
  gap: 8px;
}

/* Éléments de menu */
menu div li {
  display: inline-block;
}

/* Liens de menu */
menu div li a {
  display: block;
  color: rgb(67, 65, 76);
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}

menu div li a:hover {
  color: rgb(200, 200, 215);
}

.selectionne {
  color: rgb(132, 127, 143);
}

/* Galerie */
.galerie {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

/* Lien vers une galerie */
.lienGalerie {
  width: 46%;
  text-decoration: none;
  color: white;
  display: block;
  margin: 20px;
  font-size: 36px;
}

/* Bloc image galerie */
.divGalerie {
  height: 400px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.divGalerie:hover {
  transform: scale(1.1);
}

/* Titre dans la galerie */
.titreGalerie {
  text-align: center;
  color: white;
  text-decoration: none;
  text-shadow: 3px 4px 3px #000000;
}

/* Responsive galerie */
@media (max-width: 768px) {
  .lienGalerie {
    width: 100%;
  }
}

/* Pied de page */
footer {
  margin-left: 10%;
}

/* Icônes dans le pied de page */
footer div div img {
  display: block;
  float: left;
  margin: 10px;
  height: 3%;
  width: 3%;
  transition: 0.5s;
}

footer div div img:hover {
  filter: opacity(0.5);
}