/* Page créée par Parent Julien le 15 janvier 2025 */

body {
    background-image: url("../Images_Projet/fond_orangevsbleu.jpg");
    background-size: cover;
    background-color: black;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    color: white;
}

.menu_navigation {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px 0;
}

.nav_container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav_link {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.nav_link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.entete_page {
    text-align: center;
    margin: 40px 0;
}

.entete_page h1 {
    font-size: 48px;
    font-weight: bold;
    margin: 0;
}

.produits_container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    flex-wrap: wrap;
}

.produit_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    min-width: 350px;
}

.produit_image {
    background-color: rgba(200, 200, 200, 0.9);
    opacity: 0.8;
    width: 100%;
    height: 390px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.produit_image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.produit_description {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 11px;
    text-align: justify;
}

.produit_description h2 {
    color: #FFD700;
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 15px;
}

.produit_description p {
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
}

@media (max-width: 768px) {
    .produits_container {
        flex-direction: column;
        align-items: center;
    }
    
    .nav_container {
        flex-direction: column;
        gap: 10px;
    }
    
    .entete_page h1 {
        font-size: 32px;
    }
}