
/* ===================== */
/*      Page Accueil      */
/* ===================== */
.accueil-section{
  position: relative;
  width: 100%;
  height: 60vh;         
  min-height: 550px;     
  overflow: hidden;      
}

.hero-image{
  width: 100%;
  height: 800px;
  display: block;
  object-fit: cover;
  object-position: center 17%;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.text-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  gap: 14px;
  z-index: 1; 
}

.text-overlay h1{
  margin: 0;
  font-size: 200px !important;
  color: #e84c15;
  text-shadow: 1px 1px 10px rgba(0,0,0,0.8);
}

.text-overlay p{
  max-width: 900px;
  font-size: 37px !important;
  color: #fff;
  text-shadow: 1px 1px 10px rgba(0,0,0,0.9);
  margin-top: -10px;
}

.hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}

.btn-cta{
  background: #e84c15;
  color: #ffffff;
  display: inline-flex;           
  align-items: center;
  justify-content: center;
  padding: 1px 25px !important;
  min-height: 56px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  border: 1px solid rgba(255,255,255,0.35);
  transition: filter 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta:hover{
  text-decoration: underline;
  text-underline-offset: 8px;   
  text-decoration-thickness: 2px;
}

.btn-ghost{
  background: #ffff;
  color: #15588b;
  display: inline-flex;           
  align-items: center;
  justify-content: center;
  padding: 1px 25px;
  min-height: 56px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
}

.btn-ghost:hover{
  color: #ffff;
  background: #e84c15 !important; 
}

/* sav / conseils / accompagnement */
.hero-proof{
  margin-top: 30px;
  font-size: 35px;
  color: rgba(255,255,255,0.9);
  font-family: 'Courier New', Courier, monospace;
  font-weight: 500;
}

.hero-title,
.hero-subtitle {
  text-shadow: 0 3px 18px rgba(0,0,0,0.75);
}

/* =========================================================================================
/* ===== Bloc texte + photos Nacelles ===== */
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.intro-two_text h1.hero-title,
.intro-two_text h2.section-text {
  margin: 0;
}

.intro-text {
    padding: 60px 20px;
    background: #f7f8fa;           
}

/* Carte blanche centrée */
.intro-two__inner {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 50px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.3fr);  
    gap: 60px;
    align-items: flex-start;
}

/* Colonne texte */
.intro-two__text {
    font-size: 20px;
    line-height: 1.6;
    color: #000;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.section-text strong {
  font-weight: 600;
}

.section-text {
    margin-bottom: 10px;
    text-align: justify;
}

