@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

body {
  font-family: "Lato", sans-serif;
  line-height: 1.2;
  color: #2E2E2E;
}

.bold {
  font-weight: 700;
}

.italic {
  font-style: italic;
}

.header {
  position: fixed;
  height: 85px;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #FFFFFF;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}
@media (min-width: 1024px) {
  .header {
    height: 115px;
  }
}
.header--transparent {
  background: transparent;
  box-shadow: none;
}
.header--transparent .header__link,
.header--transparent .header__btn {
  color: #FFFFFF;
}
.header__container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) {
  .header__container {
    padding: 0 2rem;
  }
}
.header__container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 600px) {
  .header {
    height: 70px;
  }
}
@media (min-width: 768px) {
  .header {
    height: 80px;
  }
}
@media (min-width: 1024px) {
  .header {
    height: 90px;
  }
}
.header--reduced {
  height: 50px;
}
@media (min-width: 600px) {
  .header--reduced {
    height: 50px;
  }
}
@media (min-width: 1024px) {
  .header--reduced {
    height: 60px;
  }
}
.header img {
  height: 100%;
  width: auto;
}
.header__logo {
  height: 50px;
  transition: all 0.5s ease;
}
@media (min-width: 768px) {
  .header__logo {
    height: 60px;
  }
}
@media (min-width: 1024px) {
  .header__logo {
    height: 70px;
  }
}
.header__logo--reduced {
  height: 35px;
}
@media (min-width: 768px) {
  .header__logo--reduced {
    height: 35px;
  }
}
.header__nav {
  display: flex;
  align-items: center;
}
.header__btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.header__btn:focus-visible {
  outline: 1px solid #3F3127;
  outline-offset: 2px;
}
.header__btn {
  background: #C6A15B;
  color: #FFFFFF;
}
.header__btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.header__btn {
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  margin: 0 0.5rem;
}
@media (max-width: 350px) {
  .header__btn {
    font-size: 0.7rem;
  }
}
@media (min-width: 600px) {
  .header__btn {
    font-size: 1rem;
    padding: 0.5rem 2rem;
  }
}
@media (min-width: 768px) {
  .header__btn {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .header__btn {
    font-size: 1.25rem;
    margin: 0 1rem;
  }
}
.header__link {
  font-family: "Lato", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #2E2E2E;
  text-decoration: none;
  transition: all 0.5s ease;
  padding: 0.5rem 0.5rem;
}
.header__link:hover {
  color: #FAF7F2;
}
@media (max-width: 350px) {
  .header__link {
    font-size: 0.7rem;
  }
}
@media (min-width: 600px) {
  .header__link {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .header__link {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .header__link {
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
  }
}
.header__link--scrolled {
  font-size: 0.7rem;
}
@media (min-width: 768px) {
  .header__link--scrolled {
    font-size: 0.9rem;
  }
}
@media (min-width: 1024px) {
  .header__link--scrolled {
    font-size: 1rem;
  }
}
@media (min-width: 1440px) {
  .header__link--scrolled {
    font-size: 1.25rem;
  }
}

.hero {
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.hero {
  position: relative;
  color: #FFFFFF;
}
.hero__bg {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  object-position: center 45%;
  display: block;
}
@media (min-width: 1024px) {
  .hero__bg {
    max-height: 650px;
  }
}
.hero__content {
  position: absolute;
  top: 55%;
  left: 0;
  height: 45%;
  display: flex;
  flex-direction: column;
  z-index: 5;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) {
  .hero__content {
    padding: 0 2rem;
  }
}
.hero__content--gallery {
  left: 0;
  align-items: center;
}
@media (min-width: 600px) {
  .hero__content--home {
    top: 40%;
    height: 60%;
  }
}
.hero__taglineContainer {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .hero__taglineContainer {
    align-items: end;
  }
}
.hero__tagline {
  font-family: "Poppins", serif;
  font-size: 1.25rem;
  font-weight: 300;
}
@media (min-width: 600px) {
  .hero__tagline {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .hero__tagline {
    font-size: 2rem;
  }
}
@media (min-width: 1440px) {
  .hero__tagline {
    font-size: 3rem;
  }
}
.hero__btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.hero__btn:focus-visible {
  outline: 1px solid #3F3127;
  outline-offset: 2px;
}
.hero__btn {
  background: #C6A15B;
  color: #FFFFFF;
}
.hero__btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.hero__btn {
  margin-top: 0.5rem;
  font-weight: 500;
  font-size: 1.125rem;
  padding: 0.5rem 2rem;
  width: fit-content;
}
@media (min-width: 1024px) {
  .hero__btn {
    font-size: 1.5rem;
    padding: 1rem 2rem;
  }
}
.hero__acronym {
  position: relative;
  height: 100%;
}
.hero__acronym-text {
  position: absolute;
  bottom: 0.5rem;
  transform: translateX(-3px);
  font-family: "Poppins", serif;
  font-size: 4rem;
  font-weight: 700;
}
@media (min-width: 600px) {
  .hero__acronym-text {
    font-size: 4.8rem;
  }
}
@media (min-width: 768px) {
  .hero__acronym-text {
    font-size: 6rem;
    transform: translateX(-4px);
  }
}
@media (min-width: 1024px) {
  .hero__acronym-text {
    font-size: 9rem;
    transform: translateY(25px) translateX(-7px);
    bottom: 1rem;
  }
}
@media (min-width: 1440px) {
  .hero__acronym-text {
    font-size: 12rem;
    transform: translateY(45px) translateX(-9px);
    bottom: 2rem;
  }
}
.hero__acronym-desc {
  position: absolute;
  bottom: 0.5rem;
  font-family: "Lato", sans-serif;
}
@media (min-width: 600px) {
  .hero__acronym-desc {
    font-size: 1.125rem;
  }
}
@media (min-width: 768px) {
  .hero__acronym-desc {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .hero__acronym-desc {
    font-size: 1.5rem;
  }
}
@media (min-width: 1440px) {
  .hero__acronym-desc {
    font-size: 2rem;
  }
}
.hero__intro {
  text-align: center;
  max-width: 800px;
}
@media (min-width: 600px) {
  .hero__intro {
    font-size: 1.125rem;
  }
}
@media (min-width: 768px) {
  .hero__intro {
    font-size: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .hero__intro {
    font-size: 1.5rem;
  }
}

.cards {
  padding: 1rem 1.5rem;
  background-color: #FAF7F2;
  position: relative;
  width: 100%;
}
@media (min-width: 600px) {
  .cards {
    padding: 1.5rem 3rem;
  }
}
@media (min-width: 768px) {
  .cards--centered {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .cards--centered .cards__text {
    text-align: center;
  }
}
.cards--special {
  position: relative;
  max-width: 800px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .cards--special {
    background-image: url("../images/about_bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 2.3/1;
  }
}
.cards--special::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(4px);
  z-index: 1;
  border-radius: 24px;
}
.cards--special .cards__title, .cards--special .cards__text {
  position: relative;
}
@media (min-width: 768px) {
  .cards--special .cards__title, .cards--special .cards__text {
    color: #FFFFFF;
  }
}
.cards--special .cards__title, .cards--special .cards__text {
  z-index: 2;
}
.cards--special .cards__separator {
  position: relative;
  z-index: 2;
  height: 4px;
}
.cards--special .cards__textContainer {
  flex: 1;
  display: flex;
  align-items: center;
}
.cards__title {
  font-family: "Poppins", serif;
  font-weight: 700;
  font-size: 1.25rem;
}
@media (min-width: 600px) {
  .cards__title {
    font-size: 1.5rem;
  }
}
.cards__separator {
  width: 70%;
  height: 3px;
  background: #C6A15B;
  border: none;
  margin-bottom: 1.25rem;
  max-width: 425px;
}
.cards__separator--short {
  max-width: 200px;
}
.cards__text {
  font-family: "Lato", sans-serif;
  line-height: 1.2;
  color: #2E2E2E;
  font-size: 1rem;
  max-width: 800px;
}
@media (min-width: 600px) {
  .cards__text {
    font-size: 1.125rem;
  }
}

.gallery__slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.gallery__slider-container {
  display: flex;
  transition: transform 0.3s ease;
}
.gallery__slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  min-width: 100%;
  height: 300px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .gallery__slider-img {
    height: 400px;
  }
}
@media (min-width: 1024px) {
  .gallery__slider-img {
    height: 500px;
  }
}
.gallery__slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  border: none;
  color: #FFFFFF;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s ease;
  z-index: 5;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media (min-width: 1024px) {
  .gallery__slider-btn {
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }
}
.gallery__slider-btn:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}
.gallery__slider-btn:active {
  transform: translateY(-50%) scale(0.95);
}
.gallery__slider-btn--prev {
  left: 1rem;
}
.gallery__slider-btn--next {
  right: 1rem;
}

.active {
  opacity: 1;
}

.footer {
  background-color: #3F3127;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  color: #FFFFFF;
  width: 100%;
  padding: 3rem 0;
  text-align: center;
}
@media (min-width: 600px) {
  .footer {
    font-size: 1rem;
  }
}
.footer__container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}

.about {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 4rem;
  background: #FFFFFF;
  flex-direction: column;
}
.about__title {
  font-family: "Poppins", serif;
  font-weight: 700;
  font-size: 2rem;
  color: #FFFFFF;
  margin: 3rem 0;
  text-shadow: 1px 1px 0 #2E2E2E, -1px -1px 0 #2E2E2E, 1px -1px 0 #2E2E2E, -1px 1px 0 #2E2E2E;
}
@media (min-width: 600px) {
  .about__title {
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .about__title {
    font-size: 3rem;
    margin: 4rem 0;
  }
}
.about__presentation {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem auto;
  margin-top: 0;
  width: 100%;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .about__presentation {
    width: 80%;
    max-width: 800px;
  }
}
.about__presentation .cards {
  border-radius: 24px;
}
.about__exempleList {
  width: 85%;
  max-width: 560px;
  margin-top: 1rem;
}
.about__list {
  font-family: "Lato", sans-serif;
  line-height: 1.2;
  color: #2E2E2E;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
@media (min-width: 600px) {
  .about__list {
    grid-template-columns: repeat(3, 1fr); /* 3 colonnes */
  }
}
@media (min-width: 768px) {
  .about__list {
    grid-template-columns: repeat(5, 1fr); /* 5 colonnes = 2 lignes avec 9 éléments */
  }
}
.about__listComponent {
  background-color: #FAF7F2;
  border-radius: 4px;
  padding: 0.4rem 1rem;
  /* Comportement responsive */
  flex: 0 0 auto;
}
.about__listComponent p {
  font-weight: 300;
  font-size: 1.125rem;
  font-style: italic;
  white-space: nowrap;
}
.about__profile {
  position: relative;
  margin-top: 4rem;
  margin-bottom: 2rem;
  display: flex;
  width: 295px;
}
@media (min-width: 600px) {
  .about__profile {
    width: 450px;
  }
}
@media (min-width: 768px) {
  .about__profile {
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
}
.about__photo {
  position: absolute;
  left: 50%;
  max-width: 150px;
  border-radius: 42px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
@media (min-width: 600px) {
  .about__photo {
    max-width: 200px;
  }
}
@media (min-width: 768px) {
  .about__photo {
    position: relative;
    left: unset;
    max-width: 40%;
    height: auto;
    object-fit: cover;
  }
}
@media (min-width: 1024px) {
  .about__photo {
    max-width: 50%;
  }
}
.about__bio {
  flex: 1;
  margin-top: 120px;
  font-size: 0.875rem;
  font-weight: 300;
  font-style: italic;
  background-color: #FAF7F2;
  padding: 1.5rem;
  max-width: 220px;
  font-family: "Lato", sans-serif;
  line-height: 1.2;
  color: #2E2E2E;
}
@media (min-width: 600px) {
  .about__bio {
    font-size: 1rem;
    margin-top: 190px;
    max-width: 300px;
  }
}
@media (min-width: 768px) {
  .about__bio {
    display: flex;
    align-items: center;
    border-radius: 12px;
    font-size: 1.125rem;
    margin: 0 auto;
    max-width: 330px;
    min-height: 150px;
    padding: 2rem 1.5rem;
  }
}
.about__gallery-section {
  margin-bottom: 4rem;
  width: 100%;
}
.about__photos-panel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  position: relative;
  margin-top: 3rem;
}
.about__btn {
  position: absolute;
  font-size: 2.5rem;
  font-family: "Lato", sans-serif;
  color: #FFFFFF;
  font-weight: 300;
  font-style: italic;
  z-index: 5;
}
@media (min-width: 768px) {
  .about__btn {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .about__btn {
    font-size: 4rem;
  }
}
.about__photo-item {
  display: inline-block;
  max-width: 45px;
  filter: brightness(0.7);
}
@media (max-width: 350px) {
  .about__photo-item {
    max-width: 35px;
  }
}
@media (min-width: 768px) {
  .about__photo-item {
    max-width: 65px;
  }
}
@media (min-width: 1024px) {
  .about__photo-item {
    max-width: 80px;
  }
}
.about__contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.about__btnDevis {
  font-family: "Lato", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  background-color: #C6A15B;
  color: #FFFFFF;
  border-radius: 4px;
  padding: 1rem 3rem;
  margin: 3rem auto;
  margin-top: 6rem;
}
@media (min-width: 600px) {
  .about__btnDevis {
    font-size: 1.5rem;
    padding: 1rem 4rem;
  }
}

.gallery {
  padding: 4rem 1.25rem;
  padding-top: 0;
  background: #FFFFFF;
}
@media (min-width: 768px) {
  .gallery {
    padding: 4rem 2rem;
    padding-top: 0;
  }
}
@media (min-width: 1024px) {
  .gallery {
    padding: 8rem 2rem;
    padding-top: 0;
    margin: 0 auto;
  }
}
.gallery__title {
  font-family: "Poppins", serif;
  font-weight: 700;
  font-style: italic;
  text-align: center;
  font-size: 2rem;
  color: #FFFFFF;
  margin: 3rem 0;
  text-shadow: 1px 1px 0 #2E2E2E, -1px -1px 0 #2E2E2E, 1px -1px 0 #2E2E2E, -1px 1px 0 #2E2E2E;
}
@media (min-width: 768px) {
  .gallery__title {
    font-size: 2.5rem;
    margin: 4rem 0;
  }
}
@media (min-width: 1024px) {
  .gallery__title {
    font-size: 4rem;
    margin: 8rem 0;
  }
}
.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 auto;
  margin-bottom: 4rem;
  max-width: 500px;
}
@media (min-width: 768px) {
  .gallery__filters {
    gap: 1rem;
    max-width: 650px;
  }
}
@media (min-width: 1024px) {
  .gallery__filters {
    gap: 2rem;
    max-width: 800px;
  }
}
.gallery__filter {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.gallery__filter:focus-visible {
  outline: 1px solid #3F3127;
  outline-offset: 2px;
}
.gallery__filter {
  background: #FFFFFF;
  font-weight: 400;
  border-radius: 4px;
  color: #2E2E2E;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border: 1px solid #C6A15B;
}
@media (min-width: 768px) {
  .gallery__filter {
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
  }
}
@media (min-width: 1024px) {
  .gallery__filter {
    font-size: 1.25rem;
    padding: 1rem 2rem;
  }
}
.gallery__filter:hover {
  background: #C6A15B;
  color: #FFFFFF;
  transform: scale(1.1);
}
.gallery__filter--active {
  background: #C6A15B;
  color: #FFFFFF;
}
.gallery__category {
  margin-bottom: 4rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
  max-width: 580px;
  margin: 4rem auto;
}
@media (min-width: 768px) {
  .gallery__category[data-category=divers] {
    max-width: 700px;
  }
}
@media (min-width: 1024px) {
  .gallery__category {
    margin-bottom: 8rem;
    max-width: 800px;
  }
}
.gallery__category--dimmed {
  opacity: 0.4;
  cursor: pointer;
}
.gallery__category--dimmed:hover {
  opacity: 0.55;
}
.gallery__category--dimmed:last-child {
  margin-bottom: 0;
}
.gallery__category-title {
  font-family: "Poppins", serif;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  line-height: 1.2;
  color: #2E2E2E;
  width: fit-content;
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
  text-align: left;
}
.gallery__category:nth-child(even) .gallery__category-title {
  margin-left: auto;
}
@media (min-width: 768px) {
  .gallery__category-title {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  .gallery__category-title {
    font-size: 2.5rem;
  }
}
.gallery__separator {
  width: 80px;
  height: 3px;
  background: #C6A15B;
  border: none;
  margin-bottom: 2rem;
  transition: width 0.3s ease;
  max-width: 100%;
}
@media (min-width: 768px) {
  .gallery__separator {
    height: 4px;
  }
}
.gallery__category:nth-child(even) .gallery__separator {
  margin-left: auto;
}
.gallery__ruban {
  background: #FAF7F2;
  padding: 2rem 1.25rem;
  margin: 2rem auto;
  border-radius: 4px;
  max-width: 650px;
}
@media (min-width: 768px) {
  .gallery__ruban {
    padding: 2rem 2rem;
  }
}
.gallery__text {
  font-family: "Lato", sans-serif;
  line-height: 1.2;
  color: #2E2E2E;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}
@media (min-width: 768px) {
  .gallery__text {
    font-size: 1.125rem;
  }
}

@media (min-width: 768px) {
  .gallery__category[data-category=tables] .gallery__flexContainer,
  .gallery__category[data-category=van] .gallery__flexContainer,
  .gallery__category[data-category=gravure] .gallery__flexContainer {
    display: flex;
    flex-direction: raw;
    justify-content: center;
    gap: 2rem;
  }
  .gallery__category[data-category=tables] .gallery__titleContainer,
  .gallery__category[data-category=van] .gallery__titleContainer,
  .gallery__category[data-category=gravure] .gallery__titleContainer {
    max-width: 70%;
    margin: 0 auto;
  }
}
@media (min-width: 768px) and (min-width: 1024px) {
  .gallery__category[data-category=tables] .gallery__titleContainer,
  .gallery__category[data-category=van] .gallery__titleContainer,
  .gallery__category[data-category=gravure] .gallery__titleContainer {
    max-width: 65%;
  }
}
@media (min-width: 768px) {
  .gallery__category[data-category=tables] .gallery__slider,
  .gallery__category[data-category=van] .gallery__slider,
  .gallery__category[data-category=gravure] .gallery__slider {
    width: 70%;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (min-width: 1024px) {
  .gallery__category[data-category=tables] .gallery__slider,
  .gallery__category[data-category=van] .gallery__slider,
  .gallery__category[data-category=gravure] .gallery__slider {
    max-width: 65%;
  }
}
@media (min-width: 768px) {
  .gallery__category[data-category=tables] .gallery__ruban,
  .gallery__category[data-category=van] .gallery__ruban,
  .gallery__category[data-category=gravure] .gallery__ruban {
    width: 40%;
    margin-top: 0;
    display: flex;
    align-items: center;
    padding: 2rem;
  }
  .gallery__category[data-category=tables] > .gallery__slider, .gallery__category[data-category=tables] > .gallery__ruban,
  .gallery__category[data-category=van] > .gallery__slider,
  .gallery__category[data-category=van] > .gallery__ruban,
  .gallery__category[data-category=gravure] > .gallery__slider,
  .gallery__category[data-category=gravure] > .gallery__ruban {
    display: inline-block;
    vertical-align: top;
  }
}
.gallery__category {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contact-info {
  background: #FFFFFF;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 115px;
}
@media (min-width: 1024px) {
  .contact-info {
    padding-top: 200px;
  }
}
.contact-info__title {
  font-family: "Poppins", serif;
  font-size: 1.25rem;
}
.contact-info__grid {
  width: 100%;
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, minmax(20px, auto));
  gap: 2rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .contact-info__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, minmax(20px, auto));
    gap: 2rem;
    grid-auto-flow: row;
  }
}
.contact-info__card {
  background: #FAF7F2;
  padding: 2rem;
  border-radius: 12px;
  transition: transform 0.3s ease;
  width: fit-content;
}
@media (min-width: 768px) {
  .contact-info__card {
    width: 100%;
    padding: 1rem 2rem;
  }
}
.contact-info__card:hover {
  transform: translateY(-4px);
  transform: scale(1.1);
}
.contact-info__card--social {
  background: unset;
  padding: 0;
}
.contact-info__social {
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.contact-info__social-link {
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FAF7F2;
  border-radius: 8px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .contact-info__social-link {
    width: 100px;
    height: 100px;
  }
}
.contact-info__social-link svg {
  width: 55px;
  height: 55px;
  fill: #FFFFFF;
}
@media (min-width: 768px) {
  .contact-info__social-link svg {
    width: 65px;
    height: 65px;
  }
}
.contact-info__social-link:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.contact-info__image {
  max-width: 300px;
  margin: 3rem auto;
  border-radius: 12px;
}
@media (min-width: 768px) {
  .contact-info__image {
    max-width: 400px;
    margin-bottom: 4rem;
  }
}
.contact-info__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.contact-info__form {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .contact-info__form {
    margin-bottom: 8rem;
  }
}
.contact-info__form-title {
  font-family: "Poppins", serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #2E2E2E;
  margin-bottom: 0.5rem;
}
@media (max-width: 350px) {
  .contact-info__form-title {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .contact-info__form-title {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  .contact-info__form-title {
    font-size: 2.5rem;
  }
}
.contact-info__form-separator {
  width: 60%;
  height: 2px;
  background: #C6A15B;
  border: none;
  margin: 0 auto 2rem;
}
@media (min-width: 768px) {
  .contact-info__form-separator {
    margin-bottom: 2rem;
  }
}

#form_devis {
  scroll-margin-top: 80px; /* ajuste selon la hauteur de ton header */
}

.form {
  display: flex;
  flex-direction: column;
  width: 80%;
}
.form a {
  font-weight: 600;
}
.form a:hover {
  text-decoration: underline;
}
.form__group {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}
.form__group--rgpd-consent {
  font-size: 0.875rem;
}
.form__asterix {
  font-size: 0.875rem;
  font-weight: 300;
}
.form__input, .form__textarea {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #2E2E2E;
  padding: 1rem;
  border: 1px solid #2E2E2E;
  background: #FAF7F2;
  transition: border-color 0.2s ease;
}
@media (min-width: 768px) {
  .form__input, .form__textarea {
    font-size: 1.125rem;
    padding: 1.25rem;
  }
}
.form__input:focus, .form__textarea:focus {
  outline: none;
  border-color: #C6A15B;
}
.form__input::placeholder, .form__textarea::placeholder {
  color: #949494;
}
.form__textarea {
  min-height: 150px;
  resize: vertical;
}
@media (min-width: 768px) {
  .form__textarea {
    min-height: 200px;
  }
}
.form__submit {
  margin-top: 0.5rem;
  margin-bottom: 3rem;
  background-color: #C6A15B;
  border: none;
  color: #FFFFFF;
  align-self: center;
  font-size: 1.125rem;
  padding: 1rem 3rem;
  width: 100%;
}
@media (min-width: 768px) {
  .form__submit {
    font-size: 1.25rem;
    padding: 2rem 4rem;
    margin-top: 2rem;
  }
}

.map {
  width: 100%;
}
.map__iframe {
  width: 100%;
  touch-action: pan-x pan-y;
}
@media (min-width: 768px) {
  .map__iframe {
    height: 300px;
  }
}

.legal {
  margin: 115px auto 0;
  padding: 0 2rem;
  max-width: 800px;
  line-height: 1.5;
}
.legal__title {
  font-family: "Poppins", serif;
  font-weight: 700;
  text-align: center;
}
.legal__subTitle {
  font-family: "Poppins", serif;
  font-weight: 700;
  margin: 2rem 0;
}
.legal__article {
  margin: 4rem auto;
}
.legal__paragraph {
  margin-top: 1rem;
}
.legal__paragraphTitle {
  font-weight: 600;
}

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