/* CSS Document */

/* Général */
html, body {
  padding: 0;
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  overflow-x: hidden; /* ← évite les débordements */
}

*, *::before, *::after {
  box-sizing: border-box; /* ← important pour largeur/scroll cohérent */
}


header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  transition: top 0.3s ease;
}

header {
  position: fixed;
  top: 0;
  z-index: 1000;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

header.nav-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

main {
  padding-top: 80px; /* hauteur du header */
}

body {
  margin-top: 0;
}

body.menu-open {
  height: 100vh;
  overflow: hidden;
  position: fixed;
  width: 100%;
}

p {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  line-height: 1.5;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes moveRight {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100px);
  }
}

.element {
  animation-name: fadeIn, moveRight;
  animation-duration: 1s, 2s;
  animation-timing-function: ease, ease-in-out;
  animation-fill-mode: forwards, forwards;
}

@keyframes fadeOut {
 0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.2); }
}

.hamburger-icon.fade-out {
  animation: fadeOut 0.5s ease forwards;
}

/* Style global pour le corps de texte */
main, main > p  {
  width: 100%;
  max-width: 1200px; /* empêche que ça s'étire trop sur tablette ou desktop */
  margin: 0 auto;
  padding: 0 20px; /* espace à gauche et à droite */
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {

main { 
    padding-top: 120px; 
  }

/* navigation (mobile/tablette) */
.nav-desktop { 
    display: none; 
  }

 .topnav {
   display: flex;
   justify-content: flex-start;
   align-items: center;
   position: relative; /* pour qu'il soit toujours visible */
   background-color: black;
   width: 100%; /* Ajouté pour éviter toute erreur de dimensionnement */ 
   z-index: 1000;
  }
	
  .topnav.open {
    flex-direction: column;
	align-items: center;
    justify-content: flex-start;
	position: fixed;
    top: 0;
    height: 100vh;
    width: 100vw;
    background-color: transparent;
    z-index: 1001;
    overflow: hidden; /* ← empêche le scroll et donc les flèches */
  }

#myLinks {
  display: none;
  flex-direction: column;
  align-items: center; /* ← centre chaque lien inline-block */
  width: 100%;
  text-align: center;
}
	
 /* Liens visibles quand menu ouvert */
.topnav.open #myLinks {
    display: flex;
	z-index: 1001;
    position: relative;
  }

	/* Cible uniquement les liens de navigation */
.nav-link {
  display: inline; /* permet l'empilement */
  width: fit-content; /* limite la largeur au texte */
  margin: auto;
  color: white;
  font-size: 22px;
  text-align: center;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #CC6600;
}

 .hamburger-icon {
   position: absolute;
   top: 1.9rem;
   right: 2rem;
   width: 35px;
   height: 17.5px;	  
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   align-items: center;
   cursor: pointer;
  }

.hamburger-icon span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: white;
  transition: transform 0.4s ease, opacity 0.4s ease;
  }

.hamburger-icon.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-icon.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-icon.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.style-logo-ferme {
  width: 70px;
  height: auto;
  display: block;
  margin-bottom: 10px;
}
	
.logo-link {
  margin: 0;
  padding: 0;
}
	
.logo-ouvert {
  display: none;
  padding-bottom: 20px;
}
	
/* Quand menu est ouvert → cacher logo blanc, afficher logo original */
.topnav.open .logo-link {
  display: none;
}
	
/* Logo détaillé – visible uniquement menu ouvert */
.topnav.open .logo-ouvert {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 40px;
  z-index: 1001;
  position: relative;
}
	
	
/* Style de l'image dans le logo ouvert */
.style-logo-ouvert {
  display: block;
  max-width: 90%;
  height: auto;
}

.bouton-contact-mobile {
  background-color: #CC6600;
  color: white;
  padding: 12px 5px !important;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 30px;
  display: inline-block;
  transition: background 0.3s;
  text-align: center;
}
	
.bouton-contact-mobile:hover {
 background-color: white;  /* fond blanc */
  color: #cc6600;            /* texte orange */
}
	
.topnav.open .bouton-contact-mobile {
  display: inline-block;
  margin: 40px auto 30px auto;
  padding: 10px 50px;
  border-radius: 12px; /* Ajouter de l'espace autour du texte (plus large en haut/bas et légèrement plus large sur les côtés) */
  font-size: 18px; /* Ajuste la taille du texte si nécessaire */
  width: max-content; /* ← largeur automatique selon le contenu */
  max-width: 90%;   
  min-width: 180px;
}
	
.topnav.open .bouton-contact-mobile:hover {
  background-color: white;  /* Fond blanc lors du survol */
  color: #CC6600;           /* Texte orange lors du survol */
}

#accueil .style-logo-ferme {
    width: 150px;
    margin-top: 10px;
  }

.topnav.open::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 0;
}

  /* footer mobile */
.footer-mobile {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    font-family: 'Oswald', sans-serif;
}

.footer-logo { 
	  width: 180px; 
	  margin-bottom: 25px; 
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: center; /* pour centrer horizontalement */
}

.footer-nav a {
    display: inline;
    color: white;
    font-weight: 700;
    margin: 12px 0;
    text-decoration: none;
    font-size: 20px;
}

.footer-coordonnees {
     margin: 25px 0 10px; 
	 font-size: 20px; 
	 font-weight: 700; 
	 padding-top: 20px;
}
	
.coord-label h5 { 
	 font-size: 18px; 
	 font-weight: 600; 
	 margin-top: 5px; 
}
	
 .coord-address p { 
	 font-size: 16px; 
	 margin-bottom: 10px;
	 line-height: 1.5; 
	 font-weight: normal;
	  text-decoration: none;
	  color: white; 
}

.coord-address a { 
  color: white; /* Couleur du lien */
  text-decoration: none; /* Enlever le souligné */
  padding-top: 5px;
}

.phone-link h5{
  color: white; /* Couleur pour rendre le numéro de téléphone visible */
  text-decoration: none; /* Enlever le souligné si tu veux */
  font-weight: normal;
  font-size: 16px; 
  margin-bottom: 20px;
}

.phone-link:hover {
  text-decoration: none; /* Souligner au survol */
}

  .footer-social {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
 }

  .footer-social .social-icon svg {
    width: 30px;
    height: 30px;
    transition: transform 0.2s ease;
	margin-top: 10px;
  }

  .footer-social .social-icon:hover svg {
    transform: scale(1.2);
	margin-top: 10px;
  }

.contact-button {
  background-color: #cc6600;
  color: white;
  padding: 10px 0px;
  margin: 30px auto 30px auto; 
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
  white-space: nowrap;
  max-width: 200px;
}

.contact-button:hover {
  background-color: white;  /* fond blanc */
  color: #cc6600;            /* texte orange */
  border: 0px solid transparent;
}

.footer-copyright {
  font-size: 14px;
  color: #fff; /* Assure-toi que le texte est visible, ici blanc */
  text-align: center;
  margin-top: 40px;
  font-family: 'Oswald', sans-serif; /* Ou la police que tu utilises */
  font-weight: normal;
}

.footer-copyright #year {
  font-weight: bold;
}

.footer-nav a:hover,
.phone-link:hover,
#google-map-link:hover {
  color: #cc6600; /* Couleur orange au survol */
  text-decoration: none; /* Souligner au survol */
}
	
/* body general */
h1 {
  padding-top: 130px;
  color: #CC6600; /* Orange */
  font-size: 1.25em; /* Ajuste la taille selon ton design */
  text-align: center; /* Centrer le texte si besoin */
}
	
h2 {
	font-size: 35px;
	font-weight: bold;
	text-align: center;
	}
	
h3 {
	font-size: 25px;
	font-weight: bold;
	text-align: center;
	}

h4 {
  font-size: 22px;
  text-align: center;
  font-weight: 600px;
}
	
h6 {
  padding-top: 50px;
  color: white; /* Blanc */
  font-weight: bold; /* Gras */
  font-size: 2em; /* Ajuste la taille selon ton design */
  text-align: center; /* Centrer le texte si nécessaire */
  padding-bottom: 30px;
}
	
.titres-oranges {
	margin-top: 0px;
	color: #CC6600;
	}

.button-blanc {
  padding-top: 100px;
  background-color: white; /* Orange */
  color: #cc6600; /* Texte en blanc */
  padding: 10px 20px; /* Ajuste la taille du bouton */
  border: none; /* Supprime la bordure */
  border-radius: 15px; /* Coins arrondis */
  font-size: 1em; /* Ajuste la taille du texte */
  cursor: pointer; /* Change le curseur lorsque l'on passe dessus */
  text-decoration: none;
  transition: background-color 0.3s ease; /* Transition pour l'effet au survol */
}

.button-blanc:hover {
  background-color: #cc6600; /* Orange plus clair au survol */
  color: #FFFFFF;
}
	
/* body mobile accueil */
.section-accueil {
  position: relative;
  background-image: url("../IMAGES/image_accueil.jpg"); /* Chemin de ton image */
  background-size: cover;       /* Ajuste l’image pour couvrir toute la section */
  background-position: center;  /* Centre l’image */
  background-repeat: no-repeat; /* Ne répète pas l’image */
  color: white;                 /* Le texte reste visible */
  padding: 100px 20px;
  text-align: center;
  min-height: 100vh; /* Utilise la hauteur de la fenêtre du navigateur */
  margin-top: 90px;
}

.section-accueil .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* noir à 50% */
  z-index: 1;
}

.section-accueil .contenu {
  position: relative;
  z-index: 2;
}
	
.br-mobile {
  display: inline;
}

/* bouton */
.button-blanc {
  margin-top: 0; /* si tu veux coller le bouton au h6 */
  padding: 10px 20px;
}
	
.section-a_propos {
	background-color: #ECECEC;
	background-size: cover;
	color: black;                 /* Le texte reste visible */
    padding: 40px 20px 150px;
    text-align: center;
}

.accueil-apropos {
	color: black;                 /* Le texte reste visible */
    text-align: center;
	padding-bottom: 40px
}

.button-wrapper {
  margin-top: 0px;
  text-align: center; /* pour centrer le bouton */
}

.button-orange {
  background-color: #cc6600;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 15px;
  font-size: 1em;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
	font-family: 'Oswald', sans-serif; /* police Oswald */
  font-weight: bold;  
}
	
.button-orange:hover {
  background-color: white; /* Orange plus clair au survol */
  color: #cc6600;
}
	
.section-image-seule {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.section-image-seule img {
 width: 90%;
  max-width: 1200px;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: all 0.3s ease;
  object-fit: cover;
  border-radius: 12px; /* Optionnel pour un style plus doux */
}
	
.section-nosservices {
  position: relative;
  text-align: center;
  color: white;
  overflow: visible;
  background-color: white;
  padding: 0px;
}

.fond-orange {
  background-color: #cc6600;
  position: relative;
  z-index: 1;
	padding: 1rem 1rem 6.75rem;
}

.section-nosservices h2.titres-noirs {
  color: #333333;
}

.section-nosservices h4 {
  font-weight: bold;
}
	
/* Soudeur */
.soudeur-wrapper {
  position: relative;
  height: 20px;
  z-index: 3;
}
	
#soudeur {
  width: 400px;
  height: auto;
  display: block;
	margin-top: 90px;
}

.soudeur-img {
  position: absolute;
  top: -460px;
  left: 0;
   transform: translateX(0);
  transition: none; /* pour désactiver les animations gênantes */
  z-index: 1000;   
  width: 400px;
  max-width: none;
}

.services-container {
margin-top: 20px;
}
	
.escaliers-garde h3,
.soudure h3,
.decoupe-plasma h3,
.mecanique-industrielle h3,
.escaliers-garde p,
.soudure p,
.decoupe-plasma p,
.mecanique-industrielle p {
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  box-sizing: border-box;
  text-align: center; /* facultatif si tu veux centrer le texte */
}
	
.escaliers-garde h3,
.soudure h3,
.decoupe-plasma h3,
.mecanique-industrielle h3 {
	color: #CC6600;
	white-space: nowrap; 
}
	
/* Services box */
.escaliers-garde,
.soudure,
.decoupe-plasma,
.mecanique-industrielle {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  overflow: hidden;
  margin: 1rem auto;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.escaliers-garde {
  background-image: url("../IMAGES/escalier-bulle.jpg");
}

.soudure {
  background-image: url("../IMAGES/soudeur-bulle.jpg");
}

.decoupe-plasma {
  background-image: url("../IMAGES/plasma-bulle.jpg");
}

.mecanique-industrielle {
  background-image: url("../IMAGES/mecanique-bulle.jpg");
}

.services-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0rem; /* réduit l'espacement */
  width: 100%;       /* conteneur plein cran */
  max-width: 100%;   /* empche de limiter la largeur */       /* pas de padding qui rduit la largeur */
  margin: 0 auto; 
}

/* Par défaut (mobile) : 1 par ligne */
.services-container > div {
  width: 100%;
  flex: 0 0 100%;
}
	
.escaliers-garde p,
.soudure p,
.decoupe-plasma p,
.mecanique-industrielle p {
	color: white;
}

	
.service-overlay {
  background-color: rgba(0, 0, 0, 0.6); /* filtre noir semi-transparent */
  color: white;
  border-radius: inherit;
  width: 100%;
  text-align: center; 
  display: flex;
  flex-direction: column; 
  justify-content: center; /* Centrer verticalement dans l'overlay */
  height: 100%;
  align-items: center; 
 padding: 1.5rem 1rem 2rem;
}

.section-nosrealisations {
 background-color: #333333; 
 color: white; 
 padding: 10px 20px 60px;
 text-align: center;
}
	
.titres-oranges {
  margin-bottom: 0px; /* Réduit l’espace entre le h2 et le h4 */
}

