/* --- Styles Généraux --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: white;
    background-color: #111; /* Un fond si la vidéo ne charge pas */
}

/* --- Couche 1: Arrière-plan Vidéo --- */
.background-container {
    position: fixed; /* L'élément reste fixe à l'écran */
    top: 0;
    left: 0;
    width: 100vw; /* 100% de la largeur de la fenêtre */
    height: 100vh; /* 100% de la hauteur de la fenêtre */
    z-index: -1; /* Placé derrière tout le reste */
    overflow: hidden; /* Cache ce qui dépasse */
}

.background-container video {
    width: 100%;
    height: 100%;
    /* Fait en sorte que la vidéo couvre tout l'espace sans se déformer */
    object-fit: cover;
}

/* Ajoute un léger voile sombre sur la vidéo pour que le texte soit plus lisible */
.background-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

/* --- Couche 2: Contenu --- */
header {
    position: fixed; /* Le header reste aussi visible */
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    transition: background-color 0.3s ease; /* Animation douce */
}

/* Classe ajoutée avec JS quand on scrolle */
header.scrolled {
    background-color: rgba(255, 141, 51);
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    text-transform: uppercase;
}

.menu {
    font-size: 1.2em;
    cursor: pointer;
}

/* Conteneur principal qui va défiler */
.content-wrapper {
    /* On ne met pas de position ici, il suivra le flux normal de la page */
}

.hero-section {
    height: 100vh; /* Prend toute la hauteur de l'écran */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-section h1 {
    font-size: 4em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-section p {
    font-size: 1.2em;
    max-width: 600px;
}

.another-section {
    min-height: 80vh; /* Une autre section pour avoir de quoi scroller */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 40px;
    background-color: rgba(17, 17, 17, 0.8); /* Fond semi-transparent */
    backdrop-filter: blur(10px); /* Effet de flou sur ce qui est derrière */
}
/* ... (tout votre CSS existant) ... */

/* NOUVEAU : Styles pour le bouton de son */
.sound-button {
    position: fixed; /* Reste fixe à l'écran */
    bottom: 30px;
    right: 40px;
    z-index: 100; /* S'assurer qu'il est au-dessus de tout */
    
    background-color: rgba(0, 0, 0, 0.2);
    color: white;
    border: 1px solid white;
    border-radius: 5px;
    padding: 10px 15px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.sound-button:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}