/*NEW HEADER*/

header {
    background-color: blanchedalmond;
    text-align: center;
    padding-top: 20px;
    border-radius: 15px;
}

/* Partie haute : logo + titre */
.Top_bar {
    display: flex;
    flex-direction: column;
    /* pour empiler logo + nom */
    align-items: center;
    justify-content: center;
}

.logo {
    width: 100px;
    justify-content: left;
}

.top-header h1 {
    font-size: 30px;
    font-family: "Herr Von Muellerhoff";
    color: #af4c0f;
    margin: 0;

}

/* ===== MENU ===== */
.menu {
    background-color: whitesmoke;
    border-top: 2px solid;
    border-bottom: 2px solid #ddd;
    padding: 15px 20px;
    border-radius: 15px;
}

.menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    /* espace entre les boutons */
    margin: 0;
    padding: 0;
}

.menu a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
    font-size: small;
}

.menu a:hover {
    color: #a67c52;
    /* couleur ocre du salon */
}

.video_prestation {
    display: flex;
    justify-content: center;
}

body {
    background-image: url("images/BackGround4.jpg");
    margin: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100%;
}