.section-nosrealisations h4 {
  margin-bottom: 0px; /* Réduit l’espace entre le h4 et le carrousel */
}

.realisations-swiper img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  height: auto;
  padding-bottom: 30px;
  padding-top: 0px;
}

.realisations-swiper {
  width: 100%;
  padding: 0px 0px;
  position: relative;
  margin-bottom: 0px;
  overflow: hidden;
}
	
.realisations-swiper .swiper-slide {
  transition: transform 0.5s ease;
  opacity: 0.5;
  transform: scale(0.8);
}

.realisations-swiper .swiper-slide-active {
  transform: scale(1);
  opacity: 1;
  z-index: 2;
} 
	
/* Flèches */
.swiper-button-prev,
.swiper-button-next {
   color: white !important; /* force la couleur blanche */
  font-size: 14px !important;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 6px 10px;
  border-radius: 8px;
  width: auto;
  height: auto;
  top: 45%;
  transform: translateY(-50%);
  transition: background-color 0.3s;
}

/* Style du symbole flèche (pseudo-élément) */
.swiper-button-prev::after,
.swiper-button-next::after {
  color: white !important;
  font-size: 20px !important;
}
	
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: rgba(204, 102, 0, 1); /* couleur orange au hover */
  color: white;
  font-size: 18px;
  border-radius: 8px;
}

/* Pagination : étoiles */
.swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
margin-top: -15px;
  margin-bottom: 10px;
}

.swiper-pagination-bullet {
  background: none !important;
  width: 36px;
  height: 36px;
  opacity: 0.5;
  background-image: url("../IMAGES/etoile-secondaire.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
}

.swiper-pagination-bullet-active {
  background-image: url("../IMAGES/etoile.png");
  opacity: 1;
  transform: scale(1.3);
  color: #CC6600;
}
	
/* Espacement entre le titre et les images */
#realisation-description {
  margin-top: 30px;
  margin-bottom: 80px;
}

#realisation-titre {
  font-size: 1.5rem; /* ajuste selon ton besoin */
  color: white;
  font-weight: bold;
  margin-bottom: 25px;
}
	
.lien-orange {
  color: #CC6600;
  font-weight: bold;
  text-decoration: none;
  margin-top: 60px;
}

.lien-orange:hover {
  text-decoration: underline;
}

.section-contact {
  background: #FFE9D2;
 padding: 10px 20px 100px;
 text-align: center;
}
	
.contact h4 {
 color: black;
 text-align: center;
 font-weight: bold;
 font-size: 25px; 
}
	
.contact-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px; /* Marge entre les deux boutons */
  margin-top: 70px;
}

.btn-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #CC6600;
  color: white;
  padding: 8px 15px;
  border-radius: 15px; /* Coins plus arrondis */
  width: 100%;
  max-width: 400px; /* Plus long si possible */
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  justify-content: flex-start;
}

.btn-contact .icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.btn-contact .text {
  flex-grow: 1;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-contact:hover {
  background-color: white;
  color: #CC6600;
}
	
.escalier_nousjoindre {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.escalier_nousjoindre img {
  width: 100%;
  max-width: 1200px;
  max-height: 500px;   
  height: auto;
  display: block;
  margin: 0 auto;
  transition: all 0.3s ease;
  object-fit: cover;
}

.bloc-contact-visuel {
  display: flex;
  flex-direction: column;
}

/* page a propos */
.section-apropos {
  position: relative;
  background-image: url("../IMAGES/a_propos.jpg"); /* Chemin de ton image */
  background-size: cover;       /* Ajuste l’image pour couvrir toute la section */
  background-position: center;  /* Centre l’image */
  background-repeat: no-repeat; /* Ne répète pas l’image */
  color: white;                 /* Le texte reste visible */
   padding: 200px 20px;
  min-height: calc(100vh - 90px);
  margin-top: 90px;
  text-align: center;
}
	
.section-apropos .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* noir à 50% */
  z-index: 1;
}

.intro-apropos {
  margin-bottom: 0px; 
}
	
.intro-apropos,
.accueil-apropos {
  max-width: 550px;
  text-align: center;
}
	
.apropos-element {
  padding-top: 150px;
}
	
.a_propos_section2 {
 position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 0px;
}
	
.container {
   display: block;
}

.fond-apropos {
background-color: #f0f0f0;
max-height: 875px;
	}

.mecano-apropos {
 position: relative;   /* reste dans le flux normal */
  left: auto;
  top: auto;
  width: 90%;           /* sadapte  lcran */
  max-width: 500px;
  margin: 0px auto;
  transform: translateY(-30px);
	z-index: 5;
}
	
.mecano-apropos img {
  width: 100%;
  height: auto;
  display: block;
}

.contenu-mission-valeurs {
  background: linear-gradient(to bottom, #cc6600, #E8B98B);
  text-align: center;
  padding-top: 100px; /* espace haut pour image */
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
  margin-top: 0; /* Important */
  display: flex;
  flex-direction: column; /* mobile : mission puis valeurs */           
  max-width: 1300px;
  margin: 0 auto;
}
	
.mission p, .valeurs p {
  font-size: 0.95em;
  line-height: 1em;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  color: white;
  text-align: center;
   max-width: 550px;
  margin-bottom: 2rem;
}
	
.valeurs {
  margin-top: 4rem;
}
	
.contenu-mission-valeurs > div {
  flex: 1;               /* chaque bloc prend la mme largeur sur desktop */
}
	
.titres-noirs h2 {
	font-size: 37px;
	font-weight: bold;
	text-align: center;
	color: #333333;
}	

.soud-apropos {
  display: flex;
  justify-content: center; /* centre horizontalement */
  margin: 0px 0;          /* espace au-dessus et en dessous */
}

.soud-apropos img {
  width: 110%;
  height: auto;
  display: block;
}
	
.titres-oranges {
  padding-top: 85px;
}
	
.histoire {
  position: relative;
  background-color: #000; /* fond noir comme sur ton image */
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 40px; /* espace entre les vnements */
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0px 70px 0px; 
  overflow: hidden;
}

/* IMAGE en arrire-plan sur le ct droit */
.histoire img.tanguay {
  position: absolute;
  top: 0;
  right: 0;          /* colle  droite */
  height: 100%;      /* prend toute la hauteur de la section */
  width: auto;       /* garde les proportions */
  object-fit: contain;
  opacity: 1;      /* discrte en arrire-plan */
  z-index: 1;        /* derrire le texte */
}
	
.histoire > *:not(img)  {
  position: relative;
  z-index: 2; /* tout le texte au-dessus de l'image */
}
	
.conteneur-texte {
  max-width: 600px;     /* largeur fixe du texte */       /* centre horizontalement */
  padding: 20px 0px;   /* espacement interne */
  position: relative;   /* ncessaire pour passer devant limage */
  z-index: 2;           /* texte au-dessus du fond */
  flex-direction: column;
  align-items: center; 
}

/* On s'assure que les items utilisent la largeur fixe */
.conteneur-texte .ouverture-item,
.conteneur-texte .forge-item,
.conteneur-texte .services-item {
  width: 100%;
}
	
.ouverture-item,
.services-item,
.forge-item .content {
  display: flex;
  align-items: center; /* garde le texte align en haut de l'anne */
  gap: 0px; /* espace trs rduit entre anne et texte */
}

.ouverture-item .content p,
.services-item .content p,
.forge-item .content p {
  flex: 1 1 auto;   /* prend tout l'espace disponible et peut rtrcir */
  min-width: 0;     /* IMPORTANT : permet au p de s'craser si besoin */
  margin: 0;        /* enlve marge par dfaut */
  padding: 0;       /* enlve padding si tu veux coller aux bords */
  box-sizing: border-box;
  /* si tu veux que le texte coupe les mots au besoin : */
  /* word-break: break-word; */
}
	
.ouverture-item,
.services-item {
  display: flex;
  align-items: center; /* pour que le texte commence au mme niveau que l'anne */
  gap: 0px; /* espace entre l'anne et le texte */
}

	
.ouverture-item .annee,
.services-item .annee {
  margin-top: 15px; /* ajustable */
	 writing-mode: vertical-rl; /* empile verticalement les chiffres */
  text-orientation: upright;
  font-weight: bold;
  color: #cc6600; /* orange */
  font-size: 2.5rem;/* vite de rtrcir */ 
}

.forge-item .content {
  display: flex;
  justify-content: space-between; /* espace entre texte et anne */
  align-items: center;        /* aligne en haut du texte */
		padding-left: 0px;
}

.forge-item .content p {
   flex: 1 1 auto;  /* prend tout l'espace disponible */
  min-width: 0;    /* permet au texte de rtrcir si besoin */
  margin: 0;
  padding: 0;   /* prend tout lespace restant */
}

.forge-item .annee {
  font-weight: bold;
  writing-mode: vertical-rl; /* chiffre empil verticalement */
  text-orientation: upright;
 color: #cc6600;
  margin-left: 0px; /* distance par rapport au texte */
  margin-top: 10px;  
}

.content {
  flex: 1;
}

.contact-button {
  background-color: #cc6600;
  color: white;
  padding: 10px 0px;
  margin: 60px auto; 
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
  white-space: nowrap;
  max-width: 200px;
}
	
/* Changement de couleur au survol */
.contact-button:hover {
  background-color: white;  /* fond blanc */
  color: #cc6600;            /* texte orange */
  border: 0px solid transparent;
}

.section-limon {
  position: relative;
  background-image: url("../IMAGES/limon.jpg"); /* Chemin de ton image */
  background-size: cover;       /* Ajuste l’image pour couvrir toute la section */
  background-position: center;  /* Centre l’image */
  background-repeat: no-repeat; /* Ne répète pas l’image */
  color: white;                 /* Le texte reste visible */
  padding: 80px 20px;
  text-align: center;
  min-height: 70vh; /* Utilise la hauteur de la fenêtre du navigateur */
}
	
.section-limon .overlay-gris {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(51, 51, 51, 0.68);
  z-index: 1;
}

.style-logo-limon {
  width: 220px;
  height: auto;
  display: block;
  margin: 100px auto 50px auto;
}
	
.section-limon .contenu {
  max-width: 800px;       /* limite la largeur du texte */
  margin: 0 auto;         /* centre le texte horizontalement */
  padding: 0 25px;        /* espace  gauche et  droite */
  position: relative;     /* pour rester indpendant de l'image */
  z-index: 2;             /* au-dessus de l'image si elle est derrire */
}
	
.texte-limon {
  font-size: 20px;         /* texte plus petit */
  text-transform: uppercase; /* majuscules */    /* espace entre paragraphes */
  color: #fff;    
  padding: 0 25px;  /* blanc sur fond overlay */
}
	
.texte-limon2 {
  font-size: 20px;         /* texte plus petit */
  line-height: 1.5;        /* espace entre les lignes pour la lisibilit */
  margin-bottom: 5px;     /* espace entre paragraphes */
  color: #fff;             /* blanc sur fond overlay */
  text-align: center;
  margin-left: 0px;
	 padding: 0 25px;  
}
	
/* page nos services */
.section-services {
  display: flex;
  background-image: url("../IMAGES/services.jpg"); /* Chemin de ton image */
  background-size: cover;       /* Ajuste l’image pour couvrir toute la section */
  background-position: center;  /* Centre l’image */
  background-repeat: no-repeat; /* Ne répète pas l’image */
  color: white;                 /* Le texte reste visible */
  padding: 100px 20px;
  text-align: center;
  min-height: 100vh; /* Utilise la hauteur de la fenêtre du navigateur */
  margin-top: 0px;
  justify-content:center;
  align-items:center;
  flex-direction:column;
}

.section-services .overlay {
  position: absolute;
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* noir à 50% */
  z-index: 1;
}

.services-element {
  padding-top: 230px;
}
	
.page-services{
  width:100%;
  display:flex;
  flex-direction:column;
}
	
.intro-services{
  padding-top:10px;
  padding-bottom: 200px;
  text-align:center;
  z-index: 2; 
  position: relative;
}
	
	
#soudeurservices {
  width: 475px;
  height: auto;
  display: block;
	margin-top: -35px;
}
	
	/* Soudeur */
.soudeurservices {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  overflow: visible;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0rem; /* réduit l'espacement */
  padding: 0 0.5em;
}

	
/* Cartes Services */
.servicesofferts{
	display:flex;
	flex-direction:column;
}
	
.servicesofferts > div{
  overflow:hidden;
}
	
.section-accueil .contenu {
  position: relative;
  z-index: 2;
}
	
	/* Escaliers */
.serviceescalier {
  position: relative;
  background-image: url("../IMAGES/escalier-bulle.jpg");
  background-size: cover;       /* Ajuste l’image pour couvrir toute la section */
  background-position: center;  /* Centre l’image */
  background-repeat: no-repeat; /* Ne répète pas l’image */
  color: white;                 /* Le texte reste visible */
  padding: 110px;
  text-align: center;
  min-height: 110vh; /* Utilise la hauteur de la fenêtre du navigateur */
}

.serviceescalier .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
 background: rgba(51, 51, 51, 0.7); /* noir à 50% */
  z-index: 1;
}
	
.texte-serviceblanc {
  font-size: 20px;         /* texte plus petit */
  color: #ffffff;    
  padding: 0 20px;  /* blanc sur fond overlay */
  margin-bottom: 15px;
}
	
.texte-servicenoir {
  font-size: 20px;         /* texte plus petit */
  line-height: 1.5;        /* espace entre les lignes pour la lisibilit */
  margin-bottom: 15px;     /* espace entre paragraphes */
  color: black;             /* blanc sur fond overlay */
  text-align: center;
  margin-left: 0px;
  padding: 0 20px;  
}
	
