/* Reset et base */
html, body {
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Conteneur principal */
.container {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

/* Bannière fixe */
.fixed-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('images/banniere.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1; /* Place la bannière derrière le contenu */
}

/* Contenu qui défile */
.content {
    position: relative;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.5); /* Fond légèrement transparent */
    margin: 0;
    padding: 10px 20px 20px; /* Marge supérieure pour éviter que le contenu ne soit caché sous la bannière */
}

/* Sections */
section {
    padding: 30px 0;
    max-width: 1024px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #5a5a5a;
    font-family: 'Playfair Display', serif;
}

/* Vidéo */
.video-player {
    width: 100%;
    #max-height: 00px;
    max-width : 1024px;
	display: block;
    margin: 0 auto;
    border-radius: 5px;
}

/* Infos */
.info-box {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.info-box h3 {
    margin-top: 0;
    color: #7a7a7a;
    font-family: 'Playfair Display', serif;
}

/* Pied de page */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
    margin-top: 40px;
}
     table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            box-shadow: 0 2px 3px rgba(0,0,0,0.1);
        }
        th, td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        th {
            background-color: #3498db;
            color: white;
            font-weight: bold;
        }
        tr:nth-child(even) {
            background-color: #f2f2f2;
        }
        tr:hover {
            background-color: #e3f2fd;
        }
