/** Inspiration 
https://www.myresponsee.com/bricker-premium/
https://www.myresponsee.com/bricker-premium/elements.html
https://www.myresponsee.com/bricker-premium/js/template-scripts.js
https://www.myresponsee.com/bricker-premium/typography.html



site:codepen.io hover zoom
*/
/* Styles par défaut (utilisés sur tous les appareils) */
/* @media (min-width: 481px){} ==> Media query pour les écrans de plus de 481px de large ( grands smartphones) */
/* @media (min-width: 768px){} ==> Media query pour les écrans de plus de 768px de large (tablettes et ordinateurs) */
/* @media (min-width: 1024px){} ==> Media query pour les écrans de plus de 1024px de large (ordinateurs) */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  overflow-x: hidden;
  overflow-y: scroll;
  background-color: #191c23;
  background-image: url('/assets/img/pexels-adrien-olichon-1257089-2387793.jpg');
  /* Image de fond */
  background-size: cover;
  /* Couvre tout l'écran */
  background-position: center;
  /* Centrage de l'image */
  background-attachment: fixed;
  /* Effet de parallaxe */
  height: 100vh;
  /* Assure que le body occupe toute la hauteur du viewport */
  margin: 0;
}
header {
  width: 100vw;
  display: flex;
}
nav {
  width: 100vw;
  height: 135px;
  background: #262628;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: fixed;
  z-index: 10;
  transition: all 0.3s;
  padding: 20px 0;
}
nav #brand,
nav #menu,
nav ul {
  display: flex;
  align-items: center;
}
nav #brand {
  padding-left: 40px;
}
nav #brand #logo {
  cursor: pointer;
}
nav #brand #logo img {
  width: 118px;
  height: 95px;
}
nav #brand #word-mark {
  margin-left: 20px;
  opacity: 1;
}
nav #brand #word-mark a {
  text-transform: uppercase;
  width: 220px;
  font-family: "Barlow", sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  display: block;
  color: #fff;
  text-decoration: none;
}
nav #brand #word-mark a p {
  font-weight: 400;
  font-size: 11px;
}
nav #menu {
  justify-content: flex-end;
  padding-right: 40px;
}
nav #menu #menu-toggle {
  display: flex;
  width: 55px;
  height: 55px;
  background: #ba2221;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
}
nav #menu #menu-toggle .bar {
  width: 25px;
  height: 2px;
  background: #fff;
  transition: 0.3s ease-in-out;
}
nav #menu #menu-toggle .bar:nth-child(2) {
  width: 20px;
  margin: 5px 0;
}
nav #menu #menu-toggle .bar:last-child {
  width: 15px;
}
nav #menu #menu-toggle.closeMenu .bar {
  width: 25px;
}
nav #menu #menu-toggle.closeMenu .bar:first-child {
  transform: translateY(7px) rotate(45deg);
}
nav #menu #menu-toggle.closeMenu .bar.bar:nth-child(2) {
  transform: scale(0);
}
nav #menu #menu-toggle.closeMenu .bar:last-child {
  transform: translateY(-7px) rotate(-45deg);
}
@media (min-width: 768px) {
  nav #menu #menu-toggle {
    display: none;
  }
}
nav #menu ul {
  padding-left: 0px;
  display: inline-block;
  width: 100vw;
  height: 0;
  background: rgba(0, 0, 0, 0.9);
  position: absolute;
  top: 160px;
  transform: translate();
  transition: all 0.3s;
  margin: -25px -40px;
}
@media (min-width: 768px) {
  nav #menu ul {
    display: flex;
    width: auto;
    height: auto;
    background: none;
    position: static;
    top: 0px;
    margin: 0;
  }
}
nav #menu ul li {
  margin: 0 -20px;
  width: 100vw;
  list-style: none;
  height: 10%;
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 768px) {
  nav #menu ul li {
    margin: 0;
    width: auto;
    height: auto;
    opacity: 1;
    visibility: visible;
  }
}
@media (min-width: 860px) {
  nav #menu ul li {
    margin: 0 0 0 16px;
  }
}
nav #menu ul li a {
  font-family: "Barlow", sans-serif;
  font-size: 35px;
  font-weight: 500;
  font-style: normal;
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 10px 15px 15px 15px;
  transition: background-color 0.3s ease;
}
nav #menu ul li a:hover {
  background: #ba2221;
}
@media (min-width: 768px) {
  nav #menu ul li a {
    font-size: 18px;
    padding: 10px 15px;
  }
}
nav #menu ul.showMenu {
  height: 100vh;
  padding-top: 50px;
}
nav #menu ul.showMenu li {
  opacity: 1;
  visibility: visible;
  float: left;
  transition: all 0.3s 0.1s;
  text-align: center;
}
nav.navShadow {
  box-shadow: 0 4px 30px -5px rgba(0, 0, 0, 0.2);
  height: 100px;
}
nav.navShadow #brand #logo img {
  width: 68px;
  height: 55px;
  transition: background-color 0.3s ease;
}
nav.navShadow #brand #word-mark {
  opacity: 0;
}
footer .cta {
  margin-top: 20px;
}
footer .cta .bloc {
  font-family: "Barlow", sans-serif;
  padding: 30px;
  color: #fff;
  text-align: right;
}
footer .cta .bloc.bloc-1 {
  background: #C81010;
}
footer .cta .bloc.bloc-1 h3 {
  font-size: 20px;
}
footer .cta .bloc.bloc-1 p {
  color: rgba(255, 255, 255, 0.75);
}
footer .cta .bloc.bloc-2 {
  background: #fff;
  padding: 30px 20px;
}
footer .cta .bloc.bloc-2 a {
  color: #fff;
  background: #C81010;
  padding: 10px 15px;
  text-decoration: none;
  font-size: 15px;
  margin-top: 20px;
  transition: 0.3s;
}
footer .cta .bloc.bloc-2 a:hover {
  color: #000;
  background: #fff;
}
@media (min-width: 768px) {
  footer .cta .bloc.bloc-2 a {
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  footer .cta .bloc.bloc-2 a {
    font-size: 17px;
  }
}
footer .follow {
  margin-top: 20px;
}
footer .follow .bloc {
  font-family: "Barlow", sans-serif;
  padding: 30px;
  color: #fff;
  text-align: right;
  margin-bottom: 20px;
}
footer .follow .bloc.bloc-1 {
  background: #002633;
}
footer .follow .bloc.bloc-1 h3 {
  font-size: 25px;
  text-transform: uppercase;
}
footer .follow .bloc.bloc-1 p {
  color: rgba(255, 255, 255, 0.75);
}
footer .follow a {
  text-decoration: none;
  display: inline-grid !important;
  padding: 30px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  footer .follow a {
    margin-bottom: 0;
  }
}
footer .follow a.facebook {
  background: #3b5998 none repeat scroll 0 0;
}
@media (min-width: 481px) {
  footer .follow a.facebook {
    margin-right: 10px;
  }
}
@media (min-width: 768px) {
  footer .follow a.facebook {
    margin: 0 0 20px 20px;
  }
}
footer .follow a.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
@media (min-width: 481px) {
  footer .follow a.instagram {
    margin-left: 10px;
  }
}
@media (min-width: 768px) {
  footer .follow a.instagram {
    margin: 0 0 20px 20px;
  }
}
footer .follow a.linkedin {
  background: #007bb5 none repeat scroll 0 0;
}
@media (min-width: 481px) {
  footer .follow a.linkedin {
    margin-right: 10px;
  }
}
@media (min-width: 768px) {
  footer .follow a.linkedin {
    margin: 0 0 20px 20px;
  }
}
footer .follow a i {
  display: block;
  justify-self: center;
  margin: auto;
  grid-column: 1 / -1;
  font-size: 60px;
  color: #fff;
  float: none;
}
footer .footer .bloc-image {
  position: relative;
  min-height: 300px;
  margin-bottom: 15px;
}
footer .footer .bloc-image div {
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -2;
}
footer .footer .bloc {
  font-family: "Barlow", sans-serif;
  padding: 30px;
  color: #fff;
  text-align: right;
  margin-bottom: 15px;
  background: #002633;
}
footer .footer .bloc h2 {
  font-size: 25px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
footer .footer .bloc p {
  color: #7697A2;
  font-size: 15px;
}
footer .footer .bloc p b {
  color: #ffffff;
  font-weight: 400;
}
@media (min-width: 481px) {
  footer .footer .bloc.bloc-1 {
    margin-left: 20px;
  }
}
@media (min-width: 481px) {
  footer .footer .bloc.bloc-2 {
    margin-left: 20px;
  }
}
@media (min-width: 481px) {
  footer .footer .bloc.bloc-3 {
    margin-left: 20px;
  }
}
footer .footer .bloc.bloc-3 a {
  text-decoration: none;
  color: #7697A2;
}
footer .footer .bloc.bloc-bottom {
  background: none;
  text-align: center;
  padding: 0;
}
@media (min-width: 768px) {
  footer .footer .bloc.bloc-bottom {
    width: 100%;
  }
}
footer .footer .bloc.bloc-bottom ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
footer .footer .bloc.bloc-bottom ul.villes li,
footer .footer .bloc.bloc-bottom ul.links li {
  display: inline-block;
  margin: 0 3px;
}
footer .footer .bloc.bloc-bottom ul.villes li:after,
footer .footer .bloc.bloc-bottom ul.links li:after {
  padding-left: 10px;
  font-size: 11px;
}
footer .footer .bloc.bloc-bottom ul.villes li:last-child::after,
footer .footer .bloc.bloc-bottom ul.links li:last-child::after {
  content: '';
}
footer .footer .bloc.bloc-bottom ul.villes li:after {
  content: "-";
}
footer .footer .bloc.bloc-bottom ul.links li:after {
  content: "|";
}
footer .footer .bloc.bloc-bottom p {
  color: #999;
  font-size: 13px;
  margin: 15px auto;
}
footer .footer .bloc.bloc-bottom p.villes {
  max-width: 70%;
}
footer .footer .bloc.bloc-bottom p.villes a {
  margin-bottom: 5px;
}
footer .footer .bloc.bloc-bottom a {
  color: #fff;
  margin: 0 5px;
  font-size: 13px;
  text-decoration: none;
}
/* Media query pour les écrans de plus de 768px de large (tablettes et ordinateurs) */
/* Media query pour les écrans de plus de 964px de large (tablettes et ordinateurs) */
@media (min-width: 964px) {
  #brand #word-mark a {
    font-size: 25px;
  }
  #brand #word-mark a p {
    font-size: 13px;
  }
}
.zoom-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.zoom-hover:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  /* Ajoute une ombre légère sur hover */
  z-index: 1;
}
.background-parallax-container {
  position: relative !important;
  z-index: 0;
  overflow: hidden;
}
.background-parallax {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -2;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.background-parallax::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  /* Une superposition noire avec 50% d'opacité */
  z-index: 1;
  /* Place la superposition au-dessus de l'image */
}