/* Soudure */
.servicesoudure {
  position: relative;
  background-image: url("../IMAGES/../IMAGES/soudeur-bulle.jpg");
  background-size: cover;       /* Ajuste l’image pour couvrir toute la section */
  background-position: center;  /* Centre l’image */
  background-repeat: no-repeat; /* Ne répète pas l’image */
  color: black;                 /* Le texte reste visible */
  padding: 100px;
  text-align: center;
  min-height: 85vh; /* Utilise la hauteur de la fenêtre du navigateur */
}

.servicesoudure .overlayblanc {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.7); /* noir à 50% */
  z-index: 1;
}
	
/* Dcoupe plasma */
.servicedecoupe {
  position: relative;
  background-image: url("../IMAGES/../IMAGES/plasma-bulle.jpg");
  background-size: cover;       /* Ajuste l’image pour couvrir toute la section */
  background-position: center;  /* Centre l’image */
  background-repeat: no-repeat; /* Ne répète pas l’image */
  color: white;                 /* Le texte reste visible */
  padding: 100px;
  text-align: center;
  min-height: 95vh; /* Utilise la hauteur de la fenêtre du navigateur */
}
	
.servicedecoupe h2{
  color: black;
  padding-top: 100px;/* Le texte reste visible */
}

.servicedecoupe .overlayorange {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(205,105,4,0.7); /* noir à 50% */
  z-index: 1;
}
	
	/* Mcanique */
.servicemecanique {
  position: relative;
  background-image: url("../IMAGES/../IMAGES/mecanique-bulle.jpg");
  background-size: cover;       /* Ajuste l’image pour couvrir toute la section */
  background-position: center;  /* Centre l’image */
  background-repeat: no-repeat; /* Ne répète pas l’image */
  color: white;                 /* Le texte reste visible */
  padding: 100px;
  text-align: center;
  min-height: 80vh; /* Utilise la hauteur de la fenêtre du navigateur */
}

.servicemecanique .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
   background: rgba(3,3,3,0.7); /* noir à 50% */
  z-index: 1;
}
 .serviceescalier,
.servicesoudure,
.servicedecoupe,
.servicemecanique {
    padding-top: 50px; /* plutt que 100px */
    padding-bottom: 100px; /* espace en bas pour tout voir */
}

/* Soumission */
.demandesoumission{
  background:white;
  text-align:center;
  border-radius:8px;
 padding-bottom:70px;
	 margin: 0 auto; /* centre horizontalement */
  max-width: 425px; /* optionnel, limite la largeur */
}

	/* nos ralisations */
.section-realisations {
  position: relative;
  background-image: url("../IMAGES/realisation.jpg"); /* Chemin de ton image */
  background-size: cover;       /* Ajuste l’image pour couvrir toute la section */
  background-position: center;  /* Centre l’image */
  background-repeat: no-repeat; /* Ne répète pas l’image */
  color: white;                 /* Le texte reste visible */
  padding: 100px 20px;
  text-align: center;
  min-height: 100vh; /* Utilise la hauteur de la fenêtre du navigateur */
  margin-top: 90px;
}

.section-realisations .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* noir à 50% */
  z-index: 1;
}

.section-realisation .contenu {
  position: relative;
  z-index: 2;
}

.gallerie  {
  background-color: #333333;
  padding-top: 30px;
	padding-bottom: 150px;
}
	
.realisations-element {
  padding-top: 200px;
}
	
.intro-realisation {
	color: black;                 /* Le texte reste visible */
    padding: 40px 80px 150px;
    text-align: center;
	}
	
.section-projets h2,
.portfolio-section h2 {
  margin-top: 120px;
  margin-bottom: 5px;
  color: #cc6600;
}

.section-header h4 {
  color: white;
  margin-bottom: 10px;
}

.section-header p,
.portfolio-section p {
  color: white;
  max-width: 600px;
  text-align: center;
  margin: 30px auto 100px;
}

.projets-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.projet {
  flex: 1 1 100%; /* mobile : 1 colonne */
  max-width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
	margin-bottom: 30px;
}

.projet:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.projet img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  cursor: pointer;
}	
	
/* Dplacer le bouton X (fermer) en haut  droite de limage */
.lb-close {
  position: absolute !important;
  top: -32px  !important;
  right: 16px !important;
  left: auto !important;
  bottom: auto !important;
}

.portfolio-section {
  text-align: center; /* centre le texte ET le bouton inline */
  padding: 0px 20px;
}
	
	/* nous contacter */
.section-nouscontacter {
  position: relative;
  background-image: url("../IMAGES/contact.jpg"); /* Chemin de ton image */
  background-size: cover;       /* Ajuste l’image pour couvrir toute la section */
  background-position: center;  /* Centre l’image */
  background-repeat: no-repeat; /* Ne répète pas l’image */
  color: white;                 /* Le texte reste visible */
  padding: 100px 20px;
  text-align: center;
  min-height: 100vh; /* Utilise la hauteur de la fenêtre du navigateur */
  margin-top: 90px;
}

.section-nouscontacter .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* noir à 50% */
  z-index: 1;
}

.section-nouscontacter .contenu {
  position: relative;
  z-index: 2;
}
	
.contacter-element {
  padding-top: 180px auto 0px;
}

.section-nous_contacter {
	background-color: #F0F0F0;
	padding-bottom: 180px;
	padding-top: 30px;
}
	
.intro-nouscontacter {
	color: black;                 /* Le texte reste visible */
    padding: 0px 80px 0px;
    text-align: center;
	background-color: #F0F0F0;
}
	
.accueil-contacter {
	color: #CC6600;                 /* Le texte reste visible */
    padding: 0px 100px 20px;
    text-align: center;
	font-size: 22px;
	font-weight: bold;
}
	
.contact-buttons {
  margin: 0px 30px;
  font-size: 10px;
}
	
.map-container {
  width: 100%;
  max-width: 200vh;
  margin: auto;
  overflow: hidden; /* IMPORTANT pour arrondir la map */
  align-content: center;
}
	
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
	
.contact-section {
  background: #333333;
  padding: 0px 40px;
}
	
.contact-section .titres-oranges{
  background: #333333;
  padding: 0px 20px;
}

.footer-nouscontacter  {
  color: white;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.5;
  padding: 0 10px;   /* padding ct mobile */
  box-sizing: border-box;
}

.contact-section form {
  max-width: 520px;        /* largeur contrle */
  margin: 0 auto;          /* centr */
  display: flex;
  flex-direction: column;
  gap: 30px;
   padding: 0 10px;      /* padding horizontal sur mobile */
  box-sizing: border-box;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: 'Oswald', sans-serif;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 6px;
  text-align: left;        /* align avec le champ */
}

.form-group input,
.form-group textarea {
  background: white;
  border: 1px solid #555;
  color: #000000;
  padding: 14px;
  border-radius: 6px;
  font-size: 15px;
  width: 100%;
   box-sizing: border-box;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
	margin-bottom: 50px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff6600;
}

.button-orange {
  background-color: #cc6600;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 15px;
  font-size: 1em;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
	font-family: 'Oswald', sans-serif; /* police Oswald */
  font-weight: bold;  
}
	
.button-orange:hover {
  background-color: white; /* Orange plus clair au survol */
  color: #cc6600;
}
 }


/* --- iPad (768px à 1024px) : forcer menu desktop --- */
@media screen and (max-width: 1024px) {
	
main, p {
    padding: 0 50px; /* un peu plus de confort sur iPad */
}
	
.a-propos-container {
  display: block; /* par défaut (mobile/tablette) */
}

header.nav-hidden,
.topnav.nav-hidden {
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

/* navigation tablette */
   .nav-desktop {
  display: none !important; /* ← force à cacher le menu desktop */
}
	
  .topnav {
   display: flex;
   justify-content: flex-start;
   align-items: center;
   position: relative; /* pour qu'il soit toujours visible */
   padding: 1rem 1.5rem;
   background-color: black;
   width: 100%; /* Ajouté pour éviter toute erreur de dimensionnement */ 
   z-index: 1000;
}
	
  .topnav.open {
     flex-direction: column;
	align-items: center;
    justify-content: flex-start;
	position: fixed;
    top: 0;
    height: 100vh;
    width: 100vw;
    background-color: transparent;
    z-index: 1001;
    overflow: hidden; /* ← empêche le scroll et donc les flèches */
}

#myLinks {
  display: none;
  flex-direction: column;
  align-items: center; /* ← centre chaque lien inline-block */
  width: 100%;
  text-align: center;
}

 /* Liens visibles quand menu ouvert */
  .topnav.open #myLinks {
    display: flex;
	z-index: 1001;
    position: relative;
  }

/* Cible uniquement les liens de navigation */
.nav-link {
  display: block;
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 22px;
  text-align: center;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #CC6600;
}
	
.style-logo-ferme {
  width: 150px;
  height: auto;
  display: block;
  margin-bottom: 10px;
  margin-top: 10px;
}
	
.logo-link {
  margin: 0;
  padding: 0;
}

.logo-ouvert {
  display: none;
  padding-bottom: 20px;
}
	
/* Quand menu est ouvert → cacher logo blanc, afficher logo original */
.topnav.open .logo-link {
  display: none;
}
	
/* Logo détaillé – visible uniquement menu ouvert */
.topnav.open .logo-ouvert {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 40px;
  z-index: 1001;
  position: relative;
}
	
/* Style de l'image dans le logo ouvert */
.style-logo-ouvert {
  display: block;
  width: 190px;
  max-width: 90%;
  height: auto;
  margin: 0 auto;
}

/* Icône hamburger nécessaire */
  .hamburger-icon {
   position: absolute;
   top: 1.9rem;
   right: 2rem;
   width: 35px;
   height: 17.5px;	  
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   align-items: center;
   cursor: pointer;
   z-index: 1100;
}

.hamburger-icon span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: white;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.hamburger-icon.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-icon.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-icon.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
	
.bouton-contact-mobile {
  background-color: #CC6600;
  color: white;
  padding: 12px 5px !important;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 5px;
  margin-bottom: 30px;
  display: inline-block;
  transition: background 0.3s;
  text-align: center;
}
	
.bouton-contact-mobile:hover {
 background-color: white;  /* fond blanc */
  color: #cc6600;            /* texte orange */
  border: 0px solid 
}

.topnav.open .bouton-contact-mobile {
  display: inline-block;
  margin: 40px auto 30px auto;
  padding: 10px 50px;
  border-radius: 12px; /* Ajouter de l'espace autour du texte (plus large en haut/bas et légèrement plus large sur les côtés) */
  font-size: 18px; /* Ajuste la taille du texte si nécessaire */
  width: max-content; /* ← largeur automatique selon le contenu */
  max-width: 90%;   
  min-width: 180px;
}

.topnav.open .bouton-contact-mobile:hover {
  background-color: white;  /* Fond blanc lors du survol */
  color: #CC6600;           /* Texte orange lors du survol */
}

 #accueil .style-logo {
    width: 150px;
    margin-top: 10px;
 }
	
.topnav.open::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 0;
}

.nav-hidden {
  transform: translateY(-100%); /* Déplace la barre de navigation hors de l'écran */
  transition: transform 0.3s ease-in-out;
}
	
.br-mobile {
  display: inline;
}

 /* Ajuster le footer mobile */
  .footer-mobile {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    font-family: 'Oswald', sans-serif;
}
	
.footer-logo { 
	  width: 180px; 
	  margin-bottom: 25px; 
}
	
.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: center; /* pour centrer horizontalement */
}
	
  .footer-nav a {
    display: inline;
    color: white;
    font-weight: 700;
    margin: 12px 0;
    text-decoration: none;
    font-size: 20px;
}
	
  .footer-coordonnees h2 {
     margin: 25px 0 10px; 
	 font-size: 20px; 
	 font-weight: 700; 
}
	
  .coord-label { 
	 font-size: 18px; 
	 font-weight: 600; 
	 margin-top: 10px; 
}
	
  .coord-address { 
	 font-size: 16px; 
	 margin-top: 5px; 
	 margin-bottom: 50px;
	 line-height: 1.5; 
	 font-weight: normal;
	  text-decoration: none;
	  color: white; 
}

.coord-address a { 
  color: white; /* Couleur du lien */
  text-decoration: none; /* Enlever le souligné */
}

.phone-link {
  color: white; /* Couleur pour rendre le numéro de téléphone visible */
  text-decoration: none; /* Enlever le souligné si tu veux */
  font-weight: normal;
  font-size: 16px; 
  margin-bottom: 20px;
}
	
.phone-link:hover {
  text-decoration: none; /* Souligner au survol */
}

 .footer-social {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

 .footer-social .social-icon svg {
    width: 30px;
    height: 30px;
    transition: transform 0.2s ease;
    margin-top: 10px;
}

.footer-social .social-icon:hover svg {
    transform: scale(1.2);
	margin-top: 10px;
}

.contact-button {
  background-color: #cc6600;
  color: white;
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
}

/* Changement de couleur au survol */
.contact-button:hover {
  background-color: white;  /* fond blanc */
  color: #cc6600;            /* texte orange */
  border: 0px solid 
}

.footer-copyright {
  font-size: 14px;
  color: #fff; /* Assure-toi que le texte est visible, ici blanc */
  text-align: center;
  margin-top: 20px;
  font-family: 'Oswald', sans-serif; /* Ou la police que tu utilises */
  font-weight: normal;
}

.footer-copyright #year {
  font-weight: bold;
}
	
.footer-nav a:hover,
.phone-link:hover,
#google-map-link:hover {
  color: #cc6600; /* Couleur orange au survol */
  text-decoration: none; /* Souligner au survol */
}

/* Mobile : afficher footer-mobile, cacher footer-desktop */
 .footer-mobile {
    display: block;
  }
	
  .footer-desktop {
    display: none;
  }
	
