html{
    scroll-behavior:smooth;
}
body, html {
    margin: 0;
    padding: 0;
    size:100vw;
}

h1{
    font-family:"Rock Salt";
    font-size: 36px;
    margin:0 0 0 0;
    padding:0 0 0 0;
}
h2{
    font-family:"Rock Salt",cursive;
    font-size:22px;
}
p{
    font-family:"roboto",verdana;
    font-size:18px;
}


nav.header-nav{
    font-family:"roboto";
    background-color: rgba(255, 255, 255, 0.7); 
    width:100%;
    z-index:100;
    display: flex;
    align-items:center;
    margin-bottom: 20px;
    margin-left:0px;
    margin-right:0px;
    padding:0 0 0 0;
    justify-content:space-around;
    font-size:20px;
    position: fixed; /* Fixe la navigation */
    top: 0; /* Place la navigation tout en haut */
    left: 0; /* Aligne à gauche */
    right: 0; /* Aligne à droite */

}
.headerMenu a{
    margin: 0 20px;
    text-decoration: none;
    color: inherit;
}
.headerMenu a:hover{
    text-decoration: underline;
}
.Bouton-1{ /*Bouton du CTA*/
    font-size:18px;
    padding: 5px 20px 5px 20px  ; /* Rend le bouton plus grand */
    border-radius: 20px; /* Ajoute des bords arrondis */
    background-color: #df7f7f; 
    border: 1px solid #df7f7f; /* Ajoute une bordure */
    cursor: pointer; /* Change le curseur au survol */
    transition: all 0.3s ease; /* Animation douce au survol */
}
.Bouton-1:hover {
    background-color: #000; /* Change la couleur de fond au survol */
    color: #FEE1E1; /* Change la couleur du texte au survol */

}

.Bouton-1 a {
    text-decoration: none;
    color: inherit;
}

.Bouton-2 {
    font-family: "Roboto";
    font-size:18px;
    margin-left: 100px;
    background-color:transparent;
    border:0px;
    cursor: pointer; /* Change le curseur au survol */
    
    color:black;
    text-shadow: 0 0 10px #df7f7fc7, 0 0 20px #df7f7fc7, 0 0 30px #df7f7fc7;

}
.Bouton-2:hover {
    text-shadow: 0 0 10px #000000c7, 0 0 20px #000000c7, 0 0 30px #000000c7;
    transition: all 0.3s ease; /* Animation douce au survol */
    border-radius:20px;
    color: #421d1dc7; /* Change la couleur du texte au survol */

}

#doubleBouton{
    display:flex;
    flex-direction: row;
    justify-content:center;
    align-items:space-around;
    padding:0px;
    width:100%;
}

#Accueil{
    background: url(./Image/PXL_20240501_103849628.jpg) center/cover no-repeat;
    display:flex;
    flex-direction:column;
    justify-content: center;
    align-items:center;
    min-height: 80vh;
    margin-top: -10px;
    padding-top: 100px;
    background-blend-mode: lighten; /* Mélange avec du blanc */
    background-color: rgba(255, 255, 255, 0.8); /* Ajoute du blanc semi-transparent */  
    text-shadow: 0 0 10px #FEE1E1, 0 0 20px #FEE1E1, 0 0 30px #FEE1E1;
    line-height: 1.2;
}

#Accueil p{
    font-size:24px;
    
}


.produits{
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content: center;
    gap:20px;
    background-color: #FEE1E1;
    padding:50px 0;
}
.fiche-produit{
    display:flex;
    flex-direction:column;
    justify-content: space-between;
    align-items: center;
    border: solid;
    border-radius:20px;
    background-color:azure;
    width:300px;
    min-height:500px;
    padding:30px;
    align-items: center;
    
}
.fiche-produit h2{
    text-align:center;
}
.photoProduit {
    width: 200px;
    transition: 0.3s ease; /* Ajoute une transition douce */
   
}
#phFeteMeres{
    width:300px;

}

.photoProduit:hover {
    transform: scale(1.5); /* Zoom de 50% */
}
.prixProduit {
    font-size: 24px;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    background-color: transparent;
    padding: 8px 15px;
    border-radius: 5px;
    text-shadow: 0 0 40px #df7f7fc7, 0 0 20px #df7f7fc7, 0 0 30px #df7f7fc7;
    
}

.commandeProduit{
    font-family:"roboto";
    display:flex;
    flex-direction:row;
    width:100%;
    margin:0px;
    align-items:center;
    justify-content: space-around;    
}

#qnProduit1{
    width:30px;
    height:20px;
}

#qnProduit2{
    width:30px;
    height:20px;
}
#qnProduit3{
    width:30px;
    height:20px;
}
.ajouterUnProduit{
    font-size:18px;
    margin-top:10px;
    padding: 5px 20px 5px 20px  ; /* Rend le bouton plus grand */
    border-radius: 20px; /* Ajoute des bords arrondis */
    background-color: #df7f7f; 
    border: 1px solid #df7f7f; /* Ajoute une bordure */
    cursor: pointer; /* Change le curseur au survol */
    transition: all 0.3s ease; /* Animation douce au survol */
}
.ajouterUnProduit:hover {
    background-color: #000; /* Change la couleur de fond au survol */
    color: #FEE1E1; /* Change la couleur du texte au survol */
}