@font-face {
    font-family: "Montserrat";
    src: url(/fonts/Montserrat/Montserrat-VariableFont_wght.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    background: #fcfcfc;
    color: #333;
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

a {
    text-decoration: none;
    color: #333;
}

ul {
    list-style-type: none;
}

select, textarea {
    background: none;
    border: none;

}

#header {
    display: flex;
    height: 10vh;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 10px 20px;
    position: relative;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);  
}

#logo img{
    height: 40px;
    width: auto;
}

#menu {
    background: white;
    color: #333;
    border: #333;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 15px;
}

#affichage_menu {
    display: none;
}

#nav_menu {
    display: none;
    flex-direction: column;
    background: white;

    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border-top: 1px solid #eee;
}

#nav_menu li a {
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

#affichage_menu:checked ~ #nav_menu {
    display: flex;
}

#footer {
    background: #2d2d2d;
    padding: 15px;
    font-size: 13px;
}

#footer, #footer a{
    color: white;
}

#footer_col div {
    margin-bottom: 20px;
}

#footer_col li, #footer_col h4 {
    margin-bottom: 5px ;
}

#footer_credits {
    justify-content: center;
    text-align: center;
}

#footer_col h4 {
    color : #FF9900
}

input, button {
    background: none;
    border: none;
}

#adresse_mail {
    background: #404040;
    padding: 10px;
    border-radius: 15px 0 0 15px;
}

#abonner {
    background: #FF9900;
    padding: 10px;
    border-radius: 0 15px 15px 0;
    cursor: pointer;
}

.description p {
    margin-bottom: 10px;
}

#hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;

    background: linear-gradient(90deg, #FF9900, #FF0090);
    -webkit-mask-image: radial-gradient(circle, black 40%, transparent 90%);
    mask-image: radial-gradient(circle, black 40%, transparent 90%);

    filter: blur(80px);
    opacity: 0.15;
    z-index: 1;
}

#hero > div {
    position: relative;
    z-index: 2;
}

#titre_hero, #devis h2, #services h2 {
    background: linear-gradient(90deg, #FF9900, #FF0090);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

#hero p {
    margin: 20px 0 20px 0;
}

#hero h2 {
    font-weight: 900;
}

#hero a, #bouton_devis, #bouton_contact {
    background: linear-gradient(90deg, #FF9900, #FF0090);
    cursor: pointer;
    color: white;
    padding: 10px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.9em;
}



#devis, #contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px auto;
    background: white;
    width: 355px;
    border-radius: 25px;
    padding: 25px;
}


#devis h2, #contact h2 {
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
}

#devis p, #contact p{
    font-size: 0.7em;
    margin-bottom: 10px;
}


#devis input, select, #contact input {
    display: flex;
    justify-content: center;
    width: 100%;
    background: #f3f3f3;
    border: solid #d6d6d6 1px;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 15px;
    margin-top: 5px;
}

#devis textarea, #contact textarea {
    display: flex;
    justify-content: center;
    width: 100%;
    min-height: 200px;
    background: #f3f3f3;
    border: solid #d6d6d6 1px;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 15px;
    margin-top: 5px;
    resize: none;
}

#services2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    max-width: 1160px;
    margin: 0 auto 80px auto;
    border: 1px solid #d6d6d6;
    border-radius: 20px;
    overflow: hidden;
}

#services2 > div {
    background: white;
    padding: 45px 35px;
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 100% !important;
    margin: 0 !important;
    min-height: 350px;
}

#services2 > div:hover {
    background: #fafafa;
}

#services2 div{
    text-align: center;
    background: white;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 355px;
    min-height: 40vh;
}

#services2 h2 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #FF9900, #FF0090);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


#services2 ul {
    gap: 8px;
}

#services2 p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.6;
    margin-bottom: 25px;
}



#services2 li {
    font-size: 0.85rem;
    color: #444;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

#services2 li::before {
    font-size: 0.6rem;
    margin-right: 12px;
    background: linear-gradient(90deg, #FF9900, #FF0090);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#services2 button {
    background: linear-gradient(90deg, #FF9900, #FF0090);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    margin-top: auto;
    align-self: flex-start;
}

#services2 button:hover {
    transform: translateX(5px);
}