/* page accueil */
.section-accueil {
  position: relative;
  background-image: url("../IMAGES/image_accueil.jpg"); /* Chemin de ton image */
  background-size: cover;       /* Ajuste l’image pour couvrir toute la section */
  background-position: center;  /* Centre l’image */
  background-repeat: no-repeat; /* Ne répète pas l’image */
  color: white;                 /* Le texte reste visible */
  padding: 100px 50px;
  text-align: center;
  min-height: 100vh; /* Utilise la hauteur de la fenêtre du navigateur */
  margin-top: 90px;
}
	
.section-accueil .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* noir à 50% */
  z-index: 1;
}

.section-accueil .contenu {
  position: relative;
  z-index: 2;
}
	
.button-blanc {
  padding-top: 100px;
  background-color: white; /* Orange */
  color: #cc6600; /* Texte en blanc */
  padding: 10px 20px; /* Ajuste la taille du bouton */
  border: none; /* Supprime la bordure */
  border-radius: 15px; /* Coins arrondis */
  font-size: 1em; /* Ajuste la taille du texte */
  cursor: pointer; /* Change le curseur lorsque l'on passe dessus */
  text-decoration: none;
  transition: background-color 0.3s ease; /* Transition pour l'effet au survol */
}

.button-blanc:hover {
  background-color: #cc6600; /* Orange plus clair au survol */
  color: #FFFFFF;
}

.section-a_propos {
	background-color: #ECECEC;
	background-size: cover;
	color: black;                 /* Le texte reste visible */
    padding: 40px 20px 110px;
    text-align: center;
}
	
.accueil-apropos {
	color: black;                 /* Le texte reste visible */
    text-align: center;
	padding-bottom: 65px;
}
	
.intro {               /* Le texte reste visible */
   max-width: 550px;
	margin: 0px auto 20px;
}
	
.section-image-seule img {
  width: auto;         /* largeur automatique pour garder les proportions */
  display: flex;      /* éviter les espaces indésirables sous l'image */
  margin: 0 auto;      /* centrer l'image horizontalement */
  align-content: center;
  align-items: center;
  object-position: right center;
}
	
.section-nosservices {
  position: relative;
  text-align: center;
  color: white;
  overflow: visible;
  background-color: white;
	padding-bottom: 50px;
}

.section-nosservices h2.titres-noirs {
  color: #333333;
}

.section-nosservices h4 {
  font-weight: bold;
}

.realisations-swiper img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  height: auto;
  padding-bottom: 0px;
  padding-top: 30px;
}
	
 .carousel-wrapper {
    width: 100%;
    max-width: 768px; 
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.realisations-swiper {
  width: 100%;
  max-width: 1000px; /* ou 800px selon la taille souhaitée */
  margin: 0 auto 40px; /* centré horizontalement */
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

	
.realisations-swiper .swiper-slide {
  transition: transform 0.5s ease;
  opacity: 0.5;
  transform: scale(0.8);
}

.realisations-swiper .swiper-slide-active {
  transform: scale(1);
  opacity: 1;
  z-index: 2;
} 
	
/* Flèches */
.swiper-button-prev,
.swiper-button-next {
   color: white !important; /* force la couleur blanche */
  font-size: 14px !important;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 6px 10px;
  border-radius: 8px;
  width: auto;
  height: auto;
  top: 45%;
  transform: translateY(-50%);
  transition: background-color 0.3s;
}

/* Style du symbole flèche (pseudo-élément) */
.swiper-button-prev::after,
.swiper-button-next::after {
  color: white !important;
  font-size: 20px !important;
}
	
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: rgba(204, 102, 0, 1); /* couleur orange au hover */
  color: white;
  font-size: 18px;
  border-radius: 8px;
}

/* Pagination : étoiles */
.swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 50px;
}

.swiper-pagination-bullet {
  background: none !important;
  width: 36px;
  height: 36px;
  opacity: 0.5;
  background-image: url("../IMAGES/etoile-secondaire.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
}

.swiper-pagination-bullet-active {
  background-image: url("../IMAGES/etoile.png");
  opacity: 1;
  transform: scale(1.3);
  color: #CC6600;
}

#realisation-description {
  margin-top: 30px;
  margin-bottom: 80px;
}

#realisation-titre {
  font-size: 1.5rem; /* ajuste selon ton besoin */
  color: white;
  font-weight: bold;
  margin-bottom: 25px;
}
	
.lien-orange {
  color: #CC6600;
  font-weight: bold;
  text-decoration: none;
  margin-top: 60px;
}

.lien-orange:hover {
  text-decoration: underline;
}
	
.escalier_nousjoindre img {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  margin: 0;
  object-fit: cover;
  transition: all 0.3s ease;
}

.section-contact {
  background: #FFE9D2;
 padding: 10px 20px 100px;
 text-align: center;
}
	
.contact h4 {
 color: black;
 text-align: center;
 font-weight: bold;
 font-size: 30px;
}
	
.contact-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px; /* Marge entre les deux boutons */
  margin-top: 70px;
}

.btn-contact .icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.btn-contact .text {
  flex-grow: 1;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-contact:hover {
  background-color: white;
  color: #CC6600;
}
	
 /* page a propos */	
.section-apropos {
  position: relative;
  background-image: url("../IMAGES/a_propos.jpg"); /* Chemin de ton image */
  background-size: cover;       /* Ajuste l’image pour couvrir toute la section */
  background-position: center;  /* Centre l’image */
  background-repeat: no-repeat; /* Ne répète pas l’image */
  color: white;                 /* Le texte reste visible */
  padding: 200px 20px;
  text-align: center;
  margin-top: 90px;
  min-height: 100vh;
 
}
	
.section-apropos .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* noir à 50% */
  z-index: 1;
}
	

	
.container {
   display: block;
}
	
.valeurs {
  margin-top: 4rem;
}
	
	/* Nouveau bloc commun */
.contenu-mission-valeurs {
  background: linear-gradient(to bottom, #cc6600, #E8B98B);
  text-align: center;
  padding-top: 200px; /* espace haut pour image */
  padding-bottom: 150px;
  position: relative;
  z-index: 1;
  margin-top: 0; /* Important */
}
	
.titres-noirs h2 {
	font-size: 37px;
	font-weight: bold;
	text-align: center;
	color: #333333;
}	
	
.mission p, .valeurs p {
  font-size: 0.95em;
  line-height: 1.6em;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  color: white;
  text-align: center;
  margin: 0 auto;
  max-width: 550px;
}

.soud-apropos {
  display: flex;
  justify-content: center; /* centre horizontalement */
  margin: 0px 0;          /* espace au-dessus et en dessous */
}

.soud-apropos img {
  width: 110%;
  height: auto;
  display: block;
}
	
.titres-oranges {
  padding: 100px 0px 30px 0px;
}
	
.histoire {
  position: relative;
  background-color: #000; /* fond noir comme sur ton image */
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 40px; /* espace entre les vnements */
  width: 100%;   
  max-width: none;
  margin: 0;
  padding: 20px 10px 70px 10px; 
  overflow: hidden;
}

/* IMAGE en arrire-plan sur le ct droit */
.histoire img.tanguay {
  position: absolute;
  top: 0;
  right: 0;          /* colle  droite */
  height: 100%;      /* prend toute la hauteur de la section */
  width: auto;       /* garde les proportions */
  object-fit: contain;
  opacity: 1;      /* discrte en arrire-plan */
  z-index: 1;        /* derrire le texte */
}
	
.histoire > *:not(img)  {
  position: relative;
  z-index: 2; /* tout le texte au-dessus de l'image */
}
	
.conteneur-texte {
  max-width: 600px;     /* largeur fixe du texte */
  margin: 0 auto;       /* centre horizontalement */
  padding: 40px 0px;   /* espacement interne */
  position: relative;   /* ncessaire pour passer devant limage */
  z-index: 2;           /* texte au-dessus du fond */
}

/* On s'assure que les items utilisent la largeur fixe */
.conteneur-texte .ouverture-item,
.conteneur-texte .forge-item,
.conteneur-texte .services-item {
  width: 100%;
}
	
.ouverture-item,
.services-item {
  display: flex;
  align-items: center; /* pour que le texte commence au mme niveau que l'anne */
  gap: 1px; /* espace entre l'anne et le texte */
}

.annee {
   writing-mode: vertical-rl; /* empile verticalement les chiffres */
  text-orientation: upright;
  font-weight: bold;
  color: #cc6600; /* orange */
  font-size: 2.5rem;/* vite de rtrcir */ 
	margin-top: 0px;
}

	.forge-item .content {
  display: flex;
  justify-content: space-between; /* espace entre texte et anne */
  align-items: center;        /* aligne en haut du texte */
}

.forge-item .content p {
  margin: 0 30px; /* enlve marge par dfaut pour mieux aligner */
  flex: 1;   /* prend tout lespace restant */
	text-align: right;
}

.forge-item .annee {
  font-weight: bold;
  writing-mode: vertical-rl; /* chiffre empil verticalement */
  text-orientation: upright;
  margin-right: 0px;         /* espace entre texte et anne */
}

.content {
  flex: 1;
   padding: 0px 50px;
}

.services-item {
   padding-bottom: 100px;
}
	
.contact-button {
  background-color: #cc6600;
  color: white;
  padding: 10px 10px;
  margin: 60px auto; 
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  display: block;
  text-align: center;
  transition: all 0.3s ease;
  white-space: nowrap;
  max-width: 200px;
}
	
/* Changement de couleur au survol */
.contact-button:hover {
  background-color: white;  /* fond blanc */
  color: #cc6600;            /* texte orange */
  border: 0px solid transparent;
}


	/* page nos services */
.section-services {
  display: flex;
  background-image: url("../IMAGES/services.jpg"); /* Chemin de ton image */
  background-size: cover;       /* Ajuste l’image pour couvrir toute la section */
  background-position: center;  /* Centre l’image */
  background-repeat: no-repeat; /* Ne répète pas l’image */
  color: white;                 /* Le texte reste visible */
  padding: 100px 20px;
  text-align: center;
  min-height: 100vh; /* Utilise la hauteur de la fenêtre du navigateur */
  margin-top: 0px;
  justify-content:center;
  align-items:center;
  flex-direction:column;
}

.section-services .overlay {
  position: absolute;
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* noir à 50% */
  z-index: 1;
}

.services-element {
  padding-top: 230px;
}
	
.page-services{
  width:100%;
  display:flex;
  flex-direction:column;
}
	
.intro-services{
  padding-top:10px;
  padding-bottom: 200px;
  text-align:center;
  z-index: 2; 
  position: relative;
}
	
#soudeurservices {
  width: 425px;
  height: auto;
  display: block;
	margin-top: -2px;
}
	
	/* Soudeur */
.soudeurservices {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  overflow: visible;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0rem; /* réduit l'espacement */
  padding: 0 0.5rem;
}

	
/* Cartes Services */
.servicesofferts{
	display:flex;
	flex-direction:column;
}
	
.servicesofferts > div{
  overflow:hidden;
}
	
.section-accueil .contenu {
  position: relative;
  z-index: 2;
}
	
.texte-serviceblanc {
 font-size: 20px;         /* texte plus petit */
  line-height: 1.5;        /* espace entre les lignes pour la lisibilit */
  margin-bottom: 15px;     /* espace entre paragraphes */
  color: white;             /* blanc sur fond overlay */
  text-align: center;
  padding: 0 50px;  
max-width: 600px;  
	margin-left: auto;   /* centre */
  margin-right: auto;
}
	
.texte-servicenoir {
  font-size: 20px;         /* texte plus petit */
  line-height: 1.5;        /* espace entre les lignes pour la lisibilit */
  margin-bottom: 15px;     /* espace entre paragraphes */
  color: black;             /* blanc sur fond overlay */
  text-align: center;
  padding: 0 50px;  
max-width: 600px;  
	margin-left: auto;   /* centre */
  margin-right: auto;
}
	
	
/* page nos ralisations */
.section-realisations {
  position: relative;
  background-image: url("../IMAGES/realisation.jpg"); /* Chemin de ton image */
  background-size: cover;       /* Ajuste l’image pour couvrir toute la section */
  background-position: center;  /* Centre l’image */
  background-repeat: no-repeat; /* Ne répète pas l’image */
  color: white;                 /* Le texte reste visible */
  padding: 100px 20px;
  text-align: center;
  min-height: 100vh; /* Utilise la hauteur de la fenêtre du navigateur */
  margin-top: 90px;
}

.section-realisations .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* noir à 50% */
  z-index: 1;
}


.realisations-element {
  padding-top: 200px;
}


.section-realisation .contenu {
  position: relative;
  z-index: 2;
}

.gallerie  {
  background-color: #333333;
  padding-top: 30px;
	padding-bottom: 150px;
}
	
.intro-realisation {
	color: black;                 /* Le texte reste visible */
    padding: 40px 80px 150px;
    text-align: center;
	}
	
.section-projets h2,
.portfolio-section h2 {
  margin-top: 120px;
  margin-bottom: 5px;
  color: #cc6600;
}

.section-header h4 {
  color: white;
  margin-bottom: 10px;
}

.projets-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.projet {
  flex: 1 1 100%; /* mobile : 1 colonne */
  max-width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
	margin-bottom: 30px;
}

.projet:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.projet img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  cursor: pointer;
}	
	
/* Dplacer le bouton X (fermer) en haut  droite de limage */
.lb-close {
  position: absolute !important;
  top: -32px  !important;
  right: 16px !important;
  left: auto !important;
  bottom: auto !important;
}

.portfolio-section {
  text-align: center; /* centre le texte ET le bouton inline */
  padding: 0px 20px;
}
	
	/* page nous contacter */
