@font-face {
  font-family: "Bebas Neue";
  src: url("../assets/fonts/BebasNeue-Regular.woff2") format("woff2"), url("../assets/fonts/BebasNeue-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../assets/fonts/DMSans-VariableFont_opsz,wght.woff2") format("woff2"), url("../assets/fonts/DMSans-VariableFont_opsz,wght.woff") format("woff");
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}
body {
  font: 100% "DM Sans", Helvetica, sans-serif;
  color: #000;
  background-color: #f6f5f4;
  margin: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h1 {
  font-family: "Bebas Neue", Impact, sans-serif;
  color: rgb(223.05, 219.5, 215.95);
}

.drawer-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1000;
}
.drawer-menu__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.drawer-menu__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 400px;
  height: 100%;
  background-color: #f6f5f4;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
}
.drawer-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 2.5rem;
  cursor: pointer;
  color: rgb(177.15, 168.5, 159.85);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}
.drawer-menu__close:hover {
  color: rgb(129.25, 117.5, 105.75);
}
.drawer-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 80px;
}
.drawer-menu__link {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-decoration: none;
  color: rgb(177.15, 168.5, 159.85);
  transition: all 0.3s ease;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  display: inline-block;
}
.drawer-menu__link:hover {
  color: rgb(129.25, 117.5, 105.75);
  border-bottom-color: rgb(129.25, 117.5, 105.75);
  transform: translateX(10px);
}
.drawer-menu.active {
  pointer-events: all;
}
.drawer-menu.active .drawer-menu__overlay {
  opacity: 1;
}
.drawer-menu.active .drawer-menu__content {
  transform: translateX(0);
}

header {
  background-image: url("../assets/img/background_header.jpg");
  height: 100vh;
  background-size: cover;
  background-position: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  header {
    overflow: hidden;
  }
}
header #header-nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  header #header-nav {
    justify-content: space-between;
  }
}
header #header-nav #drawer-button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  height: 50px;
  width: 50px;
}
@media screen and (min-width: 768px) {
  header #header-nav #drawer-button {
    display: none;
  }
}
header #header-nav #drawer-button #drawer-icon__icon {
  width: 24px;
  height: 27px;
}
header #header-nav #occipital-with-logo {
  display: flex;
  gap: 3px;
  align-items: center;
}
header #header-nav #occipital-with-logo__logo {
  height: 50px;
  width: 50px;
  background-color: #f6f5f4;
  border-radius: 50%;
}
header #header-nav #occipital-with-logo #occipital-with-logo__text {
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 4%;
  font-size: 1.5rem;
  color: #f6f5f4;
}
header #header-nav nav {
  display: none;
}
@media screen and (min-width: 768px) {
  header #header-nav nav {
    display: flex;
    font-family: "DM Sans", Helvetica, sans-serif;
    text-decoration: underline;
    letter-spacing: 0.1rem;
  }
  header #header-nav nav {
    font-size: 1.2rem;
  }
  header #header-nav nav {
    gap: 10px;
    text-underline-offset: 5px;
    max-width: 50%;
    flex: 1;
    gap: 10px;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  header #header-nav nav {
    font-size: 1.6rem;
  }
}
header #header-nav nav a {
  color: #f6f5f4;
  text-wrap: nowrap;
}
@media screen and (min-width: 768px) {
  header #header-nav nav a {
    font-size: clamp(0.1rem, 1.7vw, 1.2rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  header #header-nav nav a {
    font-size: clamp(0.1rem, 1.7vw, 1.6rem);
  }
}
header #contenu {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 45px;
}
@media screen and (min-width: 768px) {
  header #contenu {
    gap: 0px;
  }
}
header #contenu__titre-principal {
  font-size: 3.4rem;
}
@media screen and (min-width: 768px) {
  header #contenu__titre-principal {
    font-size: 7.2rem;
  }
}
header #contenu__titre-principal {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 10px;
  text-decoration: underline;
  margin: 0;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  header #contenu__titre-principal {
    text-decoration: none;
  }
}
@media screen and (min-width: 768px) {
  header #contenu__titre-principal::before, header #contenu__titre-principal::after {
    content: "";
    display: inline-block;
    width: 120px;
    height: 4px;
    background-color: white;
    margin: 0 20px 20px 20px;
  }
}
header #contenu__accroche {
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  header #contenu__accroche {
    font-size: 1.6rem;
  }
}
header #contenu__accroche {
  font-family: "DM Sans", Helvetica, sans-serif;
  color: #f6f5f4;
  font-weight: 300;
  margin: 0;
  text-align: center;
}
header #contenu__button {
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  header #contenu__button {
    font-size: 1.6rem;
  }
}
header #contenu__button {
  font-weight: 400;
  height: 65px;
  background-color: transparent;
  border: 2px solid #f6f5f4;
  color: #f6f5f4;
  font-family: "DM Sans", Helvetica, sans-serif;
  width: 100%;
}
@media screen and (min-width: 768px) {
  header #contenu__button {
    max-width: 435px;
    margin: 150px 0 0 0;
  }
}
header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
}