.section-text-h2 {
    margin-top: -5px;
    text-align: justify;
    font-size: 25px;
    color: #15588b;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.highlight,
.highlight12,
.highlight2 {
    font-weight: 100;
    color: #c58b2a;
    font-size: 23px;                    
}

/* Colonne images */
.intro-two__media {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.intro-two__media img {
    width: 100%;
    display: block;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.product-btn1 {
    display: inline-block;
    padding: 14px 26px;
    background: #15588b;
    color: #fff;
    font-size: 25px;
    font-weight: 200;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.25s ease;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    text-align: center;
}

/* ===================== */
/*      RESPONSIVE       */
/* ===================== */

/* =========================
            MOBILE 
   ========================= */
@media (max-width: 480px) {

  .intro-text{
    margin-top: -150px;
  }

    .intro-two__inner{
    display: flex !important;
    flex-direction: column !important;
    gap: 20px;
    margin-top: -25px;
  }

  .intro-two__text{
    order: 1;
    width: 100% !important;
    max-width: 100% !important;
  }

    /* 3️⃣ Photos en dessous */
  .intro-two__inner > :not(.intro-two__text){
    order: 2;
    width: 100%;
  }

  /* 5️⃣ Titre lisible (évite le mot par mot) */
  .section-text-h2{
    font-size: 18px;
    line-height: 1.15;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }

.accueil-section{
    min-height: 650px;
    overflow: hidden;
}

.hero-image{
    width: 100%;
    height: 80%;       
    object-fit: cover;
    object-position: 30% 50%;
    max-height: none;   
}

.text-overlay h1{
  margin: 0;
  font-size: 70px !important;
  color: #e84c15;
  text-shadow: 1px 1px 10px rgba(0,0,0,0.8);
}

.text-overlay p{
  max-width: 500px;
  font-size: 17px !important;
  color: #fff;
  text-shadow: 1px 1px 10px rgba(0,0,0,0.9);
  margin-top: -10px;
  text-align: center;
}

.hero-overlay{
    height: 80%;
    max-height: none;
}
/* sav / accompagnement */
.hero-proof{
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  font-family: 'Courier New', Courier, monospace;
  font-weight: 700;
}

.text-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0px 24px;
  gap: 14px;
  z-index: 1; 
  max-height: 550px;
}

.btn-cta{
  background: #e84c15;
  color: #ffffff;
  display: inline-flex;           
  align-items: center;
  justify-content: center;
  padding: 0px 10px !important;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 100;
  font-size: 12px;
  border-radius: 8px;
}

.btn-ghost{
  background: #ffff;
  color: #15588b;
  display: inline-flex;           
  align-items: center;
  justify-content: center;
  padding: 1px 24px !important;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 100;
  font-size: 14px;
}

.hero-actions{
    flex-direction: column;
    align-items: center;
}

.intro-text p{
  margin: 0 0 14px;
  font-size: 13px;
  line-height: inherit;
}
.intro-text ul{
  margin: 12px 0 16px;
  padding-left: 1.1rem;      
  font-size: 13px;           
  line-height: 1.45;
}
/* Items */
.intro-text li{
  margin: 0 0 10px;
}
.intro-text li strong{
  font-weight: 600;
}
.intro-text strong{
  font-weight: 600;
}
}

/* =========================
          TABLETTE
   ========================= */

  @media (min-width:481px) and (max-width:768px) {
 .accueil-section{
    height: 40vh;
    min-height: 650px;
    overflow: hidden;
  }

 .hero-image{
    width: 100%;
    height: 80%;       
    object-fit: cover;
    object-position: 30% 50%;
    max-height: none;   
  }

  .text-overlay h1{
  margin: 0;
  font-size: 90px !important;
  color: #e84c15;
  text-shadow: 1px 1px 10px rgba(0,0,0,0.8);
  text-align: center;
}

.text-overlay p{
  max-width: 700px;
  font-size: 15px !important;
  color: #fff;
  text-shadow: 1px 1px 10px rgba(0,0,0,0.9);
  margin-top: -10px;
  text-align: center;
  white-space: nowrap;
  transform: translateX(-20%);
}

.hero-overlay{
    height: 80%;
    max-height: none;
}

/* sav / accompagnement */
.hero-proof{
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  font-family: 'Courier New', Courier, monospace;
  font-weight: 700;
}

.text-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  gap: 14px;
  z-index: 1; 
  max-height: 550px;
}

.btn-cta{
  background: #e84c15;
  color: #ffffff;
  display: inline-flex;           
  align-items: center;
  justify-content: center;
  padding: 5px 10px !important;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 100;
  font-size: 12px;
  border-radius: 8px;
}

.btn-ghost{
  background: #ffff;
  color: #15588b;
  display: inline-flex;           
  align-items: center;
  justify-content: center;
  padding: 5px 24px !important;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 100;
  font-size: 14px;
}

.text-overlay p{
    max-width: 250px; 
}

.intro-text{
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.55;
  margin-top: -150px;
}

/* Paragraphes de la section */
.intro-text p{
  margin: 0 0 14px;
  font-size: 15px;
  line-height: inherit;
}

.intro-text ul{
  margin: 12px 0 16px;
  padding-left: 1.1rem;      
  font-size: 15px;           
  line-height: 1.45;
}

/* Items */
.intro-text li{
  margin: 0 0 10px;
}

.intro-text li strong{
  font-weight: 600;
}
}




