#contenu {
  width: 90%;
  margin-left: 5%;
  background-color: transparent;
}
#entete {
  width: 95%;
  background-repeat: no-repeat;
  background-position: center top;
  text-align: center;
  line-height: 0;
  padding: 0;
  margin: 0 0 15px 0;
}
#menu {
  width: 75%;
  margin-left: 10%;
}
h1, p {
  text-align: center;
}
#texte {
  background: rgba(23,114,0,0.3);
  margin-bottom: 0px;
}
#pied {
  background: rgba(23,114,0,0.3);
  margin-top: 0px;
  text-align: right;
  color: black;
  font-style: italic;
}
a[href="#haut"] {
  display: block;
  text-align: center;
  margin: 20px auto;
  color: #A07840;
  text-decoration: none;
  font-size: 14px;
}

a[href="#haut"]:hover {
  text-decoration: underline;
}
.bannière {
  width: 100%;
  display: block;
}
.video-centre {
    text-align: center;
    margin: 20px 0;
}
.video-taille {
  width: 560px;
  height: 315px;
}

#formulaire {
  width: 500px;
  margin: 30px auto;
  padding: 20px;
}

#formulaire h2 {
  text-align: center;
  margin-bottom: 20px;
}

#formulaire label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

#formulaire input,
#formulaire textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#formulaire input[type="submit"],
#formulaire input[type="reset"] {
  width: auto;
  margin-top: 15px;
  margin-right: 10px;
  padding: 8px 20px;
  background-color: #A07840;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#formulaire input[type="submit"]:hover,
#formulaire input[type="reset"]:hover {
  background-color: #7A5820;
}
#sitemap {
    width: 60%;
    margin: 40px auto;
    font-family: 'Open Sans', sans-serif;
}

#sitemap h2 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 30px;
    color: #A07840;
    border-bottom: 2px solid #A07840;
    padding-bottom: 10px;
}

#sitemap ul {
    list-style: none;
    padding-left: 0;
}

#sitemap ul li {
    margin: 10px 0;
    font-size: 15px;
}

#sitemap ul li a {
    text-decoration: none;
    color: #333;
}

#sitemap ul li a:hover {
    color: #A07840;
    text-decoration: underline;
}

#sitemap ul li::before {
    content: "📄 ";
}

#sitemap ul ul {
    padding-left: 30px;
    margin-top: 5px;
}

#sitemap ul ul li::before {
    content: "📁 ";
}

#sitemap ul ul ul li::before {
    content: "➤ ";
}
#galerie {
    width: 80%;
    margin: 40px auto;
}

#galerie h2 {
    text-align: center;
    font-size: 22px;
    color: #A07840;
    border-bottom: 2px solid #A07840;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.grille-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.photo-item {
    text-align: center;
}

.photo-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid #ccc;
}

.photo-item img:hover {
    border-color: #A07840;
    opacity: 0.85;
}

.photo-item p {
    margin-top: 8px;
    font-size: 14px;
    color: #555;
    font-style: italic;
}