#container {
    width: 100%;
    height: 100%;
    font-family: "Segoe UI",Arial,sans-serif;
}

/* Couleur logo
#AEA588
*/

/*header*/
#header {
    height: 150px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: white;
    z-index: 1000;
}
#divLogo {
    height: 95%;
    float: left;
}
#logo {
    height: 100%;
}
#divMenu {
    float: right;
    height: 100%;
    display: flex;
    align-items: center;
}
#listMenu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
#listMenu li {
    float: left;
}
#listMenu li a {
    display: block;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 20px;
    cursor: pointer;
    color: black;
    font-weight: bold;
}
#listMenu li a:hover {
    color: #AEA588;
}

/*content*/
html, body {
    height: 100%;
}
#content {
    width: 100%;
    margin-top: 150px;
}
.left {
    float:left;
    width: 50%;
}
.right {
    float: right;
    width: 50%;
}
.h800 {
    height: 800px;
}
.h700 {
    height: 700px;
}
.h1400 {
    height: 1400px;
}
.white {
    background-color: white;
}
.bg800 {
   background-image: url("../images/palm800.png");
   background-repeat: no-repeat;
   background-size: auto;
}
.bg1400 {
    background-image: url("../images/palm1400.png");
    background-repeat: no-repeat;
    background-size: auto;
 }
#facade {
    position: absolute;
    margin-left: 10%;
    height: 700px;
    margin-top: 25px;
}
#facade img {
    width: auto;
    max-height: 700px;
}
#divMsgAccueil {
    position: absolute;
    margin-left: 55%;
    width: 500px;
    margin-top: 365px;
    background-color: black;
}
#divMsgAccueil div {
    color: #AEA588;
    padding: 20px;
    font-size: 30px;
}

.borderWhite {
    border: 15px solid white;
}
.borderBlack {
    border: 15px solid black;
}
.filler {
    height: 100px;
}
/*tarif*/
.tableTarif {
    border-collapse: collapse;
    width: 100%;
    margin: 0;
    padding: 0;
    color: #AEA588;
    font-size: 20px;
}
.tableTarif th {
    font-weight: bold;
    font-size: 25px;
}
.tableTarif td {
    border-bottom: 1px solid;
    padding: 10px;
}
#carte {
    position: absolute;
    margin-left: 25%;
    width: 50%;
    margin-top: 25px;
    background-color: black;
}

/*produits*/
#divProduits {
    position: absolute;
    margin-left: 25%;
    width: 50%;
    margin-top: 100px;
}
#divProduits table {
    border-collapse: collapse;
    width: 100%;
    table-layout: fixed;
}
#divProduits table td {
    text-align: center;
    background-color: white;
    padding: 15px;
    border: 15px solid #AEA588;
}
#divProduits table td img {
    max-width: 100%;
    height: 100px;
}

/*photos*/
#divPhotos {
    position: absolute;
    margin-left: 25%;
    width: 50%;
    margin-top: 100px;
    border: 15px solid white;
}
#slider1_container {
    position: relative;
    width: 100%; 
    height: 600px; 
    background-color: #000; 
    overflow: hidden; 
}
#loading {
    position: absolute; 
    top: 0px; 
    left: 0px;
}
#slides {
    cursor: move; 
    position: absolute; 
    left: 0px; 
    top: 0px; 
    width: 100%; 
    height: 600px;
    overflow: hidden;
}


/*footer*/
#footer {
    background-color: black;
    margin-top: 100px;
    color: #AEA588;
}
.info {
    font-size: 24px;
    text-align: center;
    padding: 10px;
}

/*responsive*/
@media only screen and (max-width: 1300px) {
    #divMsgAccueil {
        width: 400px;
    }
    #divMsgAccueil div {
        padding: 10px;
        font-size: 20px;
    }

    #facade {
        height: 600px;
        margin-top: 75px;
    }
    #facade img {
        max-height: 600px;
    }

    #slider1_container, #slides {
    }
}

@media only screen and (max-width: 1100px) {
    #divMsgAccueil {
        width: 300px;
        margin-top: 450px;
    }
    #divMsgAccueil div {
        padding: 5px;
        font-size: 15px;
    }

    #facade {
        height: 500px;
        margin-top: 150px;
    }
    #facade img {
        max-height: 500px;
    }

    .tableTarif td {
        padding: 8px;
        font-size: 18px;
    }
    #carte {
        margin-top: 75px;
    }
}

@media only screen and (max-width: 900px) {
    #facade {
        height: 350px;
        margin-top: 250px;
    }
    #facade img {
        max-height: 350px;
    }

    #listMenu li a {
        font-size: 15px;
    }

    .tableTarif td {
        padding: 6px;
        font-size: 15px;
    }
    #carte {
        margin-top: 150px;
    }
}

@media only screen and (max-width: 900px) {
    #listMenu li a {
        font-size: 10px;
    }
}