Body
{
font-family:Arial;
}
/* Importation de la police Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');

/* Styles généraux */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(120deg, #ffcc00, #ff6600);
    color: #fff;
    margin: 0;
    padding: 0;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

/* En-tête avec effet moderne */
h1 {
    background: rgba(139, 0, 0, 0.9);
    color: #fff;
    padding: 20px;
    margin: 0;
    font-size: 42px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
}

h1:hover {
    transform: scale(1.05);
}

h2 {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 28px;
    margin-top: 10px;
}

/* Logo */
header {
    background: url('logo-totinos.png') no-repeat center top;
    background-size: contain;
    height: 150px;
    animation: fadeIn 1s ease-in-out;
}

/* Effet interactif pour les liens */
a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    background: rgba(139, 0, 0, 0.8);
    transition: background 0.3s, transform 0.2s;
}

a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Conteneur principal modernisé */
.container {
    width: 80%;
    margin: auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

/* Animation des images */
img {
    max-width: 100%;
    border-radius: 15px;
    margin: 10px 0;
    transition: transform 0.3s ease-in-out;
}

img:hover {
    transform: scale(1.05);
}

/* Témoignage Stylisé */
.testimonial {
    font-style: italic;
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-left: 5px solid #ffcc00;
    margin: 20px auto;
    width: 70%;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.testimonial img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin-top: 10px;
}

/* Pied de page stylisé */
footer {
    background: rgba(139, 0, 0, 0.9);
    color: white;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.3);
}

/* Animations CSS */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