.section-nouscontacter {
  position: relative;
  background-image: url("../IMAGES/contact.jpg"); /* Chemin de ton image */
  background-size: cover;       /* Ajuste l’image pour couvrir toute la section */
  background-position: center;  /* Centre l’image */
  background-repeat: no-repeat; /* Ne répète pas l’image */
  color: white;                 /* Le texte reste visible */
  padding: 100px 20px;
  text-align: center;
  min-height: 100vh; /* Utilise la hauteur de la fenêtre du navigateur */
  margin-top: 90px;
}

.section-nouscontacter .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* noir à 50% */
  z-index: 1;
}

.section-nouscontacter .contenu {
  position: relative;
  z-index: 2;
}
	
.contacter-element {
  padding-top: 160px;
}
	
.section-nous_contacter {
	background-color: #F0F0F0;
	padding-bottom: 180px;
	padding-top: 30px;
}
	
.intro-nouscontacter {
	color: black;                 /* Le texte reste visible */
    padding: 0px 80px 0px;
    text-align: center;
	background-color: #F0F0F0;
}
	
.accueil-contacter {
	color: #CC6600;                 /* Le texte reste visible */
    padding: 0px 100px 20px;
    text-align: center;
	font-size: 22px;
	font-weight: bold;
}
	
.map-container {
  width: 100%;
  max-width: 100%;  /* pas 100vh */
  margin: 0;
  overflow: hidden;
}
	
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
	
.contact-section {
  background: #333333;
  padding: 80px 20px;
}

.footer-nouscontacter  {
  color: white;
  text-align: center;
	margin: 60px 40px;
}

.contact-form {
  max-width: 520px;        /* largeur contrle */
  margin: 0 auto 50px;          /* centr */
  display: flex;
  flex-direction: column;
  gap: 22px;
}
	.contact-section .titres-oranges{
  background: #333333;
  padding: 0px 20px 10px;
}

	.contact-section,
.contact-section input,
.contact-section textarea,
.contact-section label,
.contact-section button {
  font-family: inherit;
}


.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: 'Oswald', sans-serif;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 6px;
  text-align: left;        /* align avec le champ */
}

.form-group input,
.form-group textarea {
  background: white;
  border: 1px solid #cc6600;
  color: #000000;
  padding: 14px;
  border-radius: 6px;
  font-size: 15px;
  width: 100%;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
	margin-bottom: 50px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff6600;
}

.button-orange {
  background-color: #cc6600;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 15px;
  font-size: 1em;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
	font-family: 'Oswald', sans-serif; /* police Oswald */
  font-weight: bold;  
}
	
.button-orange:hover {
  background-color: white; /* Orange plus clair au survol */
  color: #cc6600;
}
 }

/* iPad seulement */
@media screen and (min-width: 768px) and (max-width: 1699px) {
	/* body de base */
h1 {
  padding-top: 130px;
  color: #CC6600; /* Orange */
  font-size: 1.4em; /* Ajuste la taille selon ton design */
  text-align: center; /* Centrer le texte si besoin */
}
	
h2 {
	font-size: 37px;
	font-weight: bold;
	text-align: center;
	padding-top: 0px;
}
	
h3 {
	font-size: 25px;
	font-weight: bold;
	text-align: center;
	padding-top: 0px;
}

  h4 {
  font-size: 26px;
  text-align: center;
  font-weight: 600;
}
	
h6 {
  padding-top: 100px;
  color: white; /* Blanc */
  font-weight: bold; /* Gras */
  font-size: 2.75em; /* Ajuste la taille selon ton design */
  text-align: center; /* Centrer le texte si nécessaire */
  padding-bottom: 30px;
}

.button-blanc {
  padding-top: 90px;
  background-color: white; /* Orange */
  color: #cc6600; /* Texte en blanc */
  padding: 12px 22px; /* Ajuste la taille du bouton */
  border: none; /* Supprime la bordure */
  border-radius: 15px; /* Coins arrondis */
  font-size: 1.2em; /* Ajuste la taille du texte */
  cursor: pointer; /* Change le curseur lorsque l'on passe dessus */
  text-decoration: none;
  transition: background-color 0.3s ease; /* Transition pour l'effet au survol */
}

.button-blanc:hover {
  background-color: #cc6600; /* Orange plus clair au survol */
  color: #FFFFFF;
}
	
.button-orange {
  background-color: #cc6600; /* Orange */
  color: white; /* Texte en blanc */
  padding: 10px 20px; /* Ajuste la taille du bouton */
  border: none; /* Supprime la bordure */
  border-radius: 15px; /* Coins arrondis */
  font-size: 1em; /* Ajuste la taille du texte */
  cursor: pointer; /* Change le curseur lorsque l'on passe dessus */
  text-decoration: none;
  transition: background-color 0.3s ease; /* Transition pour l'effet au survol */
}
	
.btn-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #CC6600;
  color: white;
  padding: 8px 20px;
  border-radius: 15px; /* Coins plus arrondis */
  width: 100%;
  max-width: 450px; /* Plus long si possible */
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  justify-content: flex-start;
}

.button-orange:hover {
  background-color: white; /* Orange plus clair au survol */
  color: #cc6600;
}
	
.titres-oranges {
	font-size: 50px;
	color: #CC6600;
	margin-bottom: 5px;
}
	
.fond-orange {
  background-color: #cc6600;
  padding: 1rem 1rem 9.5rem; /* de l'espace en bas pour le soudeur */
  position: relative;
  z-index: 1;
}

  .service-overlay {
  background-color: rgba(0, 0, 0, 0.6); /* filtre noir semi-transparent */
  color: white;
  padding: 3rem 1rem;
  border-radius: inherit;
  width: 100%;
  text-align: center; 
  display: inline-block;
  flex-direction: column;
  justify-content: center; /* Centrer verticalement dans l'overlay */
  height: 100%;
}
	
/* Soudeur */
.soudeur-wrapper {
  position: relative;
  height: 20px;
  z-index: 3;
}

.soudeur-img {
  position: absolute;
  top: -475px;
  left: 0;
   transform: translateX(0);
  transition: none; /* pour désactiver les animations gênantes */
  z-index: 1000;   
  width: 500px;
  max-width: 80vw;
}

.escaliers-garde h3,
.soudure h3,
.decoupe-plasma h3,
.mecanique-industrielle h3,
.escaliers-garde p,
.soudure p,
.decoupe-plasma p,
.mecanique-industrielle p {
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  box-sizing: border-box;
  text-align: center; /* facultatif si tu veux centrer le texte */
}
	
.escaliers-garde h3,
.soudure h3,
.decoupe-plasma h3,
.mecanique-industrielle h3 {
	color: #CC6600;
	white-space: nowrap; 
	margin: 0rem;
}
	
/* Services box */
.escaliers-garde,
.soudure,
.decoupe-plasma,
.mecanique-industrielle {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  overflow: hidden;
  margin: 1rem auto;
  max-width: 400px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.escaliers-garde {
  background-image: url("../IMAGES/escalier-bulle.jpg");
}

.soudure {
  background-image: url("../IMAGES/soudeur-bulle.jpg");
}

.decoupe-plasma {
  background-image: url("../IMAGES/plasma-bulle.jpg");
}

.mecanique-industrielle {
  background-image: url("../IMAGES/mecanique-bulle.jpg");
}

.section-nosrealisations {
 background-color: #333333; 
 color: white; 
 padding: 10px 20px 60px;
 text-align: center;
}

.section-nosrealisations h4 {
  margin-bottom: 15px; /* Réduit l’espace entre le h4 et le carrousel */
}
	
.mecano-apropos {
 position: relative;   /* reste dans le flux normal */
  left: auto;
  top: auto;
  width: 90%;           /* sadapte  lcran */
  max-width: 500px;
  margin: 0px auto -160px;
  transform: translateY(-0px);
	z-index: 5;
}
	
.mecano-apropos img {
  width: 100%;
  height: auto;
  display: block;
  z-index: 1;
}
	
.projet {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }

.intro-realisation {
	color: black;                 /* Le texte reste visible */
    padding: 40px 200px 150px;
    text-align: center;
	}
	
.section-header p,
.portfolio-section p {
  color: white;
  margin-bottom: 100px;
  max-width: 60%;
  text-align: center;
  margin: 30px auto 100px;
}

.services-container {
  display: grid;
   grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2 colonnes max, largeur flexible */
  gap: 2rem;                                      /* espace entre bulles */
  max-width: 900px;                               /* largeur totale du groupe de bulles */
  margin: 0 auto;
  padding: 0 1rem;                                /* padding responsive */
}

.services-container > div {
  width: 100%;             /* s'adapte  la colonne */
  max-width: 400px;        /* largeur max de chaque bulle */
  height: 360px;           /* hauteur fixe */
}
	
.section-nosservices h2 {
   color: #3B3B3B;
} 

	/* Escaliers */
.serviceescalier {
  position: relative;
  background-image: url("../IMAGES/escalier-bulle.jpg");
  background-size: cover;       /* Ajuste l’image pour couvrir toute la section */
  background-position: center;  /* Centre l’image */
  background-repeat: no-repeat; /* Ne répète pas l’image */
  color: white;                 /* Le texte reste visible */
  padding: 50px 150px 0px;
  text-align: center;
  min-height: 70vh; /* Utilise la hauteur de la fenêtre du navigateur */
}

.serviceescalier .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
 background: rgba(51, 51, 51, 0.7); /* noir à 50% */
  z-index: 1;
}
	
/* Soudure */
.servicesoudure {
  position: relative;
  background-image: url("../IMAGES/soudeur-bulle.jpg");
  background-size: cover;       /* Ajuste l’image pour couvrir toute la section */
  background-position: center;  /* Centre l’image */
  background-repeat: no-repeat; /* Ne répète pas l’image */
  color: black;                 /* Le texte reste visible */
  padding: 100px 20px 0px;
  text-align: center;
  min-height: 60vh; /* Utilise la hauteur de la fenêtre du navigateur */
}

.servicesoudure .overlayblanc {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.7); /* noir à 50% */
  z-index: 1;
}
	
/* Dcoupe plasma */
.servicedecoupe {
  position: relative;
  background-image: url("../IMAGES/plasma-bulle.jpg");
  background-size: cover;       /* Ajuste l’image pour couvrir toute la section */
  background-position: center;  /* Centre l’image */
  background-repeat: no-repeat; /* Ne répète pas l’image */
  color: white;                 /* Le texte reste visible */
  padding: 100px 20px 0px;
  text-align: center;
  min-height: 60vh; /* Utilise la hauteur de la fenêtre du navigateur */
}
	
.servicedecoupe h2{
  color: black;
  padding-top: 100px;/* Le texte reste visible */
}


.servicedecoupe .overlayorange {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(205,105,4,0.7); /* noir à 50% */
  z-index: 1;
}
	
	/* Mcanique */
.servicemecanique {
  position: relative;
  background-image: url("../IMAGES/mecanique-bulle.jpg");
  background-size: cover;       /* Ajuste l’image pour couvrir toute la section */
  background-position: center;  /* Centre l’image */
  background-repeat: no-repeat; /* Ne répète pas l’image */
  color: white;                 /* Le texte reste visible */
  padding: 100px 20px 0px;
  text-align: center;
  min-height: 60vh; /* Utilise la hauteur de la fenêtre du navigateur */
}

.servicemecanique .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
   background: rgba(3,3,3,0.7); /* noir à 50% */
  z-index: 1;
}

	
.apropos-element {
  padding-top: 150px;
}
	
.intro-apropos {
  margin-bottom: 20px; 
}
	
.intro-apropos,
.accueil-apropos {
  max-width: 550px;
  text-align: center;
	margin: 0 auto 20px; 
}
	
.a_propos_section2 {
 background-color: #f0f0f0;
  padding: 25px 20px;
}
	
.fond-apropos {
background-color: #f0f0f0;
margin-top: 0px;
max-height: 750px;
	}
	
.section-limon {
  position: relative;
  background-image: url("../IMAGES/limon.jpg"); /* Chemin de ton image */
  background-size: cover;       /* Ajuste l’image pour couvrir toute la section */
  background-position: center;  /* Centre l’image */
  background-repeat: no-repeat; /* Ne répète pas l’image */
  color: white;                 /* Le texte reste visible */
  padding: 30px 20px;
  text-align: center;
  min-height: 45vh; /* Utilise la hauteur de la fenêtre du navigateur */
}
	
.section-limon .overlay-gris {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(51, 51, 51, 0.68);
  z-index: 1;
}

.style-logo-limon {
  width: 220px;
  height: auto;
  display: block;
  margin: 125px auto 50px auto;
}
	
.section-limon .contenu {
  max-width: 650px;       /* limite la largeur du texte */
  margin: 0 auto;         /* centre le texte horizontalement */
  padding: 0 25px;        /* espace  gauche et  droite */
  position: relative;     /* pour rester indpendant de l'image */
  z-index: 2;             /* au-dessus de l'image si elle est derrire */
}
	
.texte-limon {
  font-size: 20px;         /* texte plus petit */
  text-transform: uppercase; /* majuscules */
  line-height: 1.7;        /* espace entre les lignes pour la lisibilit */
  margin-bottom: 60px;     /* espace entre paragraphes */
  color: #fff;    
  padding: 0 25px;  /* blanc sur fond overlay */
}
	
.texte-limon2 {
  font-size: 20px;         /* texte plus petit */
  line-height: 1.5;        /* espace entre les lignes pour la lisibilit */
  margin-bottom: 40px;     /* espace entre paragraphes */
  color: #fff;             /* blanc sur fond overlay */
  text-align: center;
  margin-left: 20px;
}

