/* Réinitialisation des styles par défaut */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Corps du site */
body {
    font-family: Arial, sans-serif;
    background-color: #000000;
    color: #000000;
    line-height: 1.6;
    margin: 0;
}

/* Entête */
header {
    background-color: #ffffff;
    color: #ffffff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    max-width: 70px;
}

nav ul {
    list-style-type: none;
    display: flex;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    text-decoration: none;
    color: #000000;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ec1f90;
}

/* Section Accueil */
#accueil {
    background: url('background-accueil.jpg') no-repeat center center/cover;
    padding: 100px 20px;
    text-align: center;
    color: #ffffff;
}

#accueil h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

#accueil p {
    font-size: 1.2em;
}

/* Section Produits */
#produits {
    padding: 50px 20px;
    text-align: center;
    background-color: #ffffff;
}

#produits h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.produits-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.produit {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    margin: 15px;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.produit:hover {
    transform: scale(1.05);
}

.produit img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.produit h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.produit p {
    font-size: 1em;
    margin-bottom: 20px;
}

.produit button {
    background-color: #ec1f90;
    border: none;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.produit button:hover {
    background-color: #ec1f90;
}

/* Section Personnalisation */
#personnalisation {
    background-color: #ffa51e;
    padding: 50px 20px;
    text-align: center;
}

#personnalisation h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

form {
    background-color: #ffa51e;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

form label {
    font-size: 1.1em;
    margin-bottom: 10px;
    display: block;
}

form select, form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ec1f90;
}

form button {
    background-color: #ec1f90;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1.1em;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #ec1f90a6;
}

/* Section Contact */
#contact {
    padding: 50px 20px;
    background-color: #ffffff;
    text-align: center;
}

#contact h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

form input, form textarea {
    margin-bottom: 20px;
}

footer {
    background-color: #000000;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer p {
    font-size: 1em;
}

/* Responsiveness pour petits écrans */
@media (max-width: 768px) {
    .produits-list {
        flex-direction: column;
        align-items: center;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 10px 0;
    }

    .produit {
        width: 100%;
    }
}

a {
    text-decoration: none;
    color: inherit;
}

video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
}

article {
    display: none;
}

article.visible {
    display: block;
}


.fiche-produit {
    background-color: white;
}

.nomobjet {
    text-align: center;
}

.infos {
    padding: 5%;
}

li {
    list-style: none;
  }

#pageperso {
    display: block;
    margin: 0 auto;             
    height: 30vw;           
    width: auto;
}

.ajouter-panier {
    display: block;
    margin: 20px auto; 
    padding: 12px 22px; 
    font-size: 1.2rem; 
    background-color: #ec1f90; 
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.ajouter-panier:hover {
    background-color: #ffa51e;
    transform: scale(1.05);
}

.choix-taille {
    font-size: 1rem; 
    padding: 1px 1px;
    border: none; /* Enlève le contour */
    border-radius: 2px;
    background-color: #ffffff; 
    color: rgb(0, 0, 0);
    appearance: none; /* Enlève le style par défaut (sur certains navigateurs) */
    cursor: pointer;
    margin-top: 8px;
    transition: background-color 0.3s;
  }
  
  .choix-taille:hover {
    background-color: #ec1f90;
  }

