html{
    height:-webkit-fill-available;
}
body{
    padding:0;
    margin:0;
    min-height: 100vh;
}

@supports (-webkit-touch-callout:none){
    body{
        min-height:webkit-fill-available;
    }
}

header{
    color:white;
    padding:20px 50px 0px 50px;
}

body{
    font-family: 'Jost' !important;
}

h1{
    font-size: 4rem;
}

h2{
    font-size: 3rem;
    padding-bottom: 30px;
}
h2::after{
    content: "";
    display: block;
    border-bottom: 4px solid #5f9ea0;
    width:100px;
    margin:auto;
}


a{
    text-decoration: none  !important  ;
    color: inherit  !important;
    font-family: 'Jost' ;
}

ul{
    list-style: none;
    list-style-type:none;
    margin-left:0;
    padding-left:0;
}

li{
    list-style: none;
}


.bold{
    font-weight: bold;
}
.blue{
    color:#5f9ea0;
}
.background{
    background-image: url('../image/background2.jpg'); 
    background-size: 100%;
    background-repeat: no-repeat;
    position: relative;
}

.background::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1; /* Place le calque en arrière-plan par rapport aux autres éléments */
}

.fixed-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 9;
    background-color: #FFDAC6;
    padding-top:20px;
    padding-bottom: 20px;

  }
  
.menu{
    display: flex;
    justify-content: space-between;
}

.right-part{
    /* display: flex;
    justify-content: center;
    gap:1rem; */
    z-index: 6;
    /* text-align: center;
    align-items: center; */

}

.right-part .btn-reserver{
    display: none;
}
img[alt="logo-header"]{
    width:30px;
}

.logo-header {
    z-index: 6;
}
.socials{
    display: flex;
    justify-content: center;
    gap:1rem;

}

.menu-btn{
    cursor: pointer;
    z-index: 6;
    display: flex;
    align-items: center;
    gap:0.5rem;
}

.menu-btn i {
    font-size: 20px;
}

/* le menu qui apparait */

.nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 300px;
	height: 100%;
	background: black;
	transform: translateX(-100%);
	transition: transform 0.5s;
	z-index:1000;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: 'SedwickAveDisplay';
	font-size:1.5rem;
	color: #FFFDF3;
}

.nav.active {
	transform: translateX(0);
}

.nav__list li{
    padding-bottom: 30px;
}

.closing-cross-nav{
    padding:10px;
    color: white;
    align-self: flex-start;
    font-size: 2rem;
    cursor: pointer;
}


.BigTitle{
    height:85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color:white;
    position: relative;


}
.title{
  text-align: center;
  display: flex;
  flex-direction: column;
  gap:1rem;
  z-index: 6;
  text-align: center;

}
.title h1{
    font-size: 3rem;
}

.btn-reserver-menu{
    background-color: #5f9ea0;
    padding:8px 20px;
    margin: auto;
    cursor: pointer;
    display: none;
    text-align: center ;

}


.btn-reserver{
    background-color: #5f9ea0;
    padding:8px 10px;
    width:120px;
    margin: auto;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    outline: none;
    text-align: center;
}

.btn-reserver{
    background-color: #5f9ea0;    
    border: none;
    z-index: 1;
  }
  .btn-reserver:after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    background-color: #FFDAC6;
    transition: all 0.3s ease;
  }
  .btn-reserver:hover {
    color: #fff;
  }
  .btn-reserver:hover:after {
    left: 0;
    width: 100%;
  }
  .btn-reserver-menu:active {
    top: 2px;
  }

/* .reservation-form{
    background-color:rgb(251, 251, 247);
    border: double #FFDAC6 13px ;
    padding-top:20px;
    padding-bottom: 50px;
    width:60%;
    padding:20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top:10%;
    position: fixed;	
	z-index:1000;
    display: none;
    color: initial;
} */

.reservation-form {
    background-color: rgb(251, 251, 247);
    border: double #FFDAC6 13px;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 1000;
    display: none;
    color: initial;
    font-size:12px;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.closing-cross{
    align-self: flex-end;
    cursor: pointer;
    padding-right: 20px;
    font-size: 20px;

}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
  }


.custom-form-class{
    color: cadetblue;
}



.btn-save{
    text-align: center;
    margin-top: 10px;
    margin-right: -50%;
    padding:  5px 10px 5px 10px;
    background-color: #FFD700 !important;
    border-radius: 30px;
    cursor: pointer;
    width: fit-content;
    box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
    7px 7px 20px 0px rgba(0,0,0,.1),
    4px 4px 5px 0px rgba(0,0,0,.1);
    border:none;

}

img[alt="chef-hat"]{
    width:100px;
    margin: auto;
    display: block;
    padding:20px;
}

footer{
    color: white;
    padding:10px;
    background-color: black;

}
.footer{
    color: white;
    height:200px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding:20px;
    flex-wrap: wrap;
}

.copyright{
    text-align: center;
}


@media screen and (max-width: 600px){

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: black;
        transform: translateX(-100%);
        transition: transform 0.5s;
        text-align: center;
    }

    .closing-cross-nav{
        padding-top:40px;
    }
    

}

@media screen and (max-width: 768px){
   

    .background{
        background-size: 200%;
    }    
}

@media screen and (max-width: 950px){
    .background{
        background-size: 250%;
    }
    

}
