@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');


body {
    input[type="email"] {
        width: 300px;
        padding: 10px;
        border: 2px solid #fff;
        border-radius: 5px;
        background-color: rgb(235, 244, 238); /* Fond noir */
        color: rgb(15, 15, 15); /* Texte blanc */
        font-size: 16px;
        outline: none;
        text-align: center;
        margin-top: 10px;
    }
    
    input[type="email"]::placeholder {
        color: #2d3c87; /* Texte du placeholder en gris */
    }
    
    button {
        margin-top: 10px;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        background-color: rgb(48, 151, 48);
        color: white;
        font-size: 16px;
        cursor: pointer;
    }
    
    button:hover {
        background-color: darkgreen;
    }
    
}
/* home */

.home {
    height: calc(100vh - 55px);
    background: url("img/Ordinary.png");
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    padding-left: 5%;
    padding-bottom: 50px;
}
.home-infos {
    background-color: #fff;
    border-radius: 6px;
    padding: 40px;
    animation: anime 2s linear;
}

/* animation home-infos */

@keyframes anime {
    from{
        transform: translateX(-600px);
    }
}
.home-infos h1 {
    color: #ca2f08;
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.home-infos p {
    color: #0f0446;
    font-size: 26px;
    margin-top: 20px;
    margin-bottom: 40px;
}
.home-infos a {
    text-decoration: 0;
    border: 2px solid #268a81;
    color: #268a81;
    border-radius: 6px;
    padding: 5px 20px;
    margin-top: 5px;
    font-weight: 400;
    text-transform: capitalize;
    transition: 0.5s;
}

.home-infos a:hover {
    background-color: #1ad160;
    color: #fff;
    letter-spacing: 1px;
}
/* Remarque en rouge */
/* Style général pour la remarque */
.remark {
    border-left: 5px solid #d9534f; /* Bordure rouge sur la gauche */
    background-color: #fbcfcf; /* Fond clair pour la section */
    padding: 10px;
    margin: 10px 0;
    font-size: 1em;
    border-radius: 5px; /* Arrondir les bords */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Ombre légère */
    max-width: 800px; /* Limite la largeur */
    margin: 20px auto; /* Centre horizontalement */
    text-align: left; /* Aligne le texte à gauche pour un meilleur rendu */

}
/* Conteneur pour le texte et l'image */
.remark-content {
    display: flex; /* Utilisation de Flexbox pour aligner l'image et le texte côte à côte */
    align-items: center; /* Alignement vertical */
    gap: 20px; /* Espacement entre l'image et le texte */
}

/* Style de l'image circulaire */
.remark-image {
    width: 100px; /* Taille de l'image */
    height: 100px;
    border-radius: 50%; /* Pour rendre l'image circulaire */
    overflow: hidden; /* Pour que l'image ne dépasse pas du cercle */
}

.remark-image img {
    width: 100%; /* L'image s'adapte à la taille du conteneur */
    height: 100%;
    object-fit: cover; /* Couvrir tout l'espace du cercle sans déformer l'image */
}

/* Style du texte */
.remark-text {
    flex: 1; /* Permet au texte de prendre toute la largeur restante */
    font-size: 1.1em;
    color: #333;
}

.remark-text h3 {
    font-size: 1.3em;
    color: #e74c3c; /* Couleur rouge pour le titre */
    margin-bottom: 10px;
}

.remark-text p {
    font-size: 1em;
    color: #555;
}
.product-title {
    min-height: 3.5rem; /* Ajuste selon le besoin */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
/* Section des témoignages des clients */
.testimonials {
    text-align: center;
    background-color: #ffffff;
    padding: 40px 20px;
}

.testimonials h2 {
    color: #002C77;
    font-size: 3em;
    margin-bottom: 20px;
}
.subtitle {
    color: #FF6347; /* Couleur attrayante */
    font-size: 1    em;
    margin-bottom: 20px;
    font-weight: bold;
    margin: 30px 0;
}
.rating-summary {
    color: #555;
    font-size: 1.5em;
    height: 10px;
}
.rating-stars {
    margin: 10px 0;
    font-size: 1.5em;
    color: gold;
}

.rating-logos {
    margin: -20px 0;
}

.rating-logos img {
    height: 100px;
    margin: 5 20px;
}

.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.testimonial {
    background-color: #f5f9f8;
    padding: 40px;
    border-radius: 12px;
    width: 350px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: left;
}

.testimonial .quote {
    font-size: 3em;
    color: #fcc0c0;
    position: absolute;
    top: 10px;
    left: 10px;
}

.testimonial .text {
    font-size: 1em;
    color: #002C77;
    margin: 20px 0;
}

.testimonial .author {
    font-size: 1em;
    font-weight: bold;
    color: #002C77;
    text-align: right;
}
.photo-gallery {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .photo-gallery img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        @media (max-width: 768px) {
            .photo-gallery {
                grid-template-columns: 1fr;
            }
        }.photo-gallery .photo-item {
            width: 250px;
            height: 350px;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .photo-gallery .photo-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 16px;
            transition: transform 0.3s ease;
        }

        .photo-gallery .photo-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        }

        .photo-gallery .photo-item:hover img {
            transform: scale(1.1);
        }

        .photo-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
            transition: opacity 0.3s ease;
            opacity: 0;
        }

        .photo-item:hover::before {
            opacity: 1;
        }

        .photo-item::after {
            content: 'Cliquez pour découvrir';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-weight: bold;
            font-size: 16px;
            letter-spacing: 1px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .photo-item:hover::after {
            opacity: 1;
        }