/* style_projet.css */

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

.container-projet {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.titre-projet {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
    border-left: 4px solid #007bff;
    padding-left: 15px;
}

.img {
    text-align: center;
    margin-bottom: 30px;
}

.img img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.img img:hover {
    transform: scale(1.02);
}

.description-box {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.description-box h3 {
    margin-top: 0;
    color: #007bff;
    font-size: 1.2rem;
}

.description-box p {
    line-height: 1.6;
    margin-bottom: 15px;
} 
.commentaires-wrapper {
    text-align: center;
    margin-top: 50px;
    background-color: #ffffff;
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.commentaires-wrapper h3 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #222;
}

.commentaire-form {
    margin-bottom: 40px;
    text-align: center;
}

.commentaire-form textarea {
    width: 80%;
    min-height: 120px;
    padding: 15px;
    font-size: 16px;
    font-family: 'Segoe UI', sans-serif;
    border: 1px solid #ccc;
    border-radius: 10px;
    resize: vertical;
}

.commentaire-form button {
    margin-top: 15px;
    padding: 10px 25px;
    font-size: 16px;
    background-color: #3b82f6;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-commentaire button:hover {
    background-color: #2563eb;
}

.commentaire {
    background: #f9f9f9;
    padding: 15px 20px;
    border-radius: 10px;
    margin: 15px auto;
    max-width: 80%;
    color: #333;
    text-align: left;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.commentaire p {
    margin: 10px 0;
    line-height: 1.5;
}
.commentaire-list p{
    text-align: center;
}
h2{
    text-align: center;
}



@media (max-width: 768px) {
    .container-projet {
        padding: 0 10px;
    }

    .titre-projet {
        font-size: 1.5rem;
    }

    .description-box {
        padding: 15px;
    }

    nav {
        flex-direction: column;
        align-items: center;
    }

    .nav_gauche, .nav_droite {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}
@media (max-width: 600px) {
            .theme-title {
                font-size: 1.4rem;
                text-align: center;
            }

