body{
    background-color: darkblue;
}
#call1{
    text-align: center;
    font-size: 32px;
    border: 1px solid red;
    border-radius: 30px;
    box-shadow: 5px 5px ;
    background-color: pink; 
}
#lii1{
    font-size: 26px;
    list-style-type: upper-roman;
}
#list2{
    font-size: 26px;
    list-style-type: upper-roman;
}
#para1{
    font-size: 30px;
    text-transform: capitalize;
}
#para2{
    font-size: 30px;
    text-transform: capitalize;
}

.grid-item p {
    text-align: center;
    font-size: 20px;
    color: ghostwhite;
    margin-top: 10px;
    font-weight: bold;
}

.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;
    justify-items: center;
}

.grid-item img {
    width: 150px;
    height: 150px;
    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);
}

.grid-container, #para1 {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
    margin-top: 20px;
    border-radius: 10px;
}

h3 {
    text-align: center; /* Centrer le texte */
    font-size: 28px; /* Augmenter la taille de la police */
    color: lime; /* Couleur verte pour attirer l'attention */
    margin-bottom: 20px; /* Espacement en dessous */
    text-transform: uppercase; /* Mettre le texte en majuscules */
    letter-spacing: 5.5px; /* Espacement entre les lettres */
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2); /* Ajouter une ombre légère */
    border-bottom: 2px solid limegreen; /* Ligne décorative en dessous */
    padding-bottom: 15px; /* Espacement sous le texte */
}

h3 {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.buy-button {
    display: block;
    margin: 10px auto;
    padding: 10px 20px;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.buy-button:hover {
    background-color: #45a049;
}

.about-watches {
    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);
}

.about-watches h2 {
    font-size: 24px;
    color: black;
    margin-bottom: 10px;
}

.about-watches p {
    font-size: 16px;
    color: black;
}

.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;
}

#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 15px;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: none;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#backToTop:hover {
    background-color: #45a049;
}

.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 */
}