/* Soumission */
.demandesoumission{
  background:white;
  text-align:center;
  border-radius:8px;
 padding-bottom:125px;
	 margin: 0 auto; /* centre horizontalement */
  max-width: 425px; /* optionnel, limite la largeur */
}

/* Espacement entre le titre et le paragraphe */
.demandesoumission .intro-apropos {
  margin-top: 20px;   /* espace au-dessus si besoin */
  margin-bottom: 40px; /* espace en dessous, avant le bouton */
}

/* Espacement au-dessus du bouton si tu veux contrler plus prcisment */
.demandesoumission .contact-button {
  display: inline-block;  /* assure que margin fonctionne bien */
  margin-top: 40px;       /* espace entre le paragraphe et le bouton */
}
	
.footer-nouscontacter {
margrin: 0 auto;
	padding: 0 35px;
}
	
.contact-section,
.contact-section input,
.contact-section textarea,
.contact-section label,
.contact-section button {
  font-family: inherit;
}

.contact-section { 
	background: #333333; 
	padding: 30px 40px; 
	} 
	
.contact-section .titres-oranges { 
	background: #333333;
	padding: 0px 20px; 
    } 
	
.footer-nouscontacter { 
	color: white; 
	text-align: center; 
	margin-bottom: 30px; 
	line-height: 1.5; 
	padding: 0 10px; /* padding ct mobile */ 
	box-sizing: border-box; 
	} 

.contact-section form { 
	max-width: 520px; /* largeur contrle */ 
	margin: 0 auto; /* centr */ 
	display: flex; 
	flex-direction: column; 
	gap: 30px; 
	padding: 0 10px; /* padding horizontal sur mobile */ 
	box-sizing: border-box; 
	} 
	
	.form-group { 
		display: flex; 
		flex-direction: column; 
	} 
	
	.form-group label { 
		font-family: 'Oswald', sans-serif; 
		color: #ffffff; 
		font-size: 20px; 
		letter-spacing: 1px; 
		margin-bottom: 6px; 
		text-align: left; /* align avec le champ */ 
	} 
	
	.form-group input, .form-group textarea { 
		background: white; 
		border: 1px solid #555; 
		color: #000000; 
		padding: 14px; 
		border-radius: 6px; 
		font-size: 15px; 
		width: 100%; 
		box-sizing: border-box; 
	} 
	
	.form-group textarea { 
		min-height: 140px; 
		resize: vertical; 
		margin-bottom: 50px; 
	} 
	
.form-group input:focus, .form-group textarea:focus { 
	outline: none; 
	border-color: #ff6600; 
	} 
	
	.button-orange { 
		background-color: #cc6600; 
		color: white; 
		padding: 10px 20px; 
		border: none; 
		border-radius: 15px; 
		font-size: 1em; 
		cursor: pointer; 
		text-decoration: none; 
		transition: background-color 0.3s ease; 
		font-family: 'Oswald', sans-serif; /* police Oswald */ 
		font-weight: bold; 
	} 
	
	.button-orange:hover { 
		background-color: white; /* Orange plus clair au survol */ 
		color: #cc6600; }
}

/* Version ordinateur */
@media (min-width: 1025px) {
	
.topnav { 
  display: none; 
}

/* navigation ordi */
.nav-links {
  display: flex;
  gap: 2rem; /* espace entre les liens */
  align-items: center;
}
	
.nav-desktop {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 10px 40px;
   background: black;
   width: 100%;
}

 .nav-left, .nav-center, .nav-right {
   display: flex;
   align-items: center;
}

  .nav-left {
    flex: 1;
    justify-content: flex-start;
    gap: 20px;
}

  .nav-center {
	display: flex;
    justify-content: center;
	align-items: center;
	gap: 50px;
}

  .nav-right {
    flex: 1;
    justify-content: flex-end;
}

  .nav-desktop a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

  .nav-desktop a:hover {
    background-color: black;
    color: #CC6600;
}

  .desktop-logo {
    width: 180px;
    height: auto;
}

  .contact-button {
    background-color: #CC6600;
    color: white;
    padding: 6px 30px;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background-color 0.3s ease, color 0.3s ease;
}

  .nav-desktop .contact-button:hover {
    background-color: white;
    color: #CC6600;
}
	
/* body normal ordi */
.footer-mobile {
    display: none;
}

h1 {
  padding-top: 160px;
  color: #CC6600; /* Orange */
  font-size: 1.5em; /* Ajuste la taille selon ton design */
  text-align: center; /* Centrer le texte si besoin */
}
	
h2 {
	font-size: 2.5em;
	font-weight: bold;
	text-align: center;
	margin-bottom: 2rem;
}
	
h3 {
	font-size: 25px;
	font-weight: bold;
	text-align: center;
}

  h4 {
  font-size: 1.5em;
  text-align: center;
  margin-top: 1rem; 
}
	
h6 {
  padding-top: 10px;
  color: white; /* Blanc */
  font-weight: bold; /* Gras */
  font-size: 3em; /* Ajuste la taille selon ton design */
  text-align: center; /* Centrer le texte si nécessaire */
  padding-bottom: 10px;
}

/* footer-ordi */	
.footer-desktop {
    background-color: #000;
    color: white;
    padding: 60px;
    font-family: 'Oswald', sans-serif;
}
	
.footer-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;     /* ← centre horizontalement */
  justify-content: center;
  max-width: 1200px; /* ou 1200px selon ton design */
  margin: 0 auto; /* centre horizontalement */
  width: 100%;
  gap: 110px;
  text-align: center;
}

.footer-logo-section {
	max-width: 300px;
    flex: 1;
    display: flex;
    flex-direction: column;  /* Colonne */
    align-items: center;
    justify-content: center;
}

.footer-logo-section img {
    width: 285px;
    margin-top: 60px;
}

.copyright {
    font-size: 14px;
    margin-top: 50px;
	font-weight: normal;
	text-align: center;
	width: 100%;
}

.footer-coordonnees-desktop {
    flex: 1;
	max-width: 300px;
    text-align: center;
	font-size: 16px;
    line-height: 1.5;
}

.footer-coordonnees-desktop h2 {
    font-size: 20px;
    margin-bottom: 8px;
	white-space: nowrap;
}

.footer-social-desktop {
    margin-top: 15px;
    display: flex;
    gap: 20px;
	justify-content: center;
}

.footer-social-desktop .social-icon svg {
    width: 28px;
    height: 28px;
    transition: transform 0.2s ease;
}

.footer-social-desktop .social-icon:hover svg {
   transform: scale(1.2);
}
	
.footer-links {
  max-width: 300px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 35px; /* Augmente à 20px pour plus d’espace */
  justify-content: center;
  margin-top: 45px; /* Pour les descendre un peu vers le bas */
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 20px;
}
	
.footer-links a:hover {
  color: #cc6600; /* Couleur orange au survol */
  text-decoration: none; 
}
	

.coord-label-desktop {
  font-size: 18px;
  margin-bottom: 5px; 
  color: white;
  text-decoration: none;
}

.coord-address a,
.phone-link,
.email-link {
  font-size: 16px;
  color: white;
  text-decoration: none;
  font-weight: normal;
}

.coord-address a:hover,
.phone-link:hover {
  color: #cc6600; /* Couleur orange au survol */
  text-decoration: none; 
}
	
.coord-address,
.phone-link,
.email-link {
  margin-top: 5px; /* réduit l’espace entre les lignes */
  display: block;
}

/* page accueil ordi */
.section-accueil {
  position: relative;
  background-image: url("../IMAGES/image_accueil.jpg"); /* Chemin de ton image */
  background-size: cover;       /* Ajuste l’image pour couvrir toute la section */
  background-position: center;  /* Centre l’image */
  background-repeat: no-repeat; /* Ne répète pas l’image */
  color: white;                 /* Le texte reste visible */
  padding: 100px 20px;
  text-align: center;
  min-height: 100vh; /* Utilise la hauteur de la fenêtre du navigateur */
  margin-top: 50px;
}

.section-accueil .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* noir à 50% */
  z-index: 1;
}

.section-accueil .contenu {
  position: relative;
  z-index: 2;
}

.a-propos-container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
	height: 100%; 
}
	
.section-a_propos {
	background-color: #ECECEC;
	background-size: cover;
	color: black;                 /* Le texte reste visible */
    padding: 2rem 3rem;
    text-align: center;
}
	
.accueil-apropos {
	color: black;                 /* Le texte reste visible */
    text-align: center;
	padding-bottom: 60px
}
	
.accueil-element h1 {
	font-size: 100px;
}
	
.intro,
.accueil-apropos {
    margin-left: 50px;
    margin-right: 50px;
}

.titres-oranges {
	margin-top: 50px;
	color: #CC6600;
}

.button-blanc {
  padding-top: 100px;
  background-color: white; /* Orange */
  color: #cc6600; /* Texte en blanc */
  padding: 10px 20px; /* Ajuste la taille du bouton */
  border: none; /* Supprime la bordure */
  border-radius: 15px; /* Coins arrondis */
  font-size: 1em; /* Ajuste la taille du texte */
  cursor: pointer; /* Change le curseur lorsque l'on passe dessus */
  text-decoration: none;
  transition: background-color 0.3s ease; /* Transition pour l'effet au survol */
}

.button-blanc:hover {
  background-color: #cc6600; /* Orange plus clair au survol */
  color: #FFFFFF;
}
	
.button-wrapper {
  margin-top: 0px;
  text-align: center; /* pour centrer le bouton */
  padding-bottom: 60px
}

.button-orange {
  background-color: #cc6600;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 15px;
  font-size: 1em;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
	
.button-orange:hover {
  background-color: white; /* Orange plus clair au survol */
  color: #cc6600;
}
	
 .section-a_propos,
  .section-image-seule {
    flex: 1;
	flex-basis: 50%;
    max-width: 50%;
}
	
.section-image-seule {
   flex: 1;
  position: relative;
  overflow: hidden;
}

.section-image-seule img {
 position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.section-nosservices {
  position: relative;
  text-align: center;
  color: white;
  overflow: visible;
  background-color: white;
	padding-bottom: 50px;
}

.fond-orange {
  background-color: #cc6600;
  position: relative;
  z-index: 1;
  padding: 50px 0px 220px;
}
	
/* Soudeur */
.soudeur-wrapper {
  position: relative;
  height: auto;
  z-index: 3;
  margin-top: 0px;
  overflow: visible; 
  margin-bottom: 30px; 
}

.soudeur-img {
  position: absolute;
  top: -570px;
  left: 0;
   transform: translateX(0);
  transition: none; /* pour désactiver les animations gênantes */
  z-index: 1000;   
  width: 600px;
  max-width: 80vw;
}
	
.section-nosrealisations {
 background-color: #333333; 
 color: white; 
 padding: 10px 20px 60px;
 text-align: center;
}
	
.section-nosrealisations h4 {
  margin-bottom: 15px; /* Réduit l’espace entre le h4 et le carrousel */
	line-height: 1.4;
}
		
.titres-oranges {
  margin-bottom: 5px; /* Réduit l’espace entre le h2 et le h4 */
}

.bloc-centre-realisations {
    flex-direction: row;
	display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
	max-width: 1100px;           /* 👈 largeur fixe du bloc */
    margin: 0 auto;              /* 👈 centré dans la page */
    padding: 0 20px;    
}
	
.carousel-wrapper {
    flex: 1;
    max-width: 650px;
	margin-top: 30px;
}

.realisations-swiper {
  width: 100%;
  padding: 40px 0;
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
}
	
.realisations-swiper img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  height: auto;
  display: block;
  margin: 0;
}

.realisations-swiper .swiper-slide {
  transition: transform 0.5s ease;
  opacity: 0.5;
  transform: scale(0.8);
}
	
.realisations-swiper .swiper-slide-active {
  transform: scale(1);
  opacity: 1;
  z-index: 2;
} 
	
/* Flèches */
.swiper-button-prev,
.swiper-button-next {
   color: white !important; /* force la couleur blanche */
  font-size: 14px !important;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 6px 10px;
  border-radius: 8px;
  top: 45%;
  transform: translateY(-50%);
}
	
/* Style du symbole flèche (pseudo-élément) */
.swiper-button-prev::after,
.swiper-button-next::after {
  color: white !important;
  font-size: 20px !important;
}
	
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: rgba(204, 102, 0, 1); /* couleur orange au hover */
  color: white;
  font-size: 18px;
  border-radius: 8px;
}

/* Pagination : étoiles */
.swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  position: relative;
  z-index: 10; 
  margin-top: 30px;
  margin-bottom: 0;
  min-height: 50px;
}

.swiper-pagination-bullet {
  background: none !important;
  width: 36px;
  height: 36px;
  opacity: 0.5;
  background-image: url("../IMAGES/etoile-secondaire.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
}

.swiper-pagination-bullet-active {
  background-image: url("../IMAGES/etoile.png");
  opacity: 1;
  transform: scale(1.3);
  color: #CC6600;
}
	
.texte-realisations {
    flex: 1;
    display: flex;             /* 👇 pour centrer verticalement */
    flex-direction: column;
    justify-content: center;   /* 👈 centrage vertical du texte */
    align-items: center;   /* 👈 garde le texte à gauche dans le bloc */
    text-align: center;
    max-width: 500px;
}

/* Styles communs */
#realisation-titre {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

#realisation-description {
  margin-bottom: 30px;
}
	
.lien-realisations {
  margin-top: 60px; /* 👈 espacement entre texte/image et bouton */
}
	
.lien-orange {
  color: #CC6600;
  font-weight: bold;
  text-decoration: none;
  margin-top: 60px;
}

.lien-orange:hover {
  text-decoration: underline;
}

 .bloc-contact-visuel {
    flex-direction: row;
	display: flex;
    justify-content: space-between;
    align-items: stretch;
	height: 100%; 
}

  .escalier_nousjoindre,
  .section-contact {
    flex: 1;
	flex-basis: 50%;
    max-width: 50%
}
	
