body {
    margin: 0;
    overflow: hidden;
}

/* SCENE FULLSCREEN */
.scene {
    width: 100vw;
    height: 100vh;
    background: url("fond.png") no-repeat center center;
    background-size: cover; /* clé */
    position: relative;
}

/* ZONES */
.zone {
    position: absolute;
    border-radius: 10px;
    transition: 0.3s;
    /* pour les tests 
    background: rgba(255, 0, 0, 0.3); 
    border: 2px solid red;          
    */
}

/* POSITIONS (à ajuster légèrement) */

/* FILMS */
.films {
    top: 52.5%;
    left: 43%;
    width: 5.5%;
    height: 30%;
}

/* MUSIQUE */
.musique {
    top: 52.5%;
    left: 50.5%;
    width: 5.5%;
    height: 30%;
}

/* PHOTOS */
.photos {
    top: 52.5%;
    left: 57.5%;
    width: 5.5%;
    height: 30%;
}

/* PHOTOS */
.event {
    top: 34%;
    left: 49%;
    width: 8%;
    height: 10%;
}

/* HOVER */
.zone:hover {
    box-shadow: 0 0 25px rgba(255,120,0,0.9);
    transform: scale(1.1);
}

.login-box {
	background: red !important;
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.8);
    padding: 20px;
    border-radius: 15px;
    color: white;
}

.login-box input {
    display: block;
    margin: 10px 0;
    padding: 8px;
    width: 180px;
}

.login-box button {
    background: orange;
    border: none;
    padding: 10px;
    cursor: pointer;
}