/* ==========================
   RESET SIMPLE
========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #222;
    line-height: 1.6;
    background-color: #fff;
}


/* Conteneur global du site */
.site-container {
    width: 95%;          /* garde fluidité sur petits écrans */
    max-width: 1200px;   /* limite sur grand écran */
    margin: 0 auto;       /* centre horizontalement */
}

/* ==========================
   HEADER STICKY
========================== */
.header {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e5e5e5;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo-menu {
    width: 188px;
    height: 36px;
    object-fit: contain;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 18px;
}

.nav-links li a {
    text-decoration: none;
    color: #222;
    font-size: 12px;
    transition: 0.3s;
    font-weight: 700;
    text-transform: uppercase; /* tout en majuscules */
}

.nav-links li p {
    text-decoration: none;
    color: #222;
    font-size: 16px;
    transition: 0.3s;
    font-weight: 700;
}


.nav-links li a:hover {
    text-decoration: underline;
    color: #000;
}





/* ===== LIEN TÉLÉPHONE ===== */
.nav-links li a.phone-link {
    color: #0091ac;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
}

/* Icône téléphone */
.nav-links li a.phone-link i {
    color: #0091ac;
}

/* Hover téléphone (IMPORTANT) */
.nav-links li a.phone-link:hover {
    color: #0091ac;
    text-decoration: underline;
}

.nav-links li a.phone-link:hover i {
    color: #0091ac;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #222;
    border-radius: 2px;
}

/* ==========================
   HERO
========================== */
.hero {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img {
    width: 100%;
    height: auto;
    object-fit: contain; /* 👈 IMAGE TOUJOURS ENTIÈRE */
    object-position: center top;
}

.hero-content {
    position: absolute;
    z-index: 2;
}

.hero-logo {
    max-width: 260px;
    width: 80%;
    height: auto;
}

/* ==========================
   MAIN CONTENT
========================== */
.main-content {
    padding: 50px 20px;
    background-color: #fff;
}



/* TITRES DES SECTIONS EN MAJUSCULES */
.section-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;         /* light */
    font-size: 25px;
    text-align: center;
    color: #0091ac;
    padding: 60px 20px 30px;
    /* padding haut plus grand que bas */
    line-height: 1.3;
    text-transform: uppercase; /* tout en majuscules */
}

/* BOUTON CONTACT TENDANCE */
.btn-contact {
    display: block;
    width: 40%;
    margin-left: 0;
    margin-right: auto;

    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    background: linear-gradient(135deg, #00c2e0, #0091ac, #007c95);
    box-shadow: 0 4px 15px rgba(58, 123, 213, 0.4);
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.btn-contact2 {
    display: block;          /* ✅ pour que margin auto fonctionne */
    width: 40%;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    background: linear-gradient(135deg, #00c2e0, #0091ac, #007c95);
    box-shadow: 0 4px 15px rgba(58, 123, 213, 0.4);
    transition: all 0.3s ease;
    margin: 25px auto 0 auto; /* 👈 CENTRAGE HORIZONTAL */
    text-align: center;
}


.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(58, 123, 213, 0.5);
    background: linear-gradient(135deg, #6a82fb, #3a7bd5, #5ac8fa); /* inversion légère du dégradé au hover */
}

.btn-contact2:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(58, 123, 213, 0.5);
    background: linear-gradient(135deg, #6a82fb, #3a7bd5, #5ac8fa); /* inversion légère du dégradé au hover */
}

@media (max-width: 768px) {
    .btn-contact,
    .btn-contact2 {
        width: 90%;             /* plus large sur mobile */
        font-size: 15px;
    }
}


/* BOUTON CONTACT TENDANCE */
.btn-contact3{
    display: block;
    width: 40%;
    margin-left: 0;
    margin-right: auto;

    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    background: linear-gradient(135deg, #00c2e0, #0091ac, #007c95);
    box-shadow: 0 4px 15px rgba(58, 123, 213, 0.4);
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.btn-contact3 {
    display: block;          /* ✅ pour que margin auto fonctionne */
    width: 40%;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    background: linear-gradient(135deg, #00c2e0, #0091ac, #007c95);
    box-shadow: 0 4px 15px rgba(58, 123, 213, 0.4);
    transition: all 0.3s ease;
    margin: 25px auto 0 auto; /* 👈 CENTRAGE HORIZONTAL */
    text-align: center;
}


.btn-contact3:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(58, 123, 213, 0.5);
    background: linear-gradient(135deg, #6a82fb, #3a7bd5, #5ac8fa); /* inversion légère du dégradé au hover */
}

.btn-contact3:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(58, 123, 213, 0.5);
    background: linear-gradient(135deg, #6a82fb, #3a7bd5, #5ac8fa); /* inversion légère du dégradé au hover */
}

@media (max-width: 768px) {
    .btn-contact,
    .btn-contact2,
    .btn-contact3{
        width: 90%;             /* plus large sur mobile */
        font-size: 15px;
    }
}



/* ==========================
   BLOC PRÉSENTATION DEUX COLONNES
========================== */
.presentation-block {
    display: flex;
    justify-content: center;
    padding: 50px 0;
    background-color: #fff;
}

.presentation-container {
    display: flex;
    width: 90%;
    min-height: 400px;
    flex-wrap: wrap;
}

.presentation-image {
    flex: 0 0 30%;
    max-width: 30%;
}

/* ==========================
   FIX IMAGES TROP GRANDES
   (sans casser le layout)
========================== */

.presentation-image img {
    width: 90%;
    height: auto;
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

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

.presentation3-image img {
    width: 70%;
    height: auto;
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.presentation-text {
    flex: 0 0 70%;
    max-width: 70%;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.presentation-text h1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 20px;
}

.presentation-text h1 span {
    display: block;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    margin-top: 5px;
    margin-bottom: 15px;
}

.presentation-text p {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 20px;
}

.presentation-text strong {
    font-weight: 700;
}







/* SECTION prestation */
/* SECTION MODERNE DEUX COLONNES CORRECTE */
.section-modern {
    background: linear-gradient(135deg,  #00c2e0, #0091ac, #007c95);
    color: #ffffff;
    padding: 80px 20px;
    font-family: 'Open Sans', sans-serif;
}

.section-modern2 {
    background: #fff;
    color: #000;
    padding: 80px 20px;
    font-family: 'Open Sans', sans-serif;
}

.section-modern2 .prestations-column {
    border: 1px solid #000;
    background: #fff;
    border-radius: 12px;
    padding-bottom: 15px;
}


.prestations-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
    flex-wrap: wrap;
}

.prestations-column,
.prestations-column2 {
    flex: 1 1 45%;        /* prend 45% de largeur, reste côte à côte */
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 20px;
    border-radius: 12px;

    min-width: 280px;
    margin: 10px 5px;   /* empêche de trop rétrécir */
}



.prestations-column2 h2 {
    text-align: center;  /* empêche de trop rétrécir */
}



.prestations-column2 p{
text-align: center;
    font-size: 20px;

}



.section-modern h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffffff;
}

.section-modern ul {
    list-style: none;
    padding-left: 0;
}

.section-modern ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
}

.section-modern ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
}

/* RESPONSIVE : stack vertical */
@media (max-width: 768px) {

    .prestations-container {
        padding-left: 8px;    /* 👈 réduit les bords */
        padding-right: 8px;
    }

    .prestations-column {
        flex: 0 1 100%;       /* 👈 pleine largeur */
        margin: 8px 0;        /* 👈 plus de marge latérale */
        padding: 10px 12px;   /* 👈 padding interne plus fin */
    }
}




.renovation-block {
    display: flex;
    justify-content: center;
    padding: 50px 0;
    background-color: #fff; /* même fond que les autres sessions */
}

.renovation-container {
    display: flex;
    width: 90%;
    min-height: 400px;
    flex-wrap: wrap;
}

.renovation-image {
    flex: 0 0 30%;
    max-width: 30%;
}

/* ==========================
   FIX IMAGES TROP GRANDES
========================== */
/* ==========================
   NOUVELLE VERSION RÉNOVATION
========================== */

.renovation-block {
    display: flex;
    justify-content: center;
    padding: 20px 20px 20px 20px;
    background: #0091ac;

}

.renovation-main {
    width: 100%;
    max-width: 1100px;
    text-align: center;
    border: 1px solid #222;  /* noir fin */
    padding: 40px 30px 30px 30px;            /* ajoute un peu d’air à l’intérieur pour que le texte et les images ne touchent pas le filet */
    border-radius: 8px;       /* coins légèrement arrondis */
    box-sizing: border-box;
    background-color: #fff;
    margin: 50px;
}

/* TITRE CENTRÉ */
.renovation-main h1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 20px;
}

.renovation-main h1 span {
    display: block;
    font-size: 18px;

}

/* TEXTE ALIGNÉ À GAUCHE */
.renovation-main p,
.renovation-main ul {
    text-align: left;
    margin-bottom: 20px;
}

.renovation-main ul {
    padding-left: 5px;
}

/* BOUTON CENTRÉ */
.renovation-btn {
    display: block;
    width: 40%;
    margin: 30px auto;
}

/* GALERIE 3 IMAGES */
.renovation-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.renovation-gallery img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* ==========================
   RESPONSIVE
========================== */

/* ==========================
   RESPONSIVE
========================== */

/* TABLETTE */
@media (max-width: 768px) {

    .renovation-main {
        width: 100%;              /* occupe toute la largeur */
        max-width: none;           /* supprime la limite de largeur */
        margin: 0;                 /* supprime les marges extérieures */
        padding: 20px 10px 30px 10px; /* conserve 5px sur les côtés */
        box-sizing: border-box;
    }

    .renovation-btn {
        width: 90%;
    }

    .renovation-gallery {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .renovation-gallery img {
        max-width: 100%;
    }

    .renovation-main p,
    .renovation-main ul {
        font-size: 15px;
    }
}

/* MOBILE */
@media (max-width: 480px) {

    .renovation-main h1 {
        font-size: 22px;
    }

    .renovation-main h1 span {
        font-size: 16px;
    }

    .renovation-main p {
        font-size: 14px;
    }

    .renovation-btn {
        width: 100%;
    }
}

/* ==========================
   SECTIONS GÉNÉRALES
========================== */
.section {
    max-width: 95%;
    margin: 0 auto;
    padding: 5px 5px;
}

.section2 {
    width: 100%;
    margin: auto;
    padding: 10px 5px 10px 5px;
}

.section2 h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
}

.section3 {
    width: 100%;
    margin: auto;
    padding: 10px 50px;
}

.section3 h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
}



.section-light {
    background-color: #f7f7f7;
}


h1, h2, h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
}

h1 { font-size: 32px; }
h2 { font-size: 26px; }
h3 { font-size: 20px; margin-top: 30px; }

p { margin-bottom: 15px; max-width: 750px; }

ul { margin-top: 10px; margin-left: 20px; }
li {
    margin-bottom: 6px;
    text-align: left; }



.testimonials {
    padding: 60px 20px;
        background: linear-gradient(135deg, #00c2e0, #0091ac, #007c95);
    text-align: center;
}

.testimonials h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #0091ac;
}

/* Carousel horizontal */
.testimonial-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;      /* permet le scroll horizontal */
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.testimonial-carousel::-webkit-scrollbar {
    height: 8px;
}

.testimonial-carousel::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 4px;
}

.testimonial-card {
    flex: 0 0 300px;        /* largeur fixe des cartes */
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    text-align: left;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.testimonial-header h3 {
    font-size: 18px;
    margin: 0;
    color: #222;
}

.stars {
    color: #ffd700;
    font-size: 16px;
}

.testimonial-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-carousel {
        gap: 20px;
    }

    .testimonial-card {
        flex: 0 0 80%;  /* carte presque pleine largeur sur mobile */
    }
}
/* ==========================
   FOOTER
========================== */
.footer {
    text-align: center;
    padding: 30px 15px;
    font-size: 13px;
    color: #555;
    border-top: 1px solid #e5e5e5;
}

/* ==========================
   RESPONSIVE
========================== */
@media (max-width: 768px) {

    /* HERO */
    .hero { height: auto; }
    .hero-logo { max-width: 200px; }

    /* TITRES */
    h1 { font-size: 26px; }
    h2 { font-size: 22px; }

    /* MENU BURGER */
    .nav-links {
        position: fixed;
        top: 0;
        right: -250px;
        height: 100vh;
        width: 250px;
        background-color: #fff;
        flex-direction: column;
        align-items: start;
        padding: 80px 20px;
        gap: 20px;
        box-shadow: -2px 0 8px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav-links.active { right: 0; }
    .burger { display: flex; }

    /* Animation burger X */
    .burger.toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .burger.toggle span:nth-child(2) { opacity: 0; }
    .burger.toggle span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* BLOC PRÉSENTATION MOBILE */
    .presentation-container {
        flex-direction: column !important;
        align-items: center;
    }
    .presentation-image {
        flex: 0 0 auto;
        max-width: 80%;
        width: 80%;
    }
    .presentation-text {
        flex: 0 0 auto;
        max-width: 90%;
        width: 90%;
        padding-left: 0;
        margin-top: 20px;
        text-align: center;
    }
    .presentation-text h1 { font-size: 26px; }
    .presentation-text h1 span { font-size: 18px; }
    .presentation-text p { font-size: 15px;
    text-align: left; }
}

@media (max-width: 480px) {
    .hero { height: auto; }
    .hero-logo { max-width: 150px; }
    .presentation-text h1 { font-size: 22px; }
    .presentation-text h1 span { font-size: 16px; }
    .presentation-text p { font-size: 14px; }
}



/* Footer principal */
/* Footer 2 colonnes */
.footer-1col {
    background-color: #fff;
    color: #000;
    font-family: 'Roboto', sans-serif;
    padding: 40px 20px 20px;
    border-top: 1px solid #e5e5e5;
    text-align: center;
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo-container {
    margin-bottom: 20px;
}

.footer-logo {
    max-width: 250px;
    height: auto;
}

.footer-title {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer-guarantee {
    font-size: 20px;
    font-weight: 700;
    color: #0091ac; /* couleur charte bleu */
    margin-bottom: 20px;
}

.footer-contact {
    font-size: 25px; /* plus gros que texte normal */
    margin-bottom: 10px;
}

.footer-contact i {
    margin-right: 10px;
}

.footer-contact a {
    text-decoration: none;
    font-weight: 700;
    color: #000;
}

.footer-contact a:hover {
    text-decoration: underline;
}

/* Sous-footer */
.footer-sub {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;       /* fallback si flex non supporté */
    font-size: 13px;
    color: #555;
    border-top: 1px solid #e5e5e5;
    padding: 10px 0 0;
    margin-top: 30px;
    gap: 10px;                /* petit espace entre liens si plusieurs */
}
.footer-sub p {
    text-align: center;
}

.footer-sub a {
    color: #000;
    text-decoration: none;
}

.footer-sub a:hover {
    text-decoration: underline;
}

/* Responsive : mobile */
@media (max-width: 768px) {
    .footer-title {
        font-size: 15px;
    }

    .footer-guarantee {
        font-size: 18px;
    }

    .footer-contact {
        font-size: 22px;
    }

    .footer-logo {
        max-width: 200px;
    }
}