@font-face {
  font-family: 'IntegralCF-Bold';
  src: url('./fonts/IntegralCF-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'inter-light';
  src: url('./fonts/Inter_18pt-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'inter-Medium';
  src: url('./fonts/Inter_18pt-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'inter-extralight';
  src: url('./fonts/Inter_18pt-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'InstrumentSerif-Regular';
  src: url('./fonts/InstrumentSerif-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'inter-regular';
  src: url('./fonts/Inter_18pt-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'inter-black';
  src: url('./fonts/Inter_18pt-Black.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'inter-bold';
  src: url('./fonts/Inter_18pt-Bold.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'vina-sans';
  src: url('./fonts/VinaSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manjari-Thin';
  src: url('./fonts/Manjari-Thin.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manjari-Regular';
  src: url('./fonts/Manjari-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manjari-Bold';
  src: url('./fonts/Manjari-Bold.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #FFFDFB;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom,
      #FFFDFB 0%,
      rgba(255, 253, 251, 0) 100%);
  z-index: 999;
  display: flex;
  align-items: center;
  padding: 0 80px;
  box-sizing: border-box;
}

.navbar {
  position: fixed;
  top: 40px;
  left: 80px;
  right: 80px;
  height: 80px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background-color: #FFFDFB;
  border: 2px solid #F4541E;
  border-radius: 80px;
  font-family: 'Inter-Medium', sans-serif;
  box-sizing: border-box;
  z-index: 1000;
}

.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.navbar a {
  text-decoration: none;
  color: #0F1319;
  font-size: 20px;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-right {
  margin-right: 40px;
  padding-left: 40px;
}

.nav-left {
  margin-left: 40px;
}

.icon-nav img,
.logo-nav img {
  height: 40px;
}

.nav-right a {
  position: relative;
  color: #0F1319;
  font-family: 'Inter-Medium', sans-serif;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
  padding-left: 15px;
}

/* Point médian */
.nav-right a::before {
  content: '·';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateX(-5px);
  opacity: 0;
  color: #F4541E;
  font-size: 28px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-right a::after {
  content: '';
  position: absolute;
  left: 15px;
  bottom: -3px;
  height: 2px;
  width: 0%;
  background-color: #F4541E;
  transition: width 0.4s ease;
  z-index: 1;
}

.nav-right a:hover::after {
  width: calc(100% - 15px);
}

.nav-right a:hover {
  color: #F4541E;
}

.nav-right a:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.logo-nav img {
  height: 26px;
  width: auto;
  display: block;
}

.star {
  height: 30px;
  width: auto;
  display: block;
  margin-right: 0;
  cursor: pointer;
  margin-right: 1px;
  transition: transform 0.3s ease-in-out, height 0.3s ease-in-out, margin-right 0.3s ease-in-out;
}

.star:hover {
  transform: rotate(360deg);
  height: 32px;
  margin-right: 10px;
}

.star path {
  stroke: #0F1319;
  transition: stroke 0.3s ease;
}

.star:hover path {
  stroke: #F4541E;
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 90vh;
  background-color: transparent;
  position: relative;
  margin-bottom: -120px;
}

.hero-caption {
  position: absolute;
  bottom: 30px;
  left: 0;
  padding-left: 80px;
  font-size: 16px;
  letter-spacing: -0.48px;
  color: #0F1319;
}

.hero-caption p {
  font-family: 'inter-light', sans-serif;
}

.title-hero h1 {
  font-family: 'Manjari-Bold';
  font-weight: 400;
  font-size: 15vw;
  overflow: hidden;
  color: transparent;
  -webkit-text-stroke: 2px #F4541E;
}

.cta-devis {
  margin-top: 40px;
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 99px;
}

.cta-devis a {
  position: relative;
  z-index: 2;
  text-decoration: none;
  color: #0F1319;
  font-family: 'inter-medium', sans-serif;
  font-size: 20px;
  background-color: transparent;
  border: 2px solid #F4541E;
  border-radius: 99px;
  padding: 20px 48px;
  transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  display: inline-block;
}

.cta-devis .ripple {
  position: absolute;
  border-radius: 50%;
  background: #F4541E;
  width: 0;
  height: 0;
  pointer-events: none;
  opacity: 0.5;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease, opacity 0.7s ease;
}

.cta-devis:hover a {
  color: #FFFDFB;
  border-color: #F4541E;
}

.cta-devis a i {
  margin-left: 8px;
  transition: margin-left 0.3s ease-in-out;
}

.cta-devis:hover a i {
  margin-left: 28px;
}

/* Services Section */
.services-section {
  padding: 0px 80px 80px 80px;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  justify-content: center;
}

.services-container-wrapper {
  width: 100%;
}

.services-title {
  text-align: left;
  margin-bottom: 40px;
  font-size: 48px;
  font-weight: bold;
  font-family: 'Inter-Medium', sans-serif;
}

.services-container {
  display: flex;
  gap: 20px;
  width: 100%;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f9f7f7;
  border-radius: 10px;
  padding: 20px;
  width: 33.333%;
  box-sizing: border-box;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.service-image {
  /* Vos propriétés existantes */
  border-radius: 5px;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #F4541E;
  margin-bottom: 20px;

  /* Nouvelles propriétés pour les images */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.service-text {
  font-family: 'Inter-regular', sans-serif;
  text-align: center;
  color: #0F1319;
  width: 100%;
  margin-bottom: 0px;
}

.service-button {
  font-family: 'Inter-Medium', sans-serif;
  align-self: flex-end;
  padding: 10px 20px;
  background-color: #FFFDFB;
  color: #0F1319;
  border: 2px solid #F4541E;
  border-radius: 20px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
  z-index: 1;
}

.service-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #F4541E;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.service-button:hover {
  color: #FFFDFB;
}

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

/* Devis Section */
.devis-section {
  position: relative;
  padding: 80px 80px 80px 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.devis-image {
  width: 45%;
  height: 300px;
  background-color: #F4541E;
  border-radius: 10px;
}

.devis-image-left {
  position: absolute;
  left: -20vw;
}

.devis-image-right {
  position: absolute;
  right: -20vw;
}

.devis-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  z-index: 1;
  text-align: center;
}

.devis-text {
  margin-bottom: 20px;
  padding-left: 100px;
  padding-right: 100px;
  color: #0F1319;
  font-family: 'Inter-Light', sans-serif;
}

/* Carousel Section */
.carousel-section {
  width: 100%;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.carousel-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.carousel-container {
  position: relative;
  margin: 0 auto;
  z-index: 2;
}

.carousel-title {
  color: #0F1319;
  text-align: left;
  margin-bottom: 40px;
  margin-left: 80px;
  font-size: 48px;
  font-weight: bold;
  font-family: 'Inter-Medium', sans-serif;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.carousel-image {
  width: 380px;
  height: 380px;
  border-radius: 15px;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  position: relative;
  overflow: hidden;

  /* Propriétés pour les images de fond */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.carousel-image span {
  position: relative;
  z-index: 2;
}

.carousel-image:hover {
  transform: scale(1.05);
}

.project-1 {
  background-color: #F4541E;
}

.project-2 {
  background-color: #F4541E;
}

.project-3 {
  background-color: #F4541E;
}

.project-4 {
  background-color: #F4541E;
}

.project-5 {
  background-color: #F4541E;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(1.3);
  background: transparent;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  color: #0F1319;
  transition: all 0.3s ease;
  z-index: 3;
}

.carousel-nav:hover {
  transform: translateY(-50%) scale(1.5);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.carousel-nav.prev {
  left: 20px;
  margin-left: 80px;
}

.carousel-nav.next {
  right: 20px;
  margin-right: 80px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 15px;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.carousel-indicator.active {
  transform: scale(1.2);
}

.carousel-indicator::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.carousel-indicator.active::before {
  opacity: 1;
}

/* Burger Icon */
.burger-icon {
  opacity: 0;
  pointer-events: none;
  position: relative;
  z-index: 1100;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.burger-svg {
  overflow: visible;
}

.bar {
  transition: all 0.3s ease;
  transform-origin: center;
}

.burger-icon.active .top {
  transform: translateY(8px) translateX(-8px) rotate(45deg);
}

.burger-icon.active .middle {
  opacity: 0;
}

.burger-icon.active .bottom {
  transform: translateY(-8px) translateX(-8px) rotate(-45deg);
}

/* Menu burger - caché par défaut */
.burger-menu {
  display: none;
  max-height: 0;
  overflow: hidden;
  background-color: transparent;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
}

.burger-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.burger-menu-links a {
  color: #0F1319;
  font-family: 'Inter-Medium', sans-serif;
  font-size: 18px;
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.3s ease;
}

.burger-menu.active .burger-menu-links a {
  opacity: 1;
  transform: translateY(0);
}

.burger-menu.active .burger-menu-links a:nth-child(1) {
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s, color 0.3s ease;
}

.burger-menu.active .burger-menu-links a:nth-child(2) {
  transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s, color 0.3s ease;
}

.burger-menu.active .burger-menu-links a:nth-child(3) {
  transition: opacity 0.3s ease 0.3s, transform 0.3s ease 0.3s, color 0.3s ease;
}

.burger-menu-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 2px;
  width: 0%;
  background-color: #F4541E;
  transition: width 0.3s ease;
}

.burger-menu-links a:hover {
  color: #F4541E;
}

.burger-menu-links a:hover::after {
  width: 100%;
}

/* Media Queries */
@media (max-width: 930px) {

  .hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 60vh;
    background-color: transparent;
    position: relative;
    margin-bottom: -160px;
  }
  
  .devis-text {
  margin-bottom: 20px;
  padding-left: 40px;
  padding-right: 40px;
  color: #0F1319;
  font-family: 'Inter-Light', sans-serif;
}


  .title-hero h1 {
    font-family: 'Manjari-Bold';
    font-weight: 400;
    font-size: 15vw;
    overflow: hidden;
    color: transparent;
    -webkit-text-stroke: 1.5px #F4541E;
  }

  .footer h4 {
    margin-right: 80px;
    display: flex;
    justify-content: flex-end;
    font-family: 'Manjari-Bold';
    font-weight: 400;
    font-size: 10vw;
    overflow: hidden;
    padding-top: 40px;
    padding-bottom: 0px;



    color: transparent;
    /* texte non rempli */
    -webkit-text-stroke: 1.5px #F4541E;
    /* contour orange */
  }




  .classic-bnt-nav {
    display: none;
  }

  .logo-nav {
    display: none;
  }

  .burger-icon {
    opacity: 1;
    pointer-events: auto;
  }

  /* Menu burger - visible en mobile */
  .burger-menu {
    display: block;
  }

  .burger-menu.active {
    max-height: 200px;
    padding: 5px 20px 20px 20px;
  }

  .navbar {
    position: fixed;
    top: 20px;
    left: 40px;
    right: 40px;
    height: auto;
    min-height: 64px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
    background-color: #FFFDFB;
    border: 2px solid #F4541E;
    border-radius: 32px;
    font-family: 'Inter-Medium', sans-serif;
    box-sizing: border-box;
    z-index: 1000;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 64px;
    width: 100%;
    background-color: #FFFDFB;
    position: relative;
    z-index: 2;
  }

  .nav-left,
  .nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .carousel-title {
    color: #0F1319;
    text-align: left;
    margin-bottom: 40px;
    margin-left: 40px;
    font-size: 48px;
    font-weight: bold;
    font-family: 'Inter-Medium', sans-serif;
  }


  .nav-left {
    margin-left: 20px;
  }

  .nav-right {
    margin-right: 20px;
    padding-left: 0;
  }

  .cta-devis {
    width: calc(100% - 80px);
    box-sizing: border-box;
  }

  .cta-devis a {
    display: block;
    width: 100%;
    text-align: center;
  }

  .hero-caption {
    position: absolute;
    bottom: 30px;
    left: 0;
    padding-left: 40px;
    font-size: 16px;
    letter-spacing: -0.48px;
    color: #0F1319;
  }

  .carousel-nav.prev {
    left: 20px;
    margin-left: 40px;
  }

  .carousel-nav.next {
    right: 20px;
    margin-right: 40px;
  }

  .services-section {
    padding: 80px 40px 80px 40px;
  }




  .services-container-wrapper {
    width: 100%;
  }

  .services-title {
    margin-bottom: 20px;
    padding: 0;
  }

  .services-container {
    flex-direction: column;
    gap: 20px;
  }

  .service-card {
    width: 100%;
  }

  .cta-devis:hover a i {
    margin-left: 48px;
  }
}

@media (max-width: 930px) {
  .devis-section {
    padding: 40px 0px 80px 0px;
    flex-direction: column;
  }

  .devis-image {
    display: none;
  }

  .devis-content {
    padding: 0;
    max-width: 100%;
  }

  .devis-image-left,
  .devis-image-right {
    position: static;
  }
}

@media (max-width: 768px) {

  .carousel-title,
  .services-title,
  .a-propos-section h3 {
    font-size: 2rem;
  }

  .carousel-wrapper {
    height: 300px;
  }

  .carousel-image {
    width: 280px;
    height: 280px;
  }

  .carousel-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}





.a-propos-section {
  padding: 80px 80px;
}

.titre {
  text-align: left;
  margin-bottom: 40px;
  font-size: 48px;
  font-weight: bold;
  font-family: 'Inter-Medium', sans-serif;
}

.grille {
  font-family: 'Inter-light', sans-serif;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 0px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 10px;
  
}

.case {
  background: #FFFDFB;
  padding: 20px;
  position: relative;
  justify-items: center;
  
}

.grille > div {
  display: flex;
  flex-direction: column;
}

.case1, .case3, .case6 {
  display: flex;
  flex-direction: column;
  justify-content: center; /* si tu veux aussi centrer verticalement */
}



.titre-case {
  font-family: 'Inter-Medium', sans-serif;
  margin-bottom: 20px;
}

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

.case.instagram {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.case.instagram img {
  width: 24px;
  height: 24px;
}

.case {
  aspect-ratio: 1 / 1;
  /* les autres styles déjà en place */
}

.case1,
.case2,
.case3,
.case4,
.case5,
.case6,
.case7,
.case8 {
  background: #FFFDFB;
  padding: 20px 20px 20px 20px;
  position: relative;
  aspect-ratio: 1 / 1;
}

/* exemple bordures */
.case1 {
  border-top-left-radius: 10px;
}

.case4 {
  border-top-right-radius: 10px;
}

.case5 {
  border-bottom-left-radius: 10px;
}

.case5 img{
  border-bottom-left-radius: 10px;
}

.case8 {
  border-bottom-right-radius: 10px;
}



.case8 {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.case8 a {
  color: #F4541E;
  display: flex;
  font-size: 28px;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 20px;
}

.case8 a:hover {
  color: #F58D4B;
}

/* image full */
.case1 img,
.case2 img,
.case3 img,
.case4 img,
.case5 img,
.case6 img,
.case7 img,
.case8 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case2,
.case4,
.case5,
.case7 {
  padding: 0;
}

.case4 img {
  border-top-right-radius: 10px;
}

@media (max-width: 1050px) {
  .grille {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
  }

  .case4 img {
    border-top-right-radius: 0px;
  }

  .case5 {
    border-bottom-left-radius: 0px;
  }

  .case5 img{
  border-bottom-left-radius: 0px;
}


  .case2 img {
    border-top-right-radius: 10px;
  }

  .case2 {
    border-top-right-radius: 10px;
  }

  .case7 {
    border-bottom-left-radius: 10px;
  }

  .grille {
    display: flex;
    flex-wrap: wrap;
  }

  .grille>div {
    width: 50%;
    aspect-ratio: 1 / 1;
  }

  /* inversion 3 et 4 */
  .case3 {
    order: 4;
  }

  .case4 {
    order: 3;
  }

  /* inversion 5 et 6 */
  .case5 {
    order: 6;
  }

  .case6 {
    order: 5;
  }

  /* forcer le reste à rester en ordre */
  .case1 {
    order: 1;
  }

  .case2 {
    order: 2;
  }

  .case7 {
    order: 7;
  }

  .case8 {
    order: 8;
  }

  /* padding mobile */
  .a-propos-section {
    padding: 40px 40px;
  }

  .case1 img,
  .case2 img,
  .case3 img,
  .case4 img,
  .case5 img,
  .case6 img,
  .case7 img,
  .case8 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}





@media (max-width: 550px) {
  .grille {
    display: grid;
    grid-template-columns: 1fr;
  }

  .grille>div {
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  .case1 {
    order: 1;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
  }

  .case2 {
    order: 2;
    border-radius: 0px;
  }

  .case2 img {
    border-radius: 0px;
  }

  .case3 {
    order: 3;
    border-radius: 0px;
  }

  .case4 {
    order: 4;
    border-radius: 0px;
  }

  .case5 {
    order: 6;
    border-radius: 0px;
  }

  .case6 {
    order: 5;
    border-radius: 0px;
  }

  .case7 {
    order: 7;
    border-radius: 0px;
    display: none;
  }

  .case8 {
    order: 8;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
  }


  .title-hero h1 {
    font-family: 'Manjari-Bold';
    font-weight: 400;
    font-size: 13vw;
    overflow: hidden;
    color: transparent;
    -webkit-text-stroke: 1px #F4541E;
  }


  .case1 img,
  .case2 img,
  .case3 img,
  .case4 img,
  .case5 img,
  .case6 img,
  .case7 img,
  .case8 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }



}

/* Mentions légales - Styles spécifiques */

/* Espace après la navbar */
.espace-nav {
  height: 160px;
}

/* Section principale */
.mentions-section {
  padding: 0px 80px 80px 80px;
  box-sizing: border-box;
  width: 100%;
}

.mentions-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Titre principal */
.titre-mentions {
  text-align: left;
  margin-bottom: 40px;
  font-size: 48px;
  font-weight: bold;
  font-family: 'Inter-Medium', sans-serif;
  color: #0F1319;
}

/* Contenu des mentions */
.mentions-content {
  background: #f9f7f7;
  padding: 60px;
  border-radius: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* Blocs de mentions */
.mention-block {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 2px solid rgba(244, 84, 30, 0.2);
}

.mention-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* Titres des sections */
.mention-block h2 {
  font-family: 'Inter-Medium', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #0F1319;
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
}

/* Point orange avant les titres */
.mention-block h2::before {
  content: '·';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #F4541E;
  font-size: 32px;
}

/* Paragraphes */
.mention-block p {
  font-family: 'Inter-Light', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #0F1319;
  margin-bottom: 16px;
}

.mention-block p:last-child {
  margin-bottom: 0;
}

/* Texte en gras */
.mention-block strong {
  font-family: 'Inter-Medium', sans-serif;
  color: #0F1319;
  font-weight: 500;
}

/* Responsive - Tablette */
@media (max-width: 930px) {
  .espace-nav {
    height: 120px;
  }

  .mentions-section {
    padding: 0px 40px 80px 40px;
  }

  .titre-mentions {
    margin-left: 0;
    margin-bottom: 30px;
  }

  .mentions-content {
    padding: 40px;
  }

  .mention-block {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }

  .mention-block h2 {
    font-size: 20px;
  }

  .mention-block p {
    font-size: 15px;
  }
}

/* Responsive - Mobile */
@media (max-width: 550px) {
  .espace-nav {
    height: 100px;
  }

  .mentions-section {
    padding: 0px 20px 60px 20px;
  }

  .titre-mentions {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .mentions-content {
    padding: 30px 20px;
    box-shadow: rgba(100, 100, 111, 0.1) 0px 4px 15px 0px;
  }

  .mention-block {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(244, 84, 30, 0.15);
  }

  .mention-block h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .mention-block h2::before {
    font-size: 28px;
  }

  .mention-block p {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* Animation au scroll (optionnel) */
.mention-block {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.mention-block:nth-child(1) { animation-delay: 0.1s; }
.mention-block:nth-child(2) { animation-delay: 0.2s; }
.mention-block:nth-child(3) { animation-delay: 0.3s; }
.mention-block:nth-child(4) { animation-delay: 0.4s; }
.mention-block:nth-child(5) { animation-delay: 0.5s; }
.mention-block:nth-child(6) { animation-delay: 0.6s; }
.mention-block:nth-child(7) { animation-delay: 0.7s; }
.mention-block:nth-child(8) { animation-delay: 0.8s; }
.mention-block:nth-child(9) { animation-delay: 0.9s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Lien retour (optionnel - à ajouter dans le HTML si souhaité) */
.retour-accueil {
  display: inline-block;
  margin-top: 40px;
  font-family: 'Inter-Medium', sans-serif;
  font-size: 16px;
  color: #0F1319;
  text-decoration: none;
  border: 2px solid #F4541E;
  border-radius: 99px;
  padding: 16px 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.retour-accueil::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #F4541E;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.retour-accueil:hover {
  color: #FFFDFB;
}

.retour-accueil:hover::before {
  transform: scaleX(1);
}

.retour-accueil i {
  margin-right: 8px;
  transition: margin-right 0.3s ease;
}

.retour-accueil:hover i {
  margin-right: 12px;
}