/*********************  Default-CSS v1  *********************/
:root {
    scroll-behavior: unset;
	
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}
@font-face {
  font-family: 'League Spartan';
  src: url("../fonts/LeagueSpartan-VariableFont_wght.ttf");
  font-display: swap;
}
@font-face {
  font-family: 'Cairo';
  src: url("../fonts/Cairo-VariableFont_slnt,wght.ttf");
  font-display: swap;
}


body {
    margin: 0;
    
	font-family: aglet-sans, sans-serif;
	font-style: normal;
	font-weight: 200;
   
    font-size: 16px;
    line-height: 1.3;


	

}
a, span, a:hover, a:active, button {
    text-decoration: none;
}
a, div a:hover, div a:active, div a:focus, button {
    text-decoration: none;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
p {
    margin: 0;
}
body h1, body h2, body h3, body h4, body h5, body h6 {
    margin: 0;
}

ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
}

img, svg{  
	max-width: 100%;
} 

.animate{
	animation: moveUpAnimation ease 0.8s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes moveUpAnimation {
    0% {
        transform: translateY(25px);
    }
    100% {
        transform: translateY(0);
     }
}

.title{
    font-size: 60px;
    /*font-family: 'League Spartan', sans-serif;*/
    font-weight: 700;
  
    text-transform: uppercase;
    line-height: 1.05;
}

.subtitle{
	font-size: 32px;
    /*font-family: 'League Spartan', sans-serif;*/
    font-weight: 200;
	color:#2F3138;
  
    text-transform: uppercase;
    line-height: 1.05;
	margin-bottom:20px;
}

.text_highlight{
	
}


/*********************  Default-CSS close  *********************/

/********************  Content Css Start  *********************/



.main_wrapper{
	background-color:#F0F3F9;
}


header {
	background-color:#1c1e21;
}


.header_content{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px 0;
	
}

.header_content a{
		color:#fff;
		font-size:16px;
}

.header_address{
	width:33%;
	
}
.header_address a{
	font-size:19px;
	display:inline-block;
}

.header_address .telephone{
	display:inline-block;
	width:20px;
	height:20px;
	background-image:url("../images/icone_telephone.svg");
	background-size:contain;
	background-repeat:no-repeat;
	margin-bottom:-1%;
}

.header_address a:after{
	content: "";
	display:block;
	height:2px; 
	width:0%;
	background-color:#eba11a;
	border-radius: 20px;
	transition: width 0.5s ease 0s;
}

.header_address a:hover:after{

	width:100%;

}


.logo a{
	display:block;
	height:65px;
	width:200px;
	background-image:url("../images/logo.svg");
	background-size:contain;
	background-repeat:no-repeat;
	text-indent: -9999px;
}

.menu_list{
	display: flex;
	justify-content: flex-end;
	width:33%;
}

.menu_list li{
	display:inline-block;
	margin-left:35px;
	text-transform: uppercase;
	margin-top:5px;
}

.menu_list li.mobile{
	display:none;
}

.menu_list li:after{
	content: "";
	display:block;
	height:2px; 
	width:0%;
	background-color:#eba11a;
	border-radius: 20px;
	transition: width 0.5s ease 0s;
}

.menu_list li:hover:after{

	width:100%;

}



/* //////////////////////////////////////////                HERO           /////////////////////////////////////////*/


.hero_sec{
	position: relative;
    overflow: hidden;
	
	height:560px;
	
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: end;
}
 .parallax-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 175%;
	  margin-top:-200px;
      background-image: url("../images/hero_obonneheure.webp");
      background-size: cover;
      background-position: center;
      transform: translateZ(0); /* Ensure proper GPU acceleration */
     
    }
.hero_border_top{
	background-image:url("../images/borderPattern_dark.svg");
	width:100%;
	height:4px;
	background-size:contain;
	background-repeat:repeat-x;
	z-index:1000000;
	
}
.hero_border_bottom{
	background-image:url("../images/borderPattern_light.svg");
	width:100%;
	height:4px;
	background-size:contain;
	background-repeat:repeat-x;
	transform: scaleY(-1);
	
}

.hero_content{
	color:#fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
}


.hero_content .title{
	font-weight:100;
	width:50%;
	/*text-align:right;*/
	filter: drop-shadow(black 0.5rem 0.25rem 12px);
}


