@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #d4f4d4;
    animation: fadeIn 1s ease-in-out;
}
header {
    background-color: #006400;
    color: #fff;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
h1 {
    margin: 0;
    padding-left: 20px;
}
h2 {
    margin: 1;
    flex-grow: 1;
    text-align: center;
}
nav ul {
    background-color: #006400;
    color: #fff;
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}
nav ul li {
    display: inline-block;
    margin-right: 20px;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
}
nav ul li a:hover {
    background-color: #02a002;
}

.stars {
    font-size: 24px;
    text-align: center;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}

.stars .filled {
    color: gold;
}

.stars .empty {
    color: grey;
}

.stars .filled, .stars .empty {
    margin: 0 2px;
}

.realisation {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin: 20px;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 90px;
}
.realisation img {
    width: 100px; /* Ajuste la largeur selon tes besoins */
    height: auto; /* Maintient le ratio de l'image */
    display: block;
}
.realisation h3 {
    margin-top: 0;
}
.realisation p {
    margin: 10px 0;
}
#block {
    display: flex;
    justify-content: center;
    gap: 20px
}
.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 20px 0;
}
.contact-button {
    display: inline-block;
    width: 250px; /* Ajuste la largeur selon tes besoins */
    margin: 10px 0; /* Espace entre les boutons */
    padding: 10px;
    background-color: #006400;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
}
.contact-button:hover {
    background-color: #02a002;
}
footer {
    background-color: #006400;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
}
.contact-info {
    margin-left: 5px; /* Réduire l'espace pour un écart minimal */
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    animation: slideIn 1s ease-out;
}