#notre-travail {
  padding: 20px;
}
@media screen and (min-width: 1024px) {
  #notre-travail {
    display: grid;
    grid-template-columns: repeat(20, 1fr);
    grid-template-rows: repeat(20, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: 100%;
    height: 100%;
    grid-area: 1/1/16/13;
    container-type: inline-size;
    padding: 0;
  }
}
#notre-travail__titre {
  font-size: 3.4rem;
}
@media screen and (min-width: 768px) {
  #notre-travail__titre {
    font-size: 7.2rem;
  }
}
#notre-travail__titre {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 100;
  color: #000;
  letter-spacing: 5px;
  width: 100%;
  text-align: center;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  #notre-travail__titre {
    text-align: end;
    justify-content: center;
  }
  #notre-travail__titre {
    font-size: clamp(0.1rem, 9vw, 3.4rem);
  }
  #notre-travail__titre {
    grid-area: 1/3/4/12;
    text-wrap: nowrap;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  #notre-travail__titre {
    font-size: clamp(0.1rem, 9vw, 7.2rem);
  }
}
@media screen and (min-width: 1024px) {
  #notre-travail__contenu {
    display: grid;
    grid-template-columns: subgrid; /* reprend les colonnes du parent */
    grid-column: 1/-1;
    grid-template-rows: subgrid; /* reprend les colonnes du parent */
    grid-row: 1/-1;
  }
}
#notre-travail__contenu__item {
  padding: 0 0 30px 0;
}
@media screen and (min-width: 1024px) {
  #notre-travail__contenu__item {
    padding: 0;
  }
}
#notre-travail__contenu__item img {
  width: 100%;
}
#notre-travail__contenu__item p {
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  #notre-travail__contenu__item p {
    font-size: 1.6rem;
  }
}
#notre-travail__contenu__item p {
  text-decoration: underline;
  color: #000;
  font-weight: 800;
  text-underline-offset: 5px;
  display: inline;
}
@media screen and (min-width: 1024px) {
  #notre-travail__contenu__item p {
    display: flex;
    flex-direction: column;
    border-bottom: 2px solid #000;
    padding-bottom: 8px;
    text-decoration: none;
    text-align: end;
  }
}
@media screen and (min-width: 1024px) {
  #notre-travail__contenu__item:nth-child(1) {
    grid-area: 4/2/10/12;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}
@media screen and (min-width: 1024px) {
  #notre-travail__contenu__item:nth-child(2) {
    grid-area: 2/13/10/20;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}
#notre-travail__contenu__item:nth-child(2) img {
  display: block;
  width: 100%;
  aspect-ratio: 542/329;
  object-fit: cover;
  object-position: 0% 20%;
}
@media screen and (min-width: 1024px) {
  #notre-travail__contenu__item:nth-child(2) img {
    aspect-ratio: 1/1;
  }
}
@media screen and (min-width: 1024px) {
  #notre-travail__contenu__item:nth-child(3) {
    grid-area: 11/4/20/18;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}

#a-propos {
  padding: 10px;
}
@media screen and (min-width: 1024px) {
  #a-propos {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 0 0 100px 0;
  }
}
#a-propos__illustration {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  #a-propos__illustration {
    width: 45%;
    object-fit: cover;
  }
}
#a-propos__texte {
  width: fit-content;
}
@media screen and (min-width: 1024px) {
  #a-propos__texte {
    width: 45%;
  }
}
#a-propos__texte__titre {
  font-size: 3.4rem;
}
@media screen and (min-width: 768px) {
  #a-propos__texte__titre {
    font-size: 7.2rem;
  }
}
#a-propos__texte__titre {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 100;
  color: #000;
  letter-spacing: 5px;
  margin: 5px 0 0 0;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  #a-propos__texte__titre {
    font-size: 8vw;
    line-height: 1.1;
  }
}
#a-propos__texte__corp {
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  #a-propos__texte__corp {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1024px) {
  #a-propos__texte__corp {
    grid-row: span 3/span 3;
    grid-column-start: 2;
  }
}

