/** Shopify CDN: Minification failed

Line 41:0 All "@import" rules must come first
Line 174:0 All "@import" rules must come first
Line 344:0 All "@import" rules must come first
Line 463:0 All "@import" rules must come first

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:2colonnes-flex (INDEX:2) */
.two-col-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.two-col-flex .column {
  flex: 1 1 48%;
}
.two-col-flex .content {
  margin-bottom: 2rem;
}
.two-col-flex img {
  display: block;
  height: auto;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
/* END_SECTION:2colonnes-flex */

/* START_SECTION:en-tete-pro (INDEX:38) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

.hero-pro-section {
  width: 100%;
  min-height: 100vh;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  color: white;
}

.hero-pro-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.17);
  z-index: 0;
}

.hero-pro-content {
  position: relative;
  z-index: 1;
  max-width: 1800px;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem 0;
}

/* Titre H1 animé */
.hero-pro-title {
  text-align: center;
}

.hero-pro-title h1 {
  font-family: 'Inter', sans-serif;
  font-size: 4rem;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.1;
  word-spacing: 0.25rem;
  color: white;
  margin-bottom: 2rem;
}

.reveal-word {
  opacity: 0;
  display: inline-block;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

/* Paragraphe centré */
.hero-pro-paragraph {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  line-height: 1.6;
  text-align: justify;
  text-align-last: center;
  font-weight:600;
  max-width: 750px;
  margin: 0 auto;
  text-transform: uppercase;
  color: white;
}

/* Bouton en bas */
.hero-pro-button {
  margin-top: 1rem;
}

.magic-button {
  position: relative;
  display: inline-block;
  padding: 0.8rem 1.8rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
  background-color: transparent;
  border: 1px solid white;
  border-radius: 100px;
  text-decoration: none;
  overflow: hidden;
  z-index: 0;
}

.magic-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}

.magic-button:hover::before {
  transform: scaleX(1);
}

.magic-button:hover {
  color: white;
  border-color: transparent; /* ✅ Bordure disparaît au survol */
}


@media screen and (max-width: 768px) {
  .hero-pro-title h1 {
    font-size: 2rem;
  }

  .hero-pro-paragraph {
    font-size: 0.95rem;
  }
}
/* END_SECTION:en-tete-pro */

/* START_SECTION:full-width-text (INDEX:47) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

.full-width-text-section {
  width: 100%;
  padding: 4rem 2rem;
  overflow: hidden;
  position: relative;
  padding-top:10rem;
  padding-bottom:10rem;
}

.full-width-text-section.has-top-border {
  border-top: 1px solid rgb(0, 0, 0);
}

.full-width-text-section.has-bottom-border {
  border-bottom: 1px solid rgb(0, 0, 0);
}

/* Titre h2 */
.full-width-text-section h2 {
  font-family: 'Inter', sans-serif;
  font-size: 6em;
  text-align: justify!important;
  text-align-last: justify!important;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1rem;
  word-spacing: 0.25rem;
}

/* Animation mot par mot */
.reveal-word {
  opacity: 0;
  display: inline-block;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

/* Colonnes */
.text-with-image-wrapper {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: stretch;
}

.text-column {
  flex: 0 0 40%;
  max-width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.image-column {
  flex: 0 0 60%;
  max-width: 60%;
  display: flex;
  flex-direction: column;
}

.image-column.hide-on-mobile {
  display: flex;
}

.image-wrapper {
  margin-top: auto;
  align-self: flex-end;
  padding-top:6rem;
  padding-right: 7rem;
  padding-bottom:2rem;
}

.image-wrapper img {
  height: auto;
  max-width: 100%;
  display: block;
}

/* Paragraphe */
.full-width-text-section p {
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.3;
  text-align: justify!important;
  text-align-last: left;
  margin: 0 0 1rem 0;
}

/* Bouton */
.custom-button {
  border-radius:100px;
  display: inline-block;
  position: relative;
  padding: 0.5rem 1rem;
  font-weight: 600;
  text-transform: uppercase;
  background-color: black;
  color: white;
  border: 1px solid black;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size:12px;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease, border-color 0.3s ease;
  align-self: flex-start;
}

.custom-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: white;
  z-index: -1;
  transition: width 0.4s ease;
}

.custom-button:hover::before {
  width: 100%;
}

.custom-button:hover {
  color: black;
  border-color: black;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .full-width-text-section {
    padding: 2rem 1rem;
  }

  .full-width-text-section h2 {
    font-size: 2rem;
  }

  .text-with-image-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .image-column.hide-on-mobile {
    display: none;
  }

  .image-column,
  .text-column {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .full-width-text-section p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .custom-button {
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
  }
}
/* END_SECTION:full-width-text */

/* START_SECTION:hero-clean (INDEX:58) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

.hero-clean-section {
  width: 100%;
  min-height: 100vh;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: black;
  position: relative;
  overflow: hidden;
}

.hero-clean-content {
  position: relative;
  z-index: 1;
  max-width: 1800px;
  width: 100%;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 6rem 0;
}

.hero-clean-title {
  text-align: center;
}

.hero-clean-title h1 {
  font-family: 'Inter', sans-serif;
  font-size: 4rem;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.1;
  word-spacing: 0.25rem;
  color: black;
  margin-bottom: 25rem;
}

.reveal-word {
  opacity: 0;
  display: inline-block;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.hero-clean-paragraph {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  line-height: 1.6;
  text-align: justify;
  text-align-last: center;
  font-weight: 600;
  max-width: 750px;
  margin: 0 auto;
  text-transform: uppercase;
  color: black;
}

.hero-clean-button-wrapper {
  margin-top: 1rem;
}

.hero-clean-button {
  position: relative;
  display: inline-block;
  padding: 0.8rem 1.8rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: black;
  background-color: transparent;
  border: 1px solid black;
  border-radius: 100px;
  text-decoration: none;
  overflow: hidden;
  z-index: 0;
}

.hero-clean-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}

.hero-clean-button:hover::before {
  transform: scaleX(1);
}

.hero-clean-button:hover {
  color: white;
  border-color: transparent;
}

@media screen and (max-width: 768px) {
  .hero-clean-title h1 {
    font-size: 2rem;
  }

  .hero-clean-paragraph {
    font-size: 0.95rem;
  }
}
/* END_SECTION:hero-clean */

/* START_SECTION:section-services-pro (INDEX:101) */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond&family=Inter:wght@700&display=swap');

/* Wrapper & slider */
.section-services-pro-wrapper {
  position: relative;
  overflow: hidden;
  padding-bottom: 3rem;
}

.section-services-pro {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.section-services-pro::-webkit-scrollbar {
  display: none;
}

/* Slides */
.service-column {
  flex: 0 0 25%;
  max-width: 25%;
  box-sizing: border-box;
  padding: 2rem;
  border: 0.5px solid #000;
  background: transparent;
  font-family: inter, sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.8rem;
  line-height: 1.2;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  cursor: pointer;
  min-height: 45vh;
  max-height: 45vh;
  overflow: hidden;
  scroll-snap-align: start;
}

/* Hover (agrandissement en largeur seulement sur desktop) */
@media (min-width: 769px) {
  .section-services-pro .service-column:hover {
    flex: 0 0 30%;
    max-width: 30%;
    background-color: transparent;
  }
}

/* Mobile : 1 slide à la fois */
@media (max-width: 768px) {
  .service-column {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Index */
.service-index {
  font-size: 0.6rem;
  font-family: 'Inter', sans-serif;
  margin-bottom: 0.5rem;
}

/* Titre */
.service-column h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* Contenu masqué aligné bas */
.service-reveal {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease, max-height 0.4s ease;
  margin-top: auto;
}

.service-column:hover .service-reveal,
.service-column.active .service-reveal {
  opacity: 1;
  max-height: 800px;
}

/* Image */
.service-image {
  margin-bottom: 1rem;
  width: 20%;
  flex-shrink: 0;
}

.service-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.service-reveal p {
  text-align: left;
}

/* Flèches */
.slider-nav {
  display: flex;
  justify-content: flex-start; /* Aligner à gauche */
  align-items: center;
  position: absolute;
  bottom: 0.5rem;
  left: 1rem;
  z-index: 10;
  gap: 1rem; /* espace entre les deux flèches */
}

.slider-nav button {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: black;
  padding: 0;
}
/* END_SECTION:section-services-pro */

/* START_SECTION:slider-panpan (INDEX:104) */
.slider-panpan {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}

/* Bouton avec effet "coup d’éponge" transparent */
.slider-button {
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 6;
  border-radius: 100px;
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  background-color: transparent;
  color: black;
  border: 1px solid black;
  text-decoration: none;
  overflow: hidden;
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.slider-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: black;
  z-index: -1;
  transition: width 0.8s ease;
}

.slider-button:hover::before {
  width: 100%;
}

.slider-button:hover {
  color: white;
  border-color: black;
}


.slider-panpan .bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  transition: background-color 0.8s ease;
}

.slider-panpan .titles {
  display: flex;
  height: 100%;
  overflow: visible;
  z-index: 4;
  position: relative;
  pointer-events: none;
  transition: transform 0.8s ease-in-out;
  gap: 0.5vw;
}

.slider-panpan .title-slide {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inter, sans-serif;
  font-weight: 600;
  font-size: 7rem;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  opacity: 0.5;
  transition: opacity 0.5s ease;
  z-index: 4;
  color: black;
  letter-spacing: 0.02em;
  mix-blend-mode: difference;
}

.slider-panpan .title-slide span {
  display: inline-block;
  mix-blend-mode: difference;
  color: black;
  opacity: 1;
}

.slider-panpan .title-slide.active {
  opacity: 1;
}

.slider-panpan .image-wrapper {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}

.slider-panpan .image-slide {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes slideInArc {
  0% {
    transform: translate(-120%, 50%) rotate(-15deg) scale(0.9);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
    opacity: 1;
  }
}

@keyframes slideOutArc {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(120%, -50%) rotate(10deg) scale(0.9);
    opacity: 0;
  }
}

.slider-panpan .image-slide.entering {
  animation: slideInArc 0.8s ease forwards;
  z-index: 3;
}

.slider-panpan .image-slide.exiting {
  animation: slideOutArc 0.8s ease forwards;
  z-index: 2;
}

.slider-panpan .image-slide img {
  max-width: 30vw;
  height: auto;
  display: block;
  pointer-events: auto;
}

.slider-panpan .counter {
  position: absolute;
  text-transform: uppercase;
  font-family: inter, sans-serif;
  top: 20px;
  left: 30px;
  font-size: 10px;
  z-index: 5;
  font-weight: 500;
}

.slider-panpan .counter::before {
  content: "NOS DERNIERS PROJETS ";
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
  color: black;
  font-weight: 600;
}

.slider-panpan .arrow {
  position: absolute;
  bottom: 40px;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
}

.slider-panpan .arrow--left {
  left: 50px;
}

.slider-panpan .arrow--right {
  right: 50px;
}

.slider-panpan .arrow svg {
  width: 40px;
  height: 40px;
  stroke: black;
  fill: none;
  stroke-width: 1px;
  transition: transform 0.3s ease;
}

.slider-panpan .arrow:hover svg {
  transform: translateX(5px);
}

@media screen and (max-width: 768px) {
  .slider-panpan {
    height: 80vh;
  }

  .slider-panpan .title-slide {
    font-size: 2.5rem;
    text-align: center;
    padding: 0 10px;
  }

  .slider-panpan .image-slide img {
    max-width: 70vw;
  }

  .slider-panpan .counter {
    font-size: 8px;
    left: 15px;
    top: 15px;
  }

  .custom-button {
    top: 15px;
    right: 15px;
    font-size: 10px;
    padding: 0.4rem 0.8rem;
  }

  .slider-panpan .arrow {
    bottom: 20px;
  }

  .slider-panpan .arrow--left {
    left: 20px;
  }

  .slider-panpan .arrow--right {
    right: 20px;
  }
}
/* END_SECTION:slider-panpan */