body{
    background-color: darkblue;
}
#call{
    color: black;
border: 2px solid;  
text-align: center;  
border-radius: 30px;
padding: 25px;
background-color: darkred;
font-size: 32px;

}

#p1{
    text-align:left;
    font-size: 26px;
}
#p2{
    font-size: 26px;
}
#p3{
    font-size: 26px;
}
#p4{
    font-size: 24px;
}

.navbar {
    background-color: #333;
    overflow: hidden;
    padding: 10px 0;
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.navbar ul li {
    display: inline;
    margin: 0 15px;
}

.navbar ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: color 0.3s ease;
}

.navbar ul li a:hover {
    color: #4caf50;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.grid-item {
    text-align: center;
}

.grid-item img {
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-item img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.about-bagues {
    text-align: center;
    padding: 20px;
    background-color: azure;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonials {
    text-align: center;
    padding: 20px;
    background-color: azure;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial {
    margin: 10px 0;
    font-style: italic;
    color: #555;
}

.testimonial span {
    display: block;
    margin-top: 5px;
    font-weight: bold;
    color: #333;
}

.page-header {
    text-align: center;
    padding: 20px;
    background-color: azure;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-header h1 {
    font-size: 36px;
    color: #333;
}

.page-header p {
    font-size: 18px;
    color: #666;
}

.footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
    margin-top: 20px;
    border-radius: 10px;
}

.buy-button {
    display: block;
    margin: 10px auto;
    padding: 10px 20px;
    background-color: #4caf50; /* Couleur verte */
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.buy-button:hover {
    background-color: #45a049; /* Couleur verte plus foncée au survol */
    transform: scale(1.05); /* Légère mise en avant */
}

.buy-button:active {
    transform: scale(0.95); /* Réduction légère lors du clic */
}

h3#Femme, h3#Homme {
    text-align: center; /* Centre le texte horizontalement */
    font-size: 24px; /* Taille de la police */
    color: lime; /* Couleur verte pour le texte */
    margin-bottom: 20px; /* Espacement en dessous */
    text-transform: uppercase; /* Met le texte en majuscules */
    letter-spacing: 1px; /* Espacement entre les lettres */
}

.grid-item p {
    font-size: 20px; /* Augmente la taille de la police */
    font-weight: bold; /* Met le texte en gras */
    color: ghostwhite; /* Couleur du texte */
    margin-top: 10px; /* Ajoute un espacement au-dessus */
}

.grid-item p:hover {
    color: lime; /* Change la couleur au survol */
    transform: scale(1.1); /* Agrandit légèrement le texte */
    transition: transform 0.3s ease, color 0.3s ease; /* Animation fluide */
}
