/* Style de base */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    background-color: #6a4c93;
    color: white;
    padding: 20px;
    text-align: center;
}

.telephone {
    font-size: 1.4em;
    margin-top: 10px;
}

.telephone a {
    color: #ff6f61;
    text-decoration: none;
}

/* Menu */
.menu {
    display: flex;
    justify-content: space-around;
    background-color: #2ec4b6;
    padding: 10px 0;
}

.menu a {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.menu a:hover {
    background-color: #6a4c93;
    transform: scale(1.1);
}

/* Section principale */
section {
    padding: 20px;
    text-align: center;
    background-color: white;
    margin: 20px 0;
}

/* Texte avec animation plus dynamique */
.texte-dynamique p {
    font-size: 1.2em;
    margin: 10px 0;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1.2s ease-out forwards;
}

.texte-dynamique p:nth-child(2) {
    animation-delay: 0.4s;
}

.texte-dynamique p:nth-child(3) {
    animation-delay: 0.8s;
}

.texte-dynamique p:nth-child(4) {
    animation-delay: 1.2s;
}

.texte-dynamique p:nth-child(5) {
    animation-delay: 1.6s;
}

/* Galerie d'images */
.galerie {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.galerie img {
    width: 30%;
    border-radius: 10px;
    transition: transform 0.5s ease-in-out, box-shadow 0.5s ease;
}

.galerie img:hover {
    transform: scale(1.2);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Animation plus dynamique */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pied de page fixe */
footer {
    background-color: #333;
    color: white;
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer a {
    color: #ff6f61;
    text-decoration: none;
}

/* Menu responsive */
@media (max-width: 768px) {
    .menu {
        flex-direction: column;
        align-items: center;
    }

    .galerie {
        flex-direction: column;
    }

    .galerie img {
        width: 80%;
        margin: 10px auto;
    }
}
