html{
    margin: 0;
    padding: 0;
    width: 100vw;
    overflow-x: hidden;
}

img {
    width: auto;
    height: auto;
    max-width: 100%;
}

@font-face {
    font-family: "Montserrat";
    src: url("../Montserrat.ttf") format("ttf");
    font-display: swap;
}

/*Grille tarifaire*/
/* ===== GRILLE TARIFAIRE FIXE ===== */
#grille-tarifaire {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin: 80px auto;
    max-width: 1200px;
    font-family: "Montserrat", sans-serif;
}

/* ----- Cartes classiques ----- */
.pack {
    background-color: #f0f0f0;
    color: #222;
    padding: 0px 25px;
    width: 350px;
    height: 520px; /* << Hauteur FIXE */
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.pack:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

/* ----- Carte PREMIUM + grande ----- */
.tarif-premium {
    width: 400px;
    height: 620px; /* << Hauteur SUPÉRIEURE */
    border: 15px solid #FF6D00;
    padding: 0px 25px;
}
.tarif-standard {
    margin-top: 50px;
    border: 10px solid #2B4C55;
}

.tarif-essentiel {
    margin-top: 50px;
    border: 10px solid #626262;
}

/* ----- Titre coloré ----- */
.tarif-premium h2 {
    font-size: 22px;
    font-weight: 500;
    color: white;
    padding: 10px 0;
    margin-bottom: 10px;
    margin-top: 20px;
    width: 100%;
    border-radius: 5px;
}

.tarif-essentiel h2 {
    font-size: 22px;
    font-weight: 400;
    color: white;
    padding: 10px 0;
    margin-bottom: 10px;
    margin-top: 20px;
    width: 100%;
    border-radius: 5px;
}

.tarif-standard h2 {
    font-size: 22px;
    font-weight: 400;
    color: white;
    padding: 10px 0;
    margin-bottom: 10px;
    margin-top: 20px;
    width: 100%;
    border-radius: 5px;
}

.tarif-essentiel h2 {
    background-color: #626262;
}

.tarif-premium h2 {
    background-color: #FF6D00;
    font-size: 26px;
}

.tarif-standard h2 {
    background-color: #2B4C55;
}

/* ----- Slogan ----- */
.pack-desc-essentiel {
    font-size: 14px;
    color: #626262;
    font-weight: 500;
    margin-bottom: 20px;
}

.pack-desc-premium {
    font-size: 14px;
    color: #FF6D00;
    font-weight: 500;
    margin-bottom: 20px;
}

.pack-desc-standard {
    font-size: 14px;
    color: #2B4C55;
    font-weight: 500;
    margin-bottom: 20px;
}

/* ----- Bulle prix ----- */
.bulle-prix-200 {
    max-width: 200px;
    margin: 5px;
}

.bulle-prix-300 {
    width: 200px;
    margin: 5px;
}

.bulle-prix-500 {
    width: 270px;
    margin: 5px;
}

.tarif-premium .bulle-prix {
    width: 150px;
}

/* ----- Liste ----- */
.pack ul {
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: justify;
    list-style: none;
    padding: 0;
    margin-top: 15px;
    margin-bottom: auto;
    text-align: left;
    width: 100%;
}

.pack li {
    font-size: 14px;
    padding: 8px 0;
    font-weight: 500;
}

.ok { color: green; }
.no { color: red; }

/* ----- Bouton ----- */
.btn-tarif-essentiel {
    background-color: #62626272;
    color: white;
    border: none;
    font-weight: 600;
    padding: 10px 25px;
    margin-top: 55px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.btn-tarif-premium {
    background-color: #ff6f007d;
    color: white;
    border: none;
    font-weight: 600;
    padding: 10px 25px;
    margin-top: 75px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.btn-tarif-standard {
    background-color: #2b4c5575;
    color: white;
    border: none;
    font-weight: 600;
    padding: 10px 25px;
    margin-top: 55px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.btn-tarif-essentiel:hover {
    background-color: #626262;
    transform: scale(1.05);
}

.btn-tarif-premium:hover {
    background-color: #FF6D00;
    transform: scale(1.05);
}

.btn-tarif-standard:hover {
    background-color: #2B4C55;
    transform: scale(1.05);
}

.tarif-premium .btn-tarif {
    font-size: 16px;
    padding: 12px 30px;
}

/* ----- Responsive ----- */
@media (max-width: 768px) {
    #grille-tarifaire {
        flex-direction: column;
        align-items: center;
    }

    .pack, .tarif-premium {
        width: 90% !important;
        height: auto !important; /* reset hauteur pour mobile */
    }

    .bulle-prix {
        width: 100px;
    }

    .tarif-premium .bulle-prix {
        width: 120px;
    }
}


/*Fin grille tarifaire*/

body {
    font-family: Arial, sans-serif;
    position: relative;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    background: url('../Images/Fond.webp') no-repeat center center/cover;
    background-attachment: fixed; /* Ajout de cette ligne pour fixer le fond */
    background-repeat: repeat; 

    font-family: "Montserrat", serif;
    color: #C4C4C4;
    
}

#h1-titre{
    color: #C46200;
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    font-family: "Montserrat", serif;
    margin: 40px;

}

a, a:link, a:visited {
    text-decoration: none !important;
    color: inherit !important;
}

#trait-horizontal{
    display: flex;
    width: 90vw;
    height: 2px;
    margin-bottom: 20px;
    background-color: #C4C4C4;
    margin-top: 15vh;
}

.menu-button {
    position: fixed;
    top: 10px;
    left: 10px;
    background: rgba(34, 34, 34, 0.0);
    color: #C46200;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 38px;
    border-radius: 5px;
    z-index: 1000;

}
.menu {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background: #222;
    color: #C46200;
    padding: 20px;
    transition: left 0.3s ease-in-out;
    z-index: 999;

}
.menu-button:hover {
    color: #ffb266 ;

}

.menu.active {
    left: 0;
}
.menu ul {
    margin-top: 35%;
    list-style: none;
    padding: 0;
}
.menu li {
    width: max-content;
    margin: 20px 0;
    cursor: pointer;
    font-family: "Montserrat", serif;
    font-weight: bolder;
    text-decoration: none;
    cursor: pointer;
}
.menu li:hover {

    color: #ffb266;
    font-family: "Montserrat", serif;

}

.menu li {
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

/* Animation d'apparition */
.menu.active li {
    opacity: 1;
    transform: translateX(0);
}

/* Ajout du délai progressif */
.menu.active li:nth-child(1) { transition-delay: 0.1s; }
.menu.active li:nth-child(2) { transition-delay: 0.2s; }
.menu.active li:nth-child(3) { transition-delay: 0.3s; }
.menu.active li:nth-child(4) { transition-delay: 0.4s; }
.menu.active li:nth-child(5) { transition-delay: 0.5s; }
.menu.active li:nth-child(6) { transition-delay: 0.6s; }
.menu.active li:nth-child(7) { transition-delay: 0.7s; }

/* ----- ANIMATION UNDERLINE ----- */
.menu li::after {
    content: "";
    position: absolute;
    bottom: -5px; /* Distance sous le texte */
    left: 50%;
    width: 0%;
    height: 3px;
    background-color: #ffb266; /* Couleur du trait */
    transition: width 0.2s ease-in-out, left 0.2s ease-in-out;
}

/* Effet au survol */
.menu li:hover::after {
    width: 100%;
    left: 0;
}






        
/* Animation d'apparition */
#menu-pc.active li {
    opacity: 1;
    transform: translateX(0);
}

/* Ajout du délai progressif */
#menu-pc.active li:nth-child(1) { transition-delay: 0.1s; }
#menu-pc.active li:nth-child(2) { transition-delay: 0.2s; }
#menu-pc.active li:nth-child(3) { transition-delay: 0.3s; }
#menu-pc.active li:nth-child(4) { transition-delay: 0.4s; }
#menu-pc.active li:nth-child(5) { transition-delay: 0.5s; }
#menu-pc.active li:nth-child(6) { transition-delay: 0.6s; }

/* ----- ANIMATION UNDERLINE ----- */
#menu-pc li::after {
    content: "";
    position: absolute;
    bottom: -5px; /* Distance sous le texte */
    left: 50%;
    width: 0%;
    height: 3px;
    background-color: #ffb266; /* Couleur du trait */
    transition: width 0.2s ease-in-out, left 0.2s ease-in-out;
}