.escalier_nousjoindre {
   flex: 1;
  position: relative;
  overflow: hidden;
}

.escalier_nousjoindre img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.section-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    background-color: #FFE9D2;
	background-size: cover;
    text-align: center;
}

  .contact {
    width: 100%;
    max-width: 500px;
}

.contact h2 {
margin-top: -55px;
}

.contact h4 {
 color: black;
 text-align: center;
 font-weight: bold;
 font-size: 30px;
}
	
.contact-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px; /* Marge entre les deux boutons */
  margin-top: 70px;
}

.btn-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #CC6600;
  color: white;
  padding: 8px 20px;
  border-radius: 15px; /* Coins plus arrondis */
  width: 100%;
  max-width: 450px; /* Plus long si possible */
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  justify-content: flex-start;
}

.btn-contact .icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.btn-contact .text {
  flex-grow: 1;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-contact:hover {
  background-color: white;
  color: #CC6600;
}

/* page a propos */
.section-apropos {
  position: relative;
  background-image: url("../IMAGES/a_propos.jpg"); /* Chemin de ton image */
  background-size: cover;       /* Ajuste l’image pour couvrir toute la section */
  background-position: center;  /* Centre l’image */
  background-repeat: no-repeat; /* Ne répète pas l’image */
  color: white;                 /* Le texte reste visible */
  padding: 200px 20px;
  text-align: center;
  min-height: 100vh; /* Utilise la hauteur de la fenêtre du navigateur */
  margin-top: 90px;
}
	
.section-apropos .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* noir à 50% */
  z-index: 1;
}
	
.apropos-element {
  padding-top: 150px;
}
	
.a_propos_section2 {
    position: relative; /* pour que l'image se positionne par rapport  cette section */
    padding-bottom: 0;
	display: flex;            /* Flex pour mettre texte et image cte  cte */
    align-items: flex-start;  /* aligne le texte et l'image sur le haut */
    justify-content: center;  /* centre le bloc horizontalement */
    gap: 60px;        
	flex-wrap: wrap;
	background-color: #f0f0f0;
}

.a_propos_section2 .titres-oranges {
  margin-bottom: 100px;
}
	
	.a_propos {
  padding: 0 20px; /* ou aucun padding ? */
  max-width: 600px; /* ou pas dfini */
  margin: 0 auto;
  flex: 1 1 500px; 
}

.intro-apropos,
.accueil-apropos {
  max-width: 550px;
  margin: 0px 50px 20px;
  text-align: center;
}
	
	
.mecano-apropos {
  position: relative;
  z-index: 5;              /* au-dessus de lorange */
  width: 90%;
  max-width: 700px;
  margin: 0 auto -200px;   /* ?? chevauche la section orange */
}


.mecano-apropos img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.container {
   display: block;           /* sassure que limage est visible */
    flex: 1;                  /* occupe moiti de lespace disponible */
    order: 2;   
}

	/* Nouveau bloc commun */
.contenu-mission-valeurs {
	display: flex; 
  background: linear-gradient(to bottom, #cc6600, #E8B98B);
  text-align: center;
   padding: 200px 20px; 
  position: relative;
  z-index: 1;
  margin-top: 0; /* Important */
	flex-direction: row;  /* cte  cte sur grand cran */
    align-items: flex-start; /* aligne le haut des blocs */
}
	
.contenu-mission-valeurs > div {
  margin: 50px auto;          /* centre le bloc si lespace est plus grand que max-width */
  text-align: center;        /* alignement du texte */
    max-width: 900px;    
}

.mission-valeurs-inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 120px;
  max-width: 1300px; /* 500 + 500 + gap */
  margin: 0 auto;
}
	
.titres-noirs h2 {
	font-size: 37px;
	font-weight: bold;
	text-align: center;
	color: #333333;
}	
	
.mission p, .valeurs p {
  font-size: 0.95em;
  line-height: 1.6em;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  color: white;
  text-align: center;
}
	
.mission, .valeurs {
  flex: 1 1 0;   /* assure largeur identique pour chaque bloc */
  max-width: 550px; 
}

.soud-apropos {
  display: flex;
  justify-content: center; /* centre horizontalement */
  margin: 0px 0;          /* espace au-dessus et en dessous */
}

.soud-apropos img {
width: 100%;       /* prend toute la largeur du conteneur */
  height: 750px;     /* fixe la hauteur souhaite */
  display: block;
  object-fit: cover;
}
	
.titres-oranges {
  padding-top: 85px;
}
	
.histoire {
  position: relative;
  background-color: #000; /* fond noir comme sur ton image */
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 40px; /* espace entre les vnements */
  width: 100%;
  margin: 0 auto;
  padding: 20px 10px 70px 10px; 
  overflow: hidden;
}

/* IMAGE en arrire-plan sur le ct droit */
.histoire img.tanguay {
  position: absolute;
  top: 0;
  right: 0;          /* colle  droite */
  height: 100%;      /* prend toute la hauteur de la section */
  width: auto;       /* garde les proportions */
  object-fit: contain;
  opacity: 1;      /* discrte en arrire-plan */
  z-index: 1;        /* derrire le texte */
}
	
.histoire > *:not(img)  {
  position: relative;
  z-index: 2; /* tout le texte au-dessus de l'image */
}
	
.conteneur-texte {
  max-width: 600px;     /* largeur fixe du texte */
  margin: 0 auto;       /* centre horizontalement */
  padding: 40px 0px;   /* espacement interne */
  position: relative;   /* ncessaire pour passer devant limage */
  z-index: 2;           /* texte au-dessus du fond */
  flex-direction: column;
  align-items: center; 
}

/* On s'assure que les items utilisent la largeur fixe */
.conteneur-texte .ouverture-item,
.conteneur-texte .forge-item,
.conteneur-texte .services-item {
  width: 100%;
}
	
.ouverture-item,
.services-item,
.forge-item .content {
  display: flex;
  align-items: flex-start; /* garde le texte align en haut de l'anne */
  gap: 4px; /* espace trs rduit entre anne et texte */
}

	.ouverture-item .content p,
.services-item .content p,
.forge-item .content p {
  flex: 1 1 auto;   /* prend tout l'espace disponible et peut rtrcir */
  min-width: 0;     /* IMPORTANT : permet au p de s'craser si besoin */
  margin: 0;        /* enlve marge par dfaut */
  padding: 0;       /* enlve padding si tu veux coller aux bords */
  box-sizing: border-box;
  /* si tu veux que le texte coupe les mots au besoin : */
  /* word-break: break-word; */
}
	
.ouverture-item,
.services-item {
  display: flex;
  align-items: center; /* pour que le texte commence au mme niveau que l'anne */
  gap: 0px; /* espace entre l'anne et le texte */
}

	
.ouverture-item .annee,
.services-item .annee {
  margin-top: 15px; /* ajustable */
  writing-mode: vertical-rl; /* empile verticalement les chiffres */
  text-orientation: upright;
  font-weight: bold;
  color: #cc6600; /* orange */
  font-size: 2.5rem;/* vite de rtrcir */ 
  margin-right: 20px;
}

	.forge-item .content {
  display: flex;
  justify-content: space-between; /* espace entre texte et anne */
  align-items: center;        /* aligne en haut du texte */
		padding-left: 20px;
}

.forge-item .content p {
   flex: 1 1 auto;  /* prend tout l'espace disponible */
  min-width: 0;    /* permet au texte de rtrcir si besoin */
  margin: 0;
  padding: 0;   /* prend tout lespace restant */
	text-align: right;
}

.forge-item .annee {
  font-weight: bold;
  writing-mode: vertical-rl; /* chiffre empil verticalement */
  text-orientation: upright;
  color: #cc6600;
  margin-left: 20px; /* distance par rapport au texte */
  margin-top: 0; 
  font-size: 2.5rem;	
}

.content {
  flex: 1;
}

.contact-button {
  background-color: #cc6600;
  color: white;
  padding: 10px 10px;
  margin: 30px auto; 
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  display: block;
  text-align: center;
  transition: all 0.3s ease;
  white-space: nowrap;
  max-width: 200px;
}

/* Changement de couleur au survol */
.contact-button:hover {
  background-color: white;  /* fond blanc */
  color: #cc6600;            /* texte orange */
  border: 0px solid transparent;
}

.section-limon {
  position: relative;
  background-image: url("../IMAGES/limon.jpg"); /* Chemin de ton image */
  background-size: cover;       /* Ajuste l’image pour couvrir toute la section */
  background-position: center;  /* Centre l’image */
  background-repeat: no-repeat; /* Ne répète pas l’image */
  color: white;                 /* Le texte reste visible */
  padding: 200px 50px;
  text-align: center;
  min-height: 65vh; /* Utilise la hauteur de la fenêtre du navigateur */
}
	
.section-limon .overlay-gris {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(51, 51, 51, 0.68);
  z-index: 1;
}

.style-logo-limon {
  width: 220px;
  height: auto;
  display: block;
  margin: 125px auto 50px auto;
}
	
.section-limon .contenu {
  max-width: 650px;       /* limite la largeur du texte */
  margin: 0 auto;         /* centre le texte horizontalement */
  padding: 0 25px;        /* espace  gauche et  droite */
  position: relative;     /* pour rester indpendant de l'image */
  z-index: 2;             /* au-dessus de l'image si elle est derrire */
}
	
.texte-limon {
  font-size: 20px;         /* texte plus petit */
  text-transform: uppercase; /* majuscules */
  line-height: 1.7;        /* espace entre les lignes pour la lisibilit */
  margin-bottom: 60px;     /* espace entre paragraphes */
  color: #fff;    
  padding: 0 25px;  /* blanc sur fond overlay */
}
	
.texte-limon2 {
  font-size: 20px;         /* texte plus petit */
  line-height: 1.5;        /* espace entre les lignes pour la lisibilit */
  margin-bottom: 50px;     /* espace entre paragraphes */
  color: #fff;             /* blanc sur fond overlay */
  text-align: center;
  margin-left: 20px;
}

/* page nos services */
.section-services {
  display: flex;
  background-image: url("../IMAGES/services.jpg"); /* Chemin de ton image */
  background-size: cover;       /* Ajuste l’image pour couvrir toute la section */
  background-position: center;  /* Centre l’image */
  background-repeat: no-repeat; /* Ne répète pas l’image */
  color: white;                 /* Le texte reste visible */
  padding: 100px 20px;
  text-align: center;
  min-height: 100vh; /* Utilise la hauteur de la fenêtre du navigateur */
  margin-top: 0px;
  justify-content:center;
  align-items:center;
  flex-direction:column;
}

.section-services .overlay {
  position: absolute;
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* noir à 50% */
  z-index: 1;
}

.services-element {
  padding-top: 230px;
}
	
 .intro-services {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
    padding: 0px 20% 100px;
}

  .a_proposservices {
    flex: 1;
    max-width: 400px;
    text-align: center;
}

#soudeurservices {
  width: 500px;
  height: auto;
  display: block;
  margin-top: 475px;
}
	
	/* Soudeur */
.soudeurservices {
  position: absolute;
  left: 70%;
  transform: translateX(-50%);
  z-index: 3;
  overflow: visible;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0rem; /* réduit l'espacement */
  padding: 0 0.5rem;
}
	
/* Escaliers */
.serviceescalier {
  position: relative;
  background-image: url("../IMAGES/escalier-bulle.jpg");
  background-size: cover;       /* Ajuste l’image pour couvrir toute la section */
  background-position: center;  /* Centre l’image */
  background-repeat: no-repeat; /* Ne répète pas l’image */
  color: white;                 /* Le texte reste visible */
  padding: 100px 0px 0px 150px;
  text-align: center;
  min-height: 75vh; /* Utilise la hauteur de la fenêtre du navigateur */
}

.serviceescalier .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
 background: rgba(51, 51, 51, 0.7); /* noir à 50% */
  z-index: 1;
}
	
/* Soudure */
.servicesoudure {
  position: relative;
  background-image: url("../IMAGES/../IMAGES/soudeur-bulle.jpg");
  background-size: cover;       /* Ajuste l’image pour couvrir toute la section */
  background-position: center;  /* Centre l’image */
  background-repeat: no-repeat; /* Ne répète pas l’image */
  color: black;                 /* Le texte reste visible */
  padding: 100px 210px 0px;
  text-align: center;
  min-height: 70vh; /* Utilise la hauteur de la fenêtre du navigateur */
}

.servicesoudure .overlayblanc {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.7); /* noir à 50% */
  z-index: 1;
}
	
/* Dcoupe plasma */
.servicedecoupe {
  position: relative;
  background-image: url("../IMAGES/../IMAGES/plasma-bulle.jpg");
  background-size: cover;       /* Ajuste l’image pour couvrir toute la section */
  background-position: center;  /* Centre l’image */
  background-repeat: no-repeat; /* Ne répète pas l’image */
  color: white;                 /* Le texte reste visible */
  padding: 100px 20px 0px;
  text-align: center;
  min-height: 75vh; /* Utilise la hauteur de la fenêtre du navigateur */
}
	
.servicedecoupe h2{
  color: black;
  padding-top: 100px 200px;/* Le texte reste visible */
  margin-left: 0px 200px; 
}


.servicedecoupe .overlayorange {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(205,105,4,0.7); /* noir à 50% */
  z-index: 1;
}
	
	/* Mcanique */
.servicemecanique {
  position: relative;
  background-image: url("../IMAGES/../IMAGES/mecanique-bulle.jpg");
  background-size: cover;       /* Ajuste l’image pour couvrir toute la section */
  background-position: center;  /* Centre l’image */
  background-repeat: no-repeat; /* Ne répète pas l’image */
  color: white;                 /* Le texte reste visible */
  padding: 100px 20px 0px;
  text-align: center;
  min-height: 70vh; /* Utilise la hauteur de la fenêtre du navigateur */
}

