Body
{
font-family:Arial;
}

/* 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, h3 {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

/* Disposition des images en ligne */
.image-container {
    display: grid;
    grid-template-columns: auto auto;
    gap: 15px;
    margin: 20px 0;
}

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

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

/* Style des tableaux modernes */
table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.2);
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

td, th {
    border: 1px solid #fff;
    padding: 12px;
    text-align: center;
    transition: background 0.3s;
}

th {
    background-color: rgba(139, 0, 0, 0.8);
    color: white;
}

td:hover {
    background: rgba(255, 255, 255, 0.3);
}

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