/* Effet au survol */
#menu-pc li:hover::after {
    width: 100%;
    left: 0;
}

#header-pc li{

    color: #C4C4C4;
    text-decoration: none;
    list-style-type: none;
    display: flex;
    position: relative;
    margin: 2vw;
    font-size: 17px;
    font-family: "Montserrat", serif;
    font-weight: 600;
    color: #C46200;
    width: max-content;
    cursor: pointer;

}

#header-pc li:hover{
    color: #ffb266;
    font-family: "Montserrat", serif;
}

#header-pc ul{

    display: flex;
    position: relative;
    align-items: center;
    margin-top: 2vh;
}

#header-pc {
    display: flex;
    justify-content: center; /* Centre les éléments horizontalement */
    width: 100%; /* Assure que le header prend toute la largeur */
    align-items: center; /* Centre verticalement également */
}



#logo-header{
    max-width: 170px;
    
}

footer{
    
    width: 100vw;
    margin-top: 20px;
    position: relative;
    display: block;
    justify-content: center;
    align-items: center;
    display: grid;
    place-items: center;
}

#ligne-footer{
    width: 2px;
    height: 30vh;
    background-color: #C4C4C4; 
    margin-left: 300px; 
    margin-right: 300px; 
}

#colonne-footer{
    display: flex;
    margin-bottom: 30px;
    justify-content: center;
    align-items: center;
    
}

#h4-contact{
    color: #C4C4C4;
    font-family: "Montserrat", serif;
    font-weight:bold;
    font-size: 27px;
    margin-bottom: 40px;
    margin-top: 40px;

}

#p-contact{
    color: #C4C4C4;
    font-family: "Montserrat", serif;
    font-weight:400;
    font-size: 15px;
}

