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;
}

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{
    width: 90vw;
    height: 2px;
    margin-bottom: 20px;
    background-color: #C4C4C4;
    display: flex;

}

.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; }
.menu.active li:nth-child(8) { transition-delay: 0.8s; }

/* ----- 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; }
#menu-pc.active li:nth-child(7) { transition-delay: 0.7s; }

/* ----- 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;
}

/* ===== TUNNEL DE VENTE - TARIFS ===== */

#intro-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 60vw;
    margin: 0 auto 8vh;
}

#intro-label {
    font-family: "Montserrat", serif;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #C46200;
    margin-bottom: 1.2rem;
    margin-top: 0;
}

#intro-text {
    font-family: "Montserrat", serif;
    font-weight: 400;
    font-size: 19px;
    color: #C4C4C4;
    text-align: center;
    line-height: 1.9;
    margin: 0;
}

.intro-highlight {
    font-weight: 600;
    color: #C46200;
}

#intro-trait {
    width: 60px;
    height: 3px;
    background: #C46200;
    border-radius: 2px;
    margin-top: 2rem;
}

#packs-wrapper {
    width: 70vw;
    margin: 0 auto 10vh;
    display: flex;
    flex-direction: column;
    gap: 6vh;
}

.pack-card {
    position: relative;
    background: rgba(34, 34, 34, 0.55);
    border: 1px solid rgba(196, 98, 0, 0.4);
    border-left: 5px solid #C46200;
    border-radius: 12px;
    padding: 3vw 3vw 2.5vw;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.pack-card:hover {
    border-color: #C46200;
    transform: translateY(-4px);
}

.pack-step {
    display: flex;
    align-items: baseline;
    gap: 1.2vw;
    margin-bottom: 1vw;
}

.pack-step-number {
    font-family: "Montserrat", serif;
    font-weight: 700;
    font-size: 22px;
    color: #222;
    background: #C46200;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pack-title-group h2 {
    font-family: "Montserrat", serif;
    font-weight: 700;
    font-size: 28px;
    color: #C46200;
    margin: 0;
}

.pack-title-group p {
    font-family: "Montserrat", serif;
    font-weight: 500;
    font-size: 15px;
    color: #C4C4C4;
    margin: 4px 0 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pack-objectif {
    font-family: "Montserrat", serif;
    font-size: 17px;
    line-height: 1.7;
    color: #fff8f8;
    margin: 1.5vw 0;
}

.pack-cible {
    font-family: "Montserrat", serif;
    font-size: 14px;
    color: #C4C4C4;
    margin-bottom: 1.5vw;
}

.pack-cible span {
    color: #C46200;
    font-weight: 600;
}

.pack-inclus {
    list-style: none;
    margin: 0 0 2vw;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pack-inclus li {
    font-family: "Montserrat", serif;
    font-size: 15px;
    line-height: 1.6;
    color: #C4C4C4;
    padding-left: 1.8em;
    position: relative;
}

.pack-inclus li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #C46200;
    font-weight: 700;
}

.pack-inclus li strong {
    color: #fff8f8;
    font-weight: 600;
}

.pack-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 2vw;
    padding-top: 1.5vw;
    border-top: 1px solid rgba(196, 196, 196, 0.2);
}

.pack-price {
    font-family: "Montserrat", serif;
    font-weight: 800;
    font-size: 36px;
    line-height: 1.15;
    color: #C46200;
    background: rgba(196, 98, 0, 0.15);
    border: 2px solid #C46200;
    border-radius: 10px;
    padding: 14px 28px;
    box-sizing: border-box;
}

.pack-price span {
    display: block;
    font-weight: 500;
    font-size: 13px;
    color: #C4C4C4;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 6px;
}

.pack-cta {
    font-family: "Montserrat", serif;
    font-weight: 600;
    font-size: 15px;
    color: #222;
    background: #C46200;
    border: none;
    border-radius: 5px;
    padding: 12px 26px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.pack-cta:hover {
    background-color: #ffb266;
    transform: translateY(-2px);
}

#final-cta {
    width: 60vw;
    margin: 0 auto 12vh;
    text-align: center;
    padding: 4vw 2vw;
    border: 2px solid #C46200;
    border-radius: 12px;
    background: rgba(34, 34, 34, 0.4);
}

#final-cta h2 {
    font-family: "Montserrat", serif;
    font-weight: 700;
    font-size: 30px;
    color: #C46200;
    margin: 0 0 1vw;
}

#final-cta p {
    font-family: "Montserrat", serif;
    font-size: 17px;
    color: #C4C4C4;
    line-height: 1.7;
    margin: 0 0 2vw;
}

