@charset "UTF-8";
/* Exemple, pour un bloc avec 4 colonnes et un gap de 25px, on l'appel de cette manière : @include columnWithGap(4,25px);
*/
body {
  margin: 0;
  font-size: 16px;
  line-height: 22px;
  background-color: #f2f2f2;
}

body,
button,
header,
input,
select,
textarea {
  font-family: "Montserrat", sans-serif;
}

a {
  color: #B07635;
  text-decoration: none;
  outline: 0;
  transition: all 0.3s ease-out !important;
}

a:hover {
  color: #1d1d1b;
}

p {
  margin: 0 auto;
}

/*TITRES*/
h1 {
  font-size: 30px;
  line-height: 32px;
  margin: 25px auto 30px;
  color: #B07635;
  font-weight: 700;
  max-width: 850px;
  width: 95%;
}

h1 strong {
  display: block;
  font-weight: 900;
}

h2 {
  color: #fff;
  text-align: center;
  font-size: 23px;
  line-height: 25px;
  font-weight: bold;
  text-transform: uppercase;
}

::-moz-selection,
::selection {
  background: #1d1d1b;
  color: #fff;
  text-shadow: none;
}

header {
  text-align: center;
  margin: 20px 0px 50px;
}

header img {
  max-width: 350px;
}

#photos {
  display: flex;
  flex-wrap: wrap;
}

#photos .vignette {
  flex: 0 0 calc(100% / 3 - 0px / 3 * (3 - 1));
  position: relative;
  line-height: 0;
}

#photos .vignette h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(29, 29, 27, 0.8);
  padding: 10px;
  width: 80%;
}

#photos .vignette img {
  margin: 0 !important;
  line-height: 0;
  width: 100%;
  height: 350px;
  object-fit: cover;
}

#main {
  width: 100%;
  padding: 50px 0px;
  background-color: #B07635;
}

#main #coordonnees {
  width: 1400px;
  color: #fff;
  margin: 0px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2%;
}

#main #coordonnees > div {
  flex: 0 0 calc(100% / 2 - 2% / 2 * (2 - 1));
}

#main #coordonnees > div:first-child p {
  transform: rotate(-5deg);
  background-color: #fff;
  padding: 20px;
  font-size: 30px;
  color: #1d1d1b;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 900;
}

#main #coordonnees > div:last-child p {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

#main #coordonnees > div:last-child p svg {
  width: 30px;
  height: 30px;
  margin-right: 15px;
}

#main #coordonnees > div:last-child p svg path {
  fill: #fff;
  fill-rule: evenodd;
  stroke-width: 0px;
}

#main #coordonnees > div:last-child p:last-child {
  margin-bottom: 0;
}

footer {
  background-color: #1d1d1b;
  padding: 10px;
}

footer p {
  text-align: center;
  font-size: 14px;
  color: #fff;
}

footer p a {
  font-weight: 700;
  color: #fff;
}

footer p a:hover {
  color: #B07635;
}

@media (max-width: 1400px) {
  #main #coordonnees {
    width: 95%;
  }
}

@media (max-width: 768px) {
  #photos .vignette {
    flex: 0 0 calc(100% / 1 - 0px / 1 * (1 - 1));
  }
  #main #coordonnees > div {
    flex: 0 0 calc(100% / 1 - 0px / 1 * (1 - 1));
    text-align: center;
  }
  #main #coordonnees > div p {
    justify-content: center;
  }
}
