@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* config global*/
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: Poppins , sans-serif;
    scroll-behavior: smooth;
}
p{
    font-weight: 300;
    color:#111;
}
header{
    position: fixed;
    top: 0%;
    left: 0%;
    padding: 20px 10px;
    width: 100%;
    z-index: 1;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    transition: 0.5s;
    background-color: #2a4963
}
/* fim das config Globais */

/* Barra de navegaçao */

.logo{
    color: #fff;
    font-weight: bold;
    font-size: 2em;
    text-decoration: none;
}
.logo span{
    color:#fb911f
}

.navbar{
    display: flex;
    position:relative;
    
}

.navbar li{
    list-style: none;
}
.navbar a{
    color:#fff;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 500;
}

.btn-reserve{
    padding: 10px 20px;
    background: #fb911f;
    margin-top: -10px;
    text-transform: uppercase;
}
.btn-reserve:hover{
    background: #d87710;
    transition: ease-out;
}

header .navbar li a:hover{
    color: #fb911f;
    border-bottom: 2px solid #fb911f;
}

/* fim  Barra de Navegaçao */

/* Section banniere*/

.banniere{
    position:relative;
    width:100%;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items: center;
    background-image: url(image/resto1.jpg);
    background-size: cover;
}

.banniere .contenue{
    
    text-align: center;
}
.banniere .contenue h2{
    color:#fff;
    font-size: 3em;
    text-transform: capitalize;
    text-shadow: 0.2em 0.1em 0.1em #fb911f
}
.contenue p:nth-child(2){  /*esta linha herda da primeira linha */
    color:#fff;
    font-size:1.2em;
}
.btn1{
    font-size:1em;
    color:#fff;
    background-color: #fb911f;
    padding:10px 20px;
    display:inline-block;
    margin-top: 20px;
    text-transform: uppercase;
    text-decoration:none;
    letter-spacing: 2px;
    transition:0.5s;
    margin-left: 10px;
}
.btn2{
    font-size:1em;
    color:#fff;
    background-color: #2a4963;
    padding:10px 20px;
    display:inline-block;
    margin-top: 20px;
    text-transform: uppercase;
    text-decoration:none;
    letter-spacing: 2px;
    transition:0.5s;
    margin-left: 10px;
}
.btn1:hover{
    letter-spacing: 4px
}


/* Fin de section banniere*/

/* Section apropos */

section{
    padding: 50px;
}
.row{
    position: relative;
    width: 100%;
    display:flex;
    justify-content:space-between
}
.row .col50{
    position:relative;
    width:48%;
    justify-content:center;
    align-items:center;
}
.row .col50 h2{
    margin-bottom:20px;   
}
.titre-text{
    color:#000;
    font-size:2em;
    font-weight: 300px;
    text-transform: capitalize;
}
.titre-text span{
    color:#fb911f;
    font-size: 1.5em;
    font-weight: 700px;
}.row .col50 img{
    height: 450px;
    width: 650px;
    position: relative;
}

/* fin de Section apropos */

/* Section Menu */

.titre{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.menu{
    margin-top: -100px;
}
.menu .contenu{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}
.menu .contenu .box{
    width: 350px;
    margin:5px;
    border: 20px solid #fff;
    box-shadow: 20px 15px 35px rgba(0,0,0,0.8)
}
.menu .contenu .box .imbox{
    position: relative;
    width:100%;
    height: 280px;
}
.menu .contenu .box .imbox img{
    position:relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 280px;
    object-fit: cover;
}
.menu .contenu .box .text{
    text-align: center;
    font-weight: 300px;
    color: #111;
}
.menu .contenu .box .text h3{
    font-weight: 400;
}

.menu .contenu .box .btn2{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}
/* fin de Section Menu */

/* Footer */

.contentor-footer{
    display: flex;
    width: 90%;
    justify-content: space-evenly;
    margin: auto;
    padding-bottom: 50px;
    border-bottom: 1px solid #ccc;
}

.content-foo{
    text-align: center;
}

.content-foo h4{
    color:#2a4963;
    border-bottom: 3px solid #fb911f;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.content-foo p{
    color:#2a4963 ;
}

.content-foo a{
    color:#2a4963;
    border-bottom: 3px solid #fb911f;
    padding-bottom: 5px;
    margin-bottom: 10px;
    text-decoration: none;
}

.titulo-final{
    text-align: center;
    font-size: 24px;
    margin: 20px 0 0 0 ;
    color: #9e9797
}

/* Contacts*/

iframe{
    display: flex;
    width:100%;
    height: 300px;
}


/* Menu */

.menu .menu-head{
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items:center;
    padding-top: 50px;

}

.menu .menu-head img{
    width: 250px;
    height: 200px;
    margin: 100px
}

@media screen and (max-width: 900px){

    .row{
        position: relative;
        width: 100%;
        display:grid;
        
    }

}

