/* Réinitialisation des marges et paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #111;
    color: #fff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    height: 100vh;
    position: relative;
}

/* Menu discret */
.menu-discret {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
}

.menu-discret ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 10px;
}

.menu-discret ul li {
    margin-bottom: 10px;
}

.menu-discret ul li a {
    color: #ffcc00;
    text-decoration: none;
    font-size: 18px;
    padding: 5px 10px;
    transition: color 0.3s;
}

.menu-discret ul li a:hover {
    color: #fff;
}

/* Vidéo en pleine largeur */
.video-background video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Contenu principal */
.content {
    padding: 40px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    padding: 20px;
}

header h1 {
    font-size: 36px;
    color: #ffcc00;
    margin-bottom: 10px;
}

header p {
    font-size: 18px;
    color: #ddd;
}

.text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ddd;
}

/* Footer */
.footer {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    text-align: center;
    font-size: 16px;
    color: #ddd;
}

.email {
    color: #ffcc00;
}

/* Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 28px;
    }

    .text p {
        font-size: 16px;
    }

    .menu-discret ul {
        padding: 5px;
    }

    .menu-discret ul li {
        margin-bottom: 5px;
    }

    .menu-discret ul li a {
        font-size: 16px;
    }
}
