/*
Author: Silas
*/
body {
  overflow-x: hidden;  /* Bloque le scroll horizontal */
  margin: 0;
  background-color: #F1E8D9;
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif
}
body.menu-open {
  overflow: hidden;
}
.site-header {
  background-color: #574002;
  color: rgb(255, 239, 216);
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 0;
  left: 0;
  z-index: 1000;
}
.site-name a {
  text-decoration: underline;
  color: inherit;
  cursor: pointer;
  font-size: clamp(8px, 4vw, 26px);
}
.site-name a:hover {
  color: rgb(255, 255, 255);
}
.site-tagline {
  font-size: clamp(8px, 4vw, 26px);
  color: inherit;
  margin-left: 20px;
  font-weight: bold;
}
.site-name {
  margin-left: 20px;
}
.site-header .language {
  display: flex;
}
.site-header .language a {
  display: flex;
  margin-right: 26px;
  margin-top: 2px;
  width: 20px;
  height: 21px;
}
.site-header .language .hamburger-menu {
	display: flex;
	flex-direction: column;
	gap: 5px;
  margin-right: 9px;
	margin-top: 3px;
	cursor: pointer;
}
.site-header .language .hamburger-menu span {
	height: 3px;
	width: 25px;
	background-color: #FAF7F0;
	border-radius: 2px;
}
.side-menu {
  position: fixed;
  top: 0;
  right: -350px;
  width: 300px;
  height: 100vh;
  height: 100dvh;
  bottom: 0;
  background-color: #f1d9d9;
  background: rgba(241, 232, 217, 0.75);
  color: rgb(255, 239, 216);
  z-index: 9999;
  transition: right 0.3s ease;
  padding: 20px;
  overflow-y: auto;
  backdrop-filter: blur(4px);
}
.side-menu.active {
  right: 0;
}
.close-menu {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2E4F3D;
  font-size: 24px;
  cursor: pointer;
  transition: 0.2s ease;
}
.side-menu .menu-title {
	margin-top: 22px;
	display: flex;
	color: #8d7c5e;
	justify-content: center;
  text-decoration: underline;
}
.side-menu .menu-title p{
  margin-top: 32px;
	font-size: 30px;
  font-weight: bold;
}
.side-menu a {
  font-size: 28px;
  font-weight: 600;
  text-decoration: underline;
  display: flex;
  color: #8d7c5e;
  margin-bottom: 25px;
}
.side-menu a:hover {
  color: #000000;
  transform: translateX(5px);
  transition: 0.2s ease;
}
.side-menu p {
  font-size: 16px;
  margin-top: 4px;
  color: #8d7c5e;
}
.side-menu .a-propos-link {
	margin-top: 100px;
}
.side-menu .marche-link, .side-menu .galerie-link, .side-menu .contact-link {
	margin-top: 64px;
}
.site-footer {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: row;
  background-color: #6b5c35;
  color: white;
  width: 100%;
  flex-wrap: wrap;
  padding: 40px 20px;
  gap: 60px;
  box-sizing: border-box;
}

.site-footer a {
  color: white;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #efe1cb;
}

.site-footer .footer-nav {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  margin: 0;
  min-width: 150px;
}

.site-footer .footer-nav h3 {
  font-size: 22px;
  font-weight: bold;
  margin: 0 0 10px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 8px;
}

.site-footer .footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer .footer-nav li {
  color: white;
  margin: 0;
  padding: 0;
}

.site-footer .footer-nav li a {
  color: white;
  text-decoration: underline;
}

.site-footer .contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  margin: 0;
  min-width: 150px;
}

.site-footer .contact h3 {
  font-size: 22px;
  font-weight: bold;
  margin: 0 0 10px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 8px;
}

.site-footer .contact p {
  margin: 0;
  font-size: 14px;
}

.site-footer .contact a {
  color: white;
  text-decoration: underline;
}

.footer-nav, .footer-contact {
  display: flex;
  flex-direction: column;
}

.site-footer-licence {
  background-color: #574002;
  color: white;
  height: 50px;
  width: 100%;
  top: 0;
  left: 0;
}
.site-footer-licence p {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin: 0;
}
@media (max-width: 1600px) {
  .site-footer .footer-nav,
  .site-footer .contact {
    margin: 0;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .site-header {
    flex-direction: row;
    justify-content: space-between;
    height: 80px;
    padding: 0 2px;
  }

  .site-name {
    font-size: 24px;
    margin-left: 7px;
  }

  .site-header .language a {
    margin-right: 18px;
    width: 18px;
    height: 16px;
    margin-top: 4px;
  }

  .side-menu {
    width: 93%;
    right: -107%;
  }

  .side-menu.active {
    right: 0;
  }

  .side-menu .menu-title {
	margin-top: 0;
  }

  .side-menu .a-propos-link {
	margin-top: 55px;
  }

  .site-footer {
    gap: 40px;
    padding: 30px 15px;
  }
}
@media (max-width: 400px) {
  .site-footer {
    gap: 30px;
    padding: 20px 10px;
  }
}

@media (max-width: 350px) {
  .site-footer {
    gap: 20px;
    padding: 20px 10px;
  }
  
  .site-footer .footer-nav,
  .site-footer .contact {
    min-width: 120px;
  }
}

@media (max-width: 330px) {
  .site-footer {
    gap: 15px;
  }
}