#p-réseaux{
    color: #C4C4C4;
    font-family: "Montserrat", serif;
    font-weight:500;
    font-size: 15px;
}

#icone-footer{
    max-width: 35px;

}

#logo-footer{
    max-width: 120px;
}

#réseaux-tel{
    display: none;
}

#header-footer{
    display: none;
}

#p-copy{
    display: block;
}

#p-copy-tel{
    display: none;
}

#header-pc{
    display: flex;
}

#header-tel{
    display: none;
}

#ligne{
    display: flex;
    justify-content: center;
    align-items: center;
}

#PHOTOS1{
    margin: 0.5vw;
    height: 20vw;
    width: 20vw;
}

.image-container {
    position: relative;

    overflow: hidden;
  }
  
  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 149, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .overlay-text {
    font-size: 30px;
    text-align: center;
    padding: 20px;
    font-family: "Montserrat", serif;
    color: #222;
    font-weight: 700;
  }
  
  .image-container:hover .overlay {
    opacity: 1;
  }
  




@media (max-width: 767px) { 

    #trait-horizontal{
        display: none;

    }
    
#avis-clients{
    font-size: 30px;
    margin-top: 20px;
}

#colonne-footer{
    display: none;
}

#competence{
    display: block;
    margin-bottom: 0;
}

#competence1, #competence2, #competence3{
    width: 80vw;
    height: 70vh;
    margin-bottom: 15vh;
}

footer{
    padding-left: 0; /* Reset le padding pour mobile */
    display: block;
    justify-content: left;
    align-items: left;
    text-align: left;
    padding: 20px;  /* Exemple de padding pour le contenu */
}

#trait-horizontal{
    margin-top: 0;

}

#réseaux-tel{
    display: block;
    justify-content: center;    /* Centre le div lui-même horizontalement */
    align-items: center;        /* Centre le div lui-même verticalement */
    position: relative;
    width: 100%;                /* Prend 100% de la largeur de son parent */
    height: 100vh;  
    font-size: 10px;
    margin-top: 10vh;
    margin-bottom: 0;
    height: 20px;
}

#header-footer{
    display: block;
    margin-top: 5vh;
    font-size: 10px;
    font-weight: 400;
    text-align: left;
}

#p-header-footer{
    color: #C4C4C4;
    font-family: "Montserrat", serif;
    font-weight:400;
    font-size: 10px;
    text-align: left;

}

#p-h-f{
    color: #C4C4C4;
    align-items: left;
    font-size: 10px;
    font-weight: 400;
}


#icone-footer{
    max-width: 30px;
    margin-bottom: 20px;
}

#p-copy{
    display: none;
}

#p-copy-tel{
    display: block;
    align-items: center;
    text-align: center;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
}



#header-pc{
    display: none;
}

#header-tel{
    display: block;
}


#ligne{
    display: block;
    width: 50%;  /* Ou toute autre largeur souhaitée */
    margin: 0 auto;
    position: relative; /* Si nécessaire */
    
    
}

#PHOTOS1{
    margin: 2vw;
    height: 50vw;
    width: 50vw;
}

 }

 @media (min-width: 768px) and (max-width: 1045px){    

    #trait-horizontal{
        display: none;
    }

    #header-pc{
        display: none;
    }

    #header-tel{
        display: block;
    }






    #avis-clients{
        font-size: 30px;
        margin-top: 20px;
    }
    
    #colonne-footer{
        display: none;
    }
    
    #competence{
        display: block;
        margin-bottom: 0;
    }
    
    #competence1, #competence2, #competence3{
        width: 80vw;
        height: 70vh;
        margin-bottom: 15vh;
    }
    
    footer{
        padding-left: 0; /* Reset le padding pour mobile */
        display: block;
        justify-content: left;
        align-items: left;
        text-align: left;
        padding: 20px;  /* Exemple de padding pour le contenu */
    }
    
    #trait-horizontal{
        margin-top: 0;
    
    }
    
    #réseaux-tel{
        display: block;
        justify-content: center;    /* Centre le div lui-même horizontalement */
        align-items: center;        /* Centre le div lui-même verticalement */
        position: relative;
        width: 100%;                /* Prend 100% de la largeur de son parent */
        height: 100vh;  
        font-size: 10px;
        margin-top: 10vh;
        margin-bottom: 0;
        height: 20px;
    }
    
    #header-footer{
        display: block;
        margin-top: 5vh;
        font-size: 15px;
        font-weight: 400;
        text-align: left;
    }
    
    #p-header-footer{
        color: #C4C4C4;
        font-family: "Montserrat", serif;
        font-weight:400;
        font-size: 15px;
        text-align: left;
    }
    
    #p-h-f{
        color: #C4C4C4;
        align-items: left;
        font-size: 15px;
        font-weight: 400;
    }
 
    
    #icone-footer{
        max-width: 30px;
        margin-bottom: 20px;
    }
    
    #p-copy{
        display: none;
    }
    
    #p-copy-tel{
        display: block;
        align-items: center;
        text-align: center;
        font-weight: 700;
        margin-top: 50px;
        margin-bottom: 20px;
    }




    
     }


     