.hero_stamp{
	width:400px;
	height:400px;
	margin-right:-20px;
	filter: drop-shadow(black 0.25rem 0.25rem 20px);
	font-weight:200;

}


@keyframes rotateContent {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

#stamp {
  animation: rotateContent 120s linear infinite; /* Adjust duration and timing function as needed */
  transform-origin: 178px 178px;
  
}




/* //////////////////////////////////////////                MAIN           /////////////////////////////////////////*/




.intro_content{
		padding:60px 0;
	
	text-align: center;
	
	border-bottom: 1px solid rgba(47, 49, 56, 0.5);
}


.intro_content p{
	width:60%;
	margin:0 auto;
	margin-top:10px;
}

.subhero_sec{
	padding:50px 0;
	
}

.subhero_content{
	background:#000;
	height:350px;
	border-radius:6px;
	background-image:url("../images/restaurant.png");
	background-size:cover;
	background-position:center;
}


.card_content{
		padding:60px 0;
	
	text-align: center;
	
	border-top: 1px solid rgba(47, 49, 56, 0.5);
	border-bottom: 1px solid rgba(47, 49, 56, 0.5);
}



.icone_giftcard{
	display:inline-block;
	width:70px;
	height:70px;
	background-image:url("../images/icone_giftcard.svg");
	background-size:contain;
	background-repeat:no-repeat;
}



.card_content p{
	width:60%;
	margin: 0 auto;
	margin-bottom:20px;

}

.card_content a{
	display:inline-block;
	padding:8px 25px;
	color:#fff;
	background-color:#1c1e21;
	font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
	margin-top:20px;
	border-radius:4px;
	letter-spacing:1px;
}

.card_content a:hover{
	background-color:#eba11a;
	
}

.map_sec{
	padding:60px 0;
	
}

.map_content{
	display: flex;
	justify-content: space-between;
	
}



.horaire{
	margin-top:30px;
	display: flex;
	justify-content: space-between;
	width:40%;

	
}
.current-day {
      color:#eba11a; /* Change this to your desired style */
      font-weight: bold;
    }

.horaire ul li{
	margin-top:5px;
	font-size:18px;
}

.map{
	
	width:60%;
	height:500px;
	border-radius:6px;
	overflow:hidden;
	margin-left:50px;
}



/*
LEAFLET MAP

#map{
	height:500px;
	width:50%;
	border-radius:6px;
}
*/


/* //////////////////////////////////////////                FOOTER           /////////////////////////////////////////*/



#myBtn {
	display: none; /* Hidden by default */

	position: fixed;
	bottom: 20px; 
	right: 30px;
	
	border: 2px solid #F0F3F9;
	outline: none;
	
	cursor: pointer; 
	width:50px;
	height:50px;
	
	background-color: #eba11a; 
	background-image:url("../images/arrowUp.svg");
	background-size:20px;
	background-repeat:no-repeat;
	background-position: center;
	border-radius: 50%; 
}

#myBtn:hover {
  background-size:25px;
}



.footer_sec{
	margin-top:50px;

	background-color:#eba11a;
}

.footer_border{
	background-image:url("../images/borderPattern_light.svg");
	width:100%;
	height:4px;
	background-size:contain;
	background-repeat:repeat-x;
}

.footer_content{

	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 50px 0;
	
}

.footer_left{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height:80px;
	width: 42%;
}

.footer_links{
	display: flex;
		flex-direction: column;
	justify-content: space-between;

	height:100%;
	
}

.footer_links a{
	color:#fff;
	font-weight:500;
	display:block;

}
.footer_links a img{
	margin-right:5px;
	
}

.footer_logo a{
	display:block;
	height:55px;
	width:200px;
	background-image:url("../images/logo.svg");
	background-size:contain;
	background-repeat:no-repeat;
	text-indent: -9999px;
}


.logo_binome {
  width: 112px; /*69*/
  height: 37px; /*23*/
  border: 2px solid #fff;
  border-radius: 3px;
  transition: 0.3s;
}

.logo_binome:hover {
  background: #ff6a48;
  border-color: transparent;
 }
 .logo_binome img{

  vertical-align:center;
}