#contact {
  background-image: url("../assets/img/contact_bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 30px 0 30px 0;
}
@media screen and (min-width: 1024px) {
  #contact {
    padding: 100px 18% 100px 18%;
  }
}
#contact__contenu {
  background-color: #475d3a;
  color: #f6f5f4;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
#contact__contenu__titre {
  font-size: 3.4rem;
}
@media screen and (min-width: 768px) {
  #contact__contenu__titre {
    font-size: 7.2rem;
  }
}
#contact__contenu__titre {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 100;
  text-align: center;
  letter-spacing: 10%;
}
#contact__contenu__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
#contact__contenu__form > * {
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  #contact__contenu__form > * {
    font-size: 1.6rem;
  }
}
#contact__contenu__form > * {
  background-color: transparent;
  border: 1px solid #f6f5f4;
  color: #f6f5f4;
  height: 30px;
  width: 100%;
}
#contact__contenu__form > *::placeholder {
  font-size: 1.1rem;
}
@media screen and (min-width: 768px) {
  #contact__contenu__form > *::placeholder {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1024px) {
  #contact__contenu__form > * {
    width: 60%;
    padding: 0;
    box-sizing: border-box;
  }
}
#contact__contenu__form button {
  width: 60%;
  height: 50px;
}
@media screen and (min-width: 1024px) {
  #contact__contenu__form button {
    margin: 50px;
    padding: 0 30px 0 30px;
    width: min-content;
  }
}
#contact__contenu__form .big-input {
  height: 80px;
}
#contact__contenu a, #contact__contenu__separator {
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  #contact__contenu a, #contact__contenu__separator {
    font-size: 1.6rem;
  }
}
#contact__contenu a, #contact__contenu__separator {
  font-family: "Bebas Neue", Impact, sans-serif;
  margin-top: 10px;
}
#contact__contenu p {
  margin: 0;
  font-weight: 100;
  letter-spacing: 0.1rem;
}

#footer {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-height: 667px;
  color: #000000;
}
@media screen and (min-width: 1024px) {
  #footer {
    flex-direction: row;
    padding: 0 5%;
    gap: 50px;
  }
}
#footer__logo {
  height: 400px;
  object-fit: contain;
}
@media screen and (min-width: 1024px) {
  #footer__logo {
    height: auto;
  }
}
#footer__coordonnes {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  #footer__coordonnes {
    align-items: start;
    flex: 1;
  }
}
#footer__coordonnes__liens__instagram {
  margin: 20px 0 0 0;
}
#footer__coordonnes__liens__facebook {
  margin: 10px 0 0 0;
}
#footer__coordonnes__liens__instagram, #footer__coordonnes__liens__facebook {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
#footer__coordonnes__liens__instagram__logo, #footer__coordonnes__liens__facebook__logo {
  height: 27px;
  object-fit: contain;
}
#footer__coordonnes__liens__instagram__text, #footer__coordonnes__liens__facebook__text {
  text-decoration: underline;
}
#footer__coordonnes__liens__instagram__text, #footer__coordonnes__liens__facebook__text {
  font-size: 1.1rem;
}
@media screen and (min-width: 768px) {
  #footer__coordonnes__liens__instagram__text, #footer__coordonnes__liens__facebook__text {
    font-size: 1.2rem;
  }
}
#footer__coordonnes__liens__instagram__text, #footer__coordonnes__liens__facebook__text {
  font-weight: bold;
  color: #000000;
}
#footer__legal {
  margin-top: auto;
}
#footer__legal {
  font-size: 1.1rem;
}
@media screen and (min-width: 768px) {
  #footer__legal {
    font-size: 1.2rem;
  }
}
#footer__legal {
  display: flex;
  flex-direction: column;
  text-decoration: underline;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  #footer__legal {
    margin-top: 0;
  }
}

/*# sourceMappingURL=style.css.map */