.servicemecanique .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
   background: rgba(3,3,3,0.7); /* noir à 50% */
  z-index: 1;
}

  .overlay > *,
  .overlayblanc > *,
  .overlayorange > * {
    flex: 1;
}
	
.serviceescalier 
.overlay
.servicedecoupe 
.overlayorange {
    flex-direction: row;
}
	
.servicesoudure 
.overlayblanc,
.servicemecanique 
.overlay {
    flex-direction: row-reverse;
}
	
.overlay h2,
.overlayblanc h2,
.overlayorange h2 {
    max-width: 300px;
	margin-right: 40px;
}

.overlay p,
.overlayblanc p,
.overlayorange p {
    max-width: 480px;
 }
	
.overlay,
.overlayblanc,
.overlayorange{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding: 0 80px;
}
	
.texte-serviceblanc,
.texte-servicenoir{
  text-align: center;
  text-align: left;
}
		
 .serviceescalier h2,
 .servicesoudure h2 {
    transform: translateY(-45px);
}
	
.servicemecanique h2{
    transform: translateY(-50px); /* remonte le titre */
}
	
 .servicesoudure p,
 .servicemecanique p{
    text-align: right;
	align-self: center;
}
	
/* Soumission */
.demandesoumission{
  background:white;
  text-align:center;
  border-radius:8px;
  padding-bottom:125px;
  margin: 0 auto; /* centre horizontalement */
  max-width: 425px; /* optionnel, limite la largeur */
}
	
/* Espacement entre le titre et le paragraphe */
.demandesoumission .intro-apropos {
  margin-top: 30px;   /* espace au-dessus si besoin */
  margin-bottom: 40px; /* espace en dessous, avant le bouton */
}

/* Espacement au-dessus du bouton si tu veux contrler plus prcisment */
.demandesoumission .contact-button {
  display: inline-block;  /* assure que margin fonctionne bien */
  margin-top: 40px;       /* espace entre le paragraphe et le bouton */
}
	
/* page nos ralisations */
.section-realisations {
  position: relative;
  background-image: url("../IMAGES/realisation.jpg"); /* Chemin de ton image */
  background-size: cover;       /* Ajuste l’image pour couvrir toute la section */
  background-position: center;  /* Centre l’image */
  background-repeat: no-repeat; /* Ne répète pas l’image */
  color: white;                 /* Le texte reste visible */
  padding: 100px 20px;
  text-align: center;
  min-height: 100vh; /* Utilise la hauteur de la fenêtre du navigateur */
  margin-top: 90px;
}

.section-realisations 
.overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* noir à 50% */
  z-index: 1;
}

.section-realisation 
.contenu {
  position: relative;
  z-index: 2;
}
	
.realisations-element {
  padding-top: 200px;
}

.gallerie  {
  background-color: #333333;
  padding-top: 30px;
	padding-bottom: 150px;
}
	
.intro-realisation {
	color: black;                 /* Le texte reste visible */
    padding: 40px 50px 50px;
    text-align: center;
	 max-width: 600px;  
	 margin: 30px auto 100px;
	}
	
.section-projets h2,
.portfolio-section h2 {
  margin-top: 120px;
  margin-bottom: 5px;
  color: #cc6600;
}

.section-header h4 {
  color: white;
  margin-bottom: 10px;
}
	
.section-header p,
.portfolio-section p {
  color: white;
  max-width: 600px;      /* largeur maximale fixe du texte */
  width: 90%;            /* largeur responsive jusqu' max-width */
  margin: 30px auto 100px; /* centre le bloc horizontalement */
  text-align: center;    /* centre le texte  l'intrieur */
  padding: 0 20px;       /* padding intrieur pour petits crans */
}


.projets-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 75px;
  justify-content: center;
  max-width: 1200px;    /* largeur maximale de la galerie */
  margin: 0 auto;        /* centre la grille */
  padding: 0 20px;       /* padding responsive  gauche/droite */
}

.projet {
  flex: 1 1 45%;          /* largeur responsive (2 colonnes) */
  max-width: 500px;       /* largeur max par projet */
}


.projet:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.projet img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  cursor: pointer;
}	
	
/* Dplacer le bouton X (fermer) en haut  droite de limage */
.lb-close {
  position: absolute !important;
  top: -32px  !important;
  right: 16px !important;
  left: auto !important;
  bottom: auto !important;
}

.portfolio-section {
  text-align: center; /* centre le texte ET le bouton inline */
  padding: 0px 20px;
}
	
	/* page nous contacter */
.section-nouscontacter {
  position: relative;
  background-image: url("../IMAGES/contact.jpg"); /* Chemin de ton image */
  background-size: cover;       /* Ajuste l’image pour couvrir toute la section */
  background-position: center;  /* Centre l’image */
  background-repeat: no-repeat; /* Ne répète pas l’image */
  color: white;                 /* Le texte reste visible */
  padding: 100px 20px;
  text-align: center;
  min-height: 100vh; /* Utilise la hauteur de la fenêtre du navigateur */
  margin-top: 90px;
}

.section-nouscontacter 
.overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* noir à 50% */
  z-index: 1;
}

.section-nouscontacter 
.contenu {
  position: relative;
  z-index: 2;
}
	
.contacter-element {
  padding-top: 180px;
}
	
 .contact-main {
    display: flex;
    gap: 0px; /* espace entre la section et l'image */
    max-width: 2000px;
    margin: 0;
    padding: 0;
	flex-direction: row;
	align-items: stretch;
	background-size: cover;       /* Ajuste l’image pour couvrir toute la section */
    background-position: center;  /* Centre l’image */
    background-repeat: no-repeat; 
	text-align: center;
  }

  .escalier_nousjoindre {
    flex: 1;
    display: flex;
	 min-height: 450px; 
  }

  .escalier_nousjoindre img {
    width: 100%;
     height: 100%;
  object-fit: cover;
	  display: block;
  }
	
.section-nous_contacter h2,
.section-nous_contacter h3,
.section-nous_contacter p {
  margin-top: 0;
  margin-bottom: 0;
}
	
.section-nous_contacter {
  overflow: hidden;
}


.section-nous_contacter {
	flex: 1;
	background-color: #F0F0F0;
	padding: 60px 0 150px;
	overflow: hidden;/* prend la place disponible */
	}
	
.intro-nouscontacter {
	color: black;                 /* Le texte reste visible */
    padding: 50px 150px 0px;
    text-align: center;
	}
	
.accueil-contacter {
	color: #CC6600;                 /* Le texte reste visible */
    padding: 0px 100px 20px;
    text-align: center;
	font-size: 22px;
	font-weight: bold;
	}
	
.map-container {
  width: 100%;
  height: 500px; 
  margin: 0;
  overflow: hidden; /* IMPORTANT pour arrondir la map */
}
	
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  margin: 0;
  display: block;
}
	
.footer-nouscontacter {
margrin: 0 auto;
	padding: 0 35px;
}
	
.contact-section,
.contact-section input,
.contact-section textarea,
.contact-section label,
.contact-section button {
  font-family: inherit;
}

.contact-section { 
	background: #333333; 
	padding: 30px 40px; 
	} 
	
.contact-section .titres-oranges { 
	background: #333333;
	padding: 0px 20px; 
    } 
	
.footer-nouscontacter { 
	color: white; 
	text-align: center; 
	margin-bottom: 30px; 
	line-height: 1.5; 
	padding: 0 10px; /* padding ct mobile */ 
	box-sizing: border-box; 
	} 

.contact-section form { 
	max-width: 520px; /* largeur contrle */ 
	margin: 0 auto; /* centr */ 
	display: flex; 
	flex-direction: column; 
	gap: 30px; 
	padding: 0 10px; /* padding horizontal sur mobile */ 
	box-sizing: border-box; 
	} 
	
	.form-group { 
		display: flex; 
		flex-direction: column; 
	} 
	
	.form-group label { 
		font-family: 'Oswald', sans-serif; 
		color: #ffffff; 
		font-size: 20px; 
		letter-spacing: 1px; 
		margin-bottom: 6px; 
		text-align: left; /* align avec le champ */ 
	} 
	
	.form-group input, .form-group textarea { 
		background: white; 
		border: 1px solid #555; 
		color: #000000; 
		padding: 14px; 
		border-radius: 6px; 
		font-size: 15px; 
		width: 100%; 
		box-sizing: border-box; 
	} 
	
	.form-group textarea { 
		min-height: 140px; 
		resize: vertical; 
		margin-bottom: 50px; 
	} 
	
.form-group input:focus, .form-group textarea:focus { 
	outline: none; 
	border-color: #ff6600; 
	} 
	
	.button-orange { 
		background-color: #cc6600; 
		color: white; 
		padding: 10px 20px; 
		border: none; 
		border-radius: 15px; 
		font-size: 1em; 
		cursor: pointer; 
		text-decoration: none; 
		transition: background-color 0.3s ease; 
		font-family: 'Oswald', sans-serif; /* police Oswald */ 
		font-weight: bold; 
	} 
	
	.button-orange:hover { 
		background-color: white; /* Orange plus clair au survol */ 
		color: #cc6600; 
	}
	}	

@media (min-width: 1700px) {
.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
	
.services-container > div {
   flex: 0 0 calc(50% - 1rem); /* force 2 par ligne */
  max-width: 400px;
}
	
/* Services box */
.escaliers-garde,
.soudure,
.decoupe-plasma,
.mecanique-industrielle {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  overflow: hidden;
  margin: 1rem auto;
  max-width: 400px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.escaliers-garde {
  background-image: url("../IMAGES/escalier-bulle.jpg");
}

.soudure {
  background-image: url("../IMAGES/soudeur-bulle.jpg");
}

.decoupe-plasma {
  background-image: url("../IMAGES/plasma-bulle.jpg");
}

.mecanique-industrielle {
  background-image: url("../IMAGES/mecanique-bulle.jpg");
}

.service-overlay {
  background-color: rgba(0, 0, 0, 0.6); /* filtre noir semi-transparent */
  color: white;
  padding: 1rem 1rem 1rem;
  border-radius: inherit;
  width: 100%;
  text-align: center; 
  display: inline-block;
  flex-direction: column;
  justify-content: center; /* Centrer verticalement dans l'overlay */
  height: 100%;
}

.section-nosservices h2.titres-noirs {
  color: #333333;
}

.section-nosservices h4 {
  font-weight: bold;
}

.escaliers-garde h3,
.soudure h3,
.decoupe-plasma h3,
.mecanique-industrielle h3,
.escaliers-garde p,
.soudure p,
.decoupe-plasma p,
.mecanique-industrielle p {
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  box-sizing: border-box;
  text-align: center; /* facultatif si tu veux centrer le texte */
}
	
.escaliers-garde h3,
.soudure h3,
.decoupe-plasma h3,
.mecanique-industrielle h3 {
	color: #CC6600;
	white-space: nowrap; 
	margin-bottom: 1.5rem;
}

.contact-section .titres-oranges{
  padding: 150px 20px 150px;
  color: #cc6600;
}

	
.escaliers-garde p,
.soudure p,
.decoupe-plasma p,
.mecanique-industrielle p {
	color: white;
	margin-bottom: 2.5rem;
}
	
	
.footer-nouscontacter p {
margrin: 0 auto;
	padding: 0 100px;
}
	
.contact-section,
.contact-section input,
.contact-section textarea,
.contact-section label,
.contact-section button {
  font-family: inherit;
}

.contact-section { 
	background: #333333; 
	padding: 30px 40px; 
	} 
	
.contact-section .titres-oranges { 
	background: #333333;
	padding: 0px 20px; 
    } 
	
.footer-nouscontacter { 
	color: white; 
	text-align: center; 
	margin-bottom: 30px; 
	line-height: 1.5; 
	padding: 0 10px; /* padding ct mobile */ 
	box-sizing: border-box; 
	} 

.contact-section form { 
	max-width: 520px; /* largeur contrle */ 
	margin: 0 auto; /* centr */ 
	display: flex; 
	flex-direction: column; 
	gap: 30px; 
	padding: 0 10px; /* padding horizontal sur mobile */ 
	box-sizing: border-box; 
	} 
	
	.form-group { 
		display: flex; 
		flex-direction: column; 
	} 
	
	.form-group label { 
		font-family: 'Oswald', sans-serif; 
		color: #ffffff; 
		font-size: 20px; 
		letter-spacing: 1px; 
		margin-bottom: 6px; 
		text-align: left; /* align avec le champ */ 
	} 
	
	.form-group input, .form-group textarea { 
		background: white; 
		border: 1px solid #555; 
		color: #000000; 
		padding: 14px; 
		border-radius: 6px; 
		font-size: 15px; 
		width: 100%; 
		box-sizing: border-box; 
	} 
	
	.form-group textarea { 
		min-height: 140px; 
		resize: vertical; 
		margin-bottom: 50px; 
	} 
	
.form-group input:focus, .form-group textarea:focus { 
	outline: none; 
	border-color: #ff6600; 
	} 
	
	.button-orange { 
		background-color: #cc6600; 
		color: white; 
		padding: 10px 20px; 
		border: none; 
		border-radius: 15px; 
		font-size: 1em; 
		cursor: pointer; 
		text-decoration: none; 
		transition: background-color 0.3s ease; 
		font-family: 'Oswald', sans-serif; /* police Oswald */ 
		font-weight: bold; 
	} 
	
	.button-orange:hover { 
		background-color: white; /* Orange plus clair au survol */ 
		color: #cc6600; 
	}
	

}
