
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}




h1 {
    color: #ffffff;
    text-align: center;
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 40px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

h2 {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #b04b24;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

p {
    font-size: 1.1rem;
    color: #4a3b2c;
}


.couleur {
    max-width: 1100px;
    margin: 0 auto 50px auto;
}

.conteneur {
    background-color: rgba(255, 255, 255, 0.92);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}


.lesanim {
    max-width: 1200px;
    margin: 0 auto 50px auto;
    display: flex;
    justify-content: center;
}

.lesanim-wrapper {
    background-color: rgba(255, 255, 255, 0.85); 
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.lesanim-wrapper h2 {
    font-size: 2.2rem;
    text-align: center;
    color: #2c1a04;
    margin-bottom: 5px;
}

.lesanim-wrapper p {
    text-align: center;
    color: #665544;
    margin-bottom: 35px;
}


ul {
    display: flex;            
    flex-direction: row;      
    flex-wrap: wrap;          
    gap: 30px;                
    list-style-type: none;    
    padding: 0; 
    justify-content: center;
}


ul li {
    background-color: #ffffff; 
    padding: 20px;             
    border-radius: 14px;       
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

ul li strong {
    font-size: 1.25rem;
    color: #b04b24;
    display: block;
    margin-bottom: 5px;
}

.anim-desc {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1; 
}


ul li img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 8px; 
}


.tmp {
    display: flex;            
    flex-wrap: wrap;         
    justify-content: center;
    margin-bottom: 40px;
}

.conteneur1 {
    background-color: rgba(255, 255, 255, 0.92);  
    width: 100%;
    max-width: 800px; 
    padding: 30px;
    border-radius: 20px;       
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); 
}

.table {
    display: flex;
    justify-content: center;
    align-items: center;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
}

table, th, td {
    border: none; 
}

th {
    background-color: #b04b24;
    color: #ffffff;
    padding: 15px 20px;
    font-weight: 700;
    text-align: left;
}

th:first-child { border-top-left-radius: 10px; border-bottom-left-radius: 10px; }
th:last-child { border-top-right-radius: 10px; border-bottom-right-radius: 10px; }

td {
    padding: 18px 20px;
    border-bottom: 1px solid #efe6dd;
    color: #3c3228;
}

tr:last-child td {
    border-bottom: none;
}

tr:nth-child(even) td {
    background-color: rgba(179, 74, 36, 0.03); 
}


footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-top: 40px;
    text-shadow: 0 2px 5px rgba(255, 255, 255, 0.5);
}

.bg-video {
  position: fixed; 
  top: 0;
  left: 0;
  width: 100vw; 
  height: 100vh; 
  object-fit: cover; 
  z-index: -1; 
}