#contact {
    justify-content: center;
    flex-direction: column;
    margin-top: 50px;
    margin-bottom: 50px;
}

#propos2 {
    max-width: 1160px;
    margin: 0 auto 80px auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: #d6d6d6;
    border: 1px solid #d6d6d6;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

#propos2 > div {
    background: white;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
}

#propos2 h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(90deg, #FF9900, #FF0090);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#propos2 h4 {
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.propos_histoire {
    grid-column: 1 / -1; 
    border-bottom: 1px solid #d6d6d6;
}

#propos2 p {
    font-size: 1em;
    margin-bottom: 15px;
}

.propos_presentation {
    grid-column: 1 / -1;
    background: #fafafa !important;
    text-align: center;
}

.propos_presentation h3 {
    margin-bottom: 40px;
}

#bold {
    background: linear-gradient(90deg,
    rgb(255, 217, 0) 0%,
    rgba(255, 153, 0, 1) 33%,
    rgba(255, 121, 31, 1) 66%,
    rgba(255, 0, 144, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
}

#marlena, #maeva, #christopher {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    text-align: center;
    width: 100% !important;
}

#propos2 h5 {
    color: #FF9900;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

#propos2 button {
    background: linear-gradient(90deg, #FF9900, #FF0090);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 30px;
    align-self: center; /* Centre le bouton */
    transition: transform 0.2s;
}

#propos2 button:hover {
    transform: scale(1.05);
}

#presentation h4, #presentation h5 {
    text-align: center;
    padding: 5px;
    margin-bottom: 5px;
}

.pres_des {
    text-align: center;
}

.haut_services {
    max-width: 1160px;
    margin: 80px auto 40px auto;
    padding: 0 20px;
}

.haut_services h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.titre_services {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #FF9900;
}

.separateur {
    height: 3px;
    width: 45px;
    background: linear-gradient(90deg, #FF9900, #FF0090);
    margin: 15px 0 25px 0;
    border-radius: 10px;
}

.services-intro h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.services-intro p {
    color: #888;
    max-width: 400px;
}

.box_produits {
    max-width: 1160px;
    margin: 60px auto;
    padding: 0 20px;
}

.liste_produits {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.images_produits {
    flex: 1;
    width: 100%;
}

.images_produits img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.descriptions_produits {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.descriptions_produits h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.descriptions_produits p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.bouton_produit {
    align-self: flex-start;
    background: linear-gradient(90deg, #FF9900, #FF0090);
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: transform 0.2s ease;
}

.btn_produit:hover {
    transform: scale(1.05);
}



@media screen and (min-width: 600px) {

    #services2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .propos_valeurs, .propos_infos {
        grid-column: span 1;
    }

    #propos2 {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media screen and (min-width: 1120px) {

    .hamburger {
        display: none;
    }

    #nav_menu {
        display: flex;
        position: static;
        flex-direction: row;
        width: auto;
        background: transparent;
        border: none;
    }

    #nav_menu li a {
        border-bottom: none;
        padding: 0 15px;
    }

    #services2 {
        grid-template-columns: repeat(3, 1fr);
    }

    #footer_col {
        display: flex;
        justify-content: space-between;
        max-width: 1160px;
        margin: 0 auto;
    }

    #footer_col > div {
        width: calc(20% - 20px);
        margin-bottom: 0;
    }

    #services2 > div:last-child {
        grid-column: 2;
        border-left: 1px solid #d6d6d6;
        border-right: 1px solid #d6d6d6;
    }

    #Newsletter form div {
        display: flex;
        align-items: stretch;
        width: 100%;
        margin-top: 15px;
    }

    #devis {
        width: 1160px;
        padding: 50px;
        align-items: stretch;
    }

    #contact {
        width: 1160px;
        padding: 50px;
        align-items: stretch;
    }

    .liste_produits {
        flex-direction: row;
        gap: 80px;
    }

    .liste_produits:nth-child(even){
        flex-direction: row-reverse;
    }

    .descriptions_produits {
        padding: 0 40px;
    }

    .propos_presentation {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        padding: 80px 40px;
    }

    .propos_presentation h3, .propos_presentation > p {
        grid-column: 1 / -1;
    }

    #propos2 > div:last-child {
        grid-column: 1 / -1;
        text-align: center;
        border-top: 1px solid #d6d6d6;
    }

}