#final-cta-button {
    justify-content: center;
    align-items: center;
    background-color: rgba(34, 34, 34, 0.0);
    border: 4px #C4C4C4 solid;
    font-family: "Montserrat", serif;
    font-weight: 500;
    font-size: 18px;
    width: max-content;
    margin: 0 auto;
    padding: 15px 35px;
    color: #C4C4C4;
    cursor: pointer;
    display: flex;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#final-cta-button:hover {
    background-color: #C4C4C4;
    color: #222;
}

@media (max-width: 767px) {

#trait-horizontal{
    display: none;
}

#avis-clients{
    font-size: 30px;
    margin-top: 20px;
}

#colonne-footer{
    display: none;
}

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;
}

#intro-wrapper {
    max-width: 88vw;
    margin-bottom: 6vh;
}

#intro-text {
    font-size: 14px;
}

#packs-wrapper {
    width: 88vw;
    gap: 5vh;
}

.pack-card {
    padding: 8vw 6vw;
}

.pack-title-group h2 {
    font-size: 22px;
}

.pack-step-number {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 17px;
}

.pack-footer {
    flex-direction: column;
    align-items: stretch;
}

.pack-footer a {
    display: block;
    width: 100%;
}

.pack-price {
    font-size: 26px;
    text-align: center;
    padding: 12px 16px;
}

.pack-cta {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

#final-cta {
    width: 88vw;
    padding: 10vw 6vw;
}

#final-cta h2 {
    font-size: 24px;
}

 }

 @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;
    }

    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;
    }

    #intro-wrapper {
        max-width: 80vw;
    }

    #packs-wrapper {
        width: 82vw;
    }

    #final-cta {
        width: 82vw;
    }

     }

/* Fil d'Ariane */
.fil-ariane {
    display: flex;
    width: fit-content;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 3vh auto 0;
    padding: 10px 22px;
    font-family: "Montserrat", serif;
    font-size: 14px;
    background: rgba(15, 15, 15, 0.55);
    border: 1px solid rgba(196, 98, 0, 0.3);
    border-radius: 99px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.fil-ariane a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #EDEDED !important;
    text-decoration: none;
    transition: color 0.25s ease;
}

.fil-ariane a:hover {
    color: #ffb266;
}

.fil-ariane-icon {
    flex-shrink: 0;
}

.fil-ariane-sep {
    color: #C46200;
    opacity: 0.7;
    font-size: 12px;
}

.fil-ariane-current {
    color: #ffb266;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .fil-ariane {
        font-size: 12px;
        margin-top: 72px;
        gap: 6px;
        padding: 8px 16px;
    }
}

/* Regroupement nav "Mes réalisations" */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a::after {
    content: " \25BE";
    font-size: 12px;
}

.nav-submenu {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: #1B1B1B;
    border: 1px solid rgba(196, 98, 0, 0.3);
    border-radius: 10px;
    padding: 8px !important;
    min-width: 180px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
    z-index: 50;
    list-style: none !important;
    margin: 0 !important;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
    display: block !important;
}

.nav-submenu li {
    margin: 0 !important;
    width: 100% !important;
}

.nav-submenu li a {
    display: block;
    padding: 10px 14px;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    border-radius: 6px;
    color: #C4C4C4 !important;
}

@media (hover: hover) and (pointer: fine) {
    .nav-submenu li a:hover {
        background: rgba(196, 98, 0, 0.15);
        color: #ffb266 !important;
    }
}

.nav-submenu li a:active {
    background: rgba(196, 98, 0, 0.15);
    color: #ffb266 !important;
}

.nav-dropdown-mobile > a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-caret {
    font-size: 12px;
    display: inline-block;
    transition: transform 0.25s ease;
}

.nav-dropdown-mobile.open .nav-caret {
    transform: rotate(180deg);
}

.nav-submenu-mobile {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    width: max-content !important;
}

.nav-dropdown-mobile.open .nav-submenu-mobile {
    max-height: 300px;
}

.nav-submenu-mobile li {
    margin: 14px 0 0 18px !important;
}

.nav-submenu-mobile li a {
    font-size: 15px;
    font-weight: 500;
    color: #C4C4C4 !important;
}

@media (hover: hover) and (pointer: fine) {
    .nav-submenu-mobile li a:hover {
        color: #ffb266 !important;
    }
}

.nav-submenu-mobile li a:active {
    color: #ffb266 !important;
}

#p-header-footer-label {
    color: #C46200;
    font-family: "Montserrat", serif;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 10px;
    margin-bottom: 2px;
}

.footer-sub {
    margin-left: 14px !important;
    opacity: 0.85;
}

/* Neutralise le soulignement hérité de l'ancien menu plat sur les nouveaux sous-menus */
.nav-dropdown::after,
.nav-dropdown-mobile::after,
.nav-submenu li::after,
.nav-submenu-mobile li::after {
    content: none !important;
    display: none !important;
}
