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

body {
    background-image: url("../Images_Projet/fond_bleu.jpg");
    background-size: cover;
    background-color: #0066cc;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    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: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav_link {
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
}

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

.entete_page {
    text-align: center;
    margin: 40px auto;
    max-width: 1000px;
    padding: 0 20px;
}

.entete_page h1 {
    font-size: 56px;
    font-weight: bold;
    font-style: italic;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    margin: 0 0 20px 0;
}

.introduction {
    font-size: 16px;
    line-height: 1.7;
    text-align: justify;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    margin: 0;
}

.introduction strong {
    color: #FFD700;
}

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

.produit_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    flex: 1;
    min-width: 280px;
}

.produit_image {
    background-color: rgba(200, 200, 200, 0.9);
    width: 100%;
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

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

.produit_description {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    width: 100%;
}

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

.produit_description strong {
    color: #FFD700;
    font-size: 16px;
}

.conclusion {
    text-align: center;
    max-width: 900px;
    margin: 30px auto 40px;
    padding: 0 20px;
}

.conclusion p {
    font-size: 17px;
    font-style: italic;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    line-height: 1.7;
}

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