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 en ligne */
.image-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.image-container img {
    max-width: 30%;
    border-radius: 15px;
    transition: transform 0.3s ease-in-out;
}

.image-container img:hover {
    transform: scale(1.05);
}

/* Style des listes */
ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    background: rgba(255, 255, 255, 0.2);
    margin: 5px 0;
    padding: 10px;
    border-radius: 10px;
    transition: background 0.3s;
}

ul li:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* 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;
    }
}
