@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed&display=swap');

* {
  font-family: 'Roboto Condensed', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  margin: 0px;
}

.blur-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
  z-index: 9998;
  display: block;
} 

nav
{
  background-color: white;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  top: 0;
  width: 100%;
  position: sticky;
  box-shadow: 0 1px 4px rgb(146 161 176 / 20%);
}


nav .nav-hamburger
{
  width: 70px;
  height: 60px;
}

nav .checkbox {
  position: absolute;
  display: block;
  height: 32px;
  width: 32px;
  top: 20px;
  left: 50px;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}

nav .hamburger-lines {
  display: block;
  height: 26px;
  width: 32px;
  position: absolute;
  top: 17px;
  left: 50px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

nav .hamburger-lines .line {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: #0e2431;
}

nav .hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

nav .hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}

nav .hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

nav input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
  transform: rotate(45deg);
}

nav input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
  transform: scaleY(0);
}

nav input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
  transform: rotate(-45deg);
}

.nav-logo a{
  text-decoration: none;
  color: #000;
}

nav .nav-logo
{
  font-weight: bold;
  font-size: 1.6em;
  cursor: pointer;
}

nav .nav-icons
{
  width: 70px;
  justify-content: space-between;
  display: flex;
}

nav .svg-bell
{
  display: none;
}

nav .svg-style
{
  width: 30px;
  height: 30px;
  cursor: pointer;
}

nav .svg-phone
{
  width: 35px;
  height: 35px;
}

.nav-menu {
  display: none;
}

.menu-items
{
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-items li
{
  padding: 10px;
  list-style: none;
}

.menu-items a
{
  text-decoration: none;
  text-transform: uppercase;
  color: #0e2431;
  font-weight: 500;
  font-size: 1.6rem;
  padding: 0.7rem;
}

.menu-items a:hover{
  font-weight: bolder;
}

.main-content
{
  padding: 10px 0;
  background-color: #4040400F;
}

.popup-anouncement {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

.reveillon-main{
  border-radius: 15px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 3px rgb(0 0 0 / 25%);
  padding: 10px;
}

.reveillon-separator{
  padding: 10px;
}

.reveillon-sub{
  border-radius: 15px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 3px rgb(0 0 0 / 25%);
  padding: 10px;
}

#reveillon-tittle{
  padding: 5px 0;
  font-weight: bold;
  font-size: 1.5em;
  text-decoration: underline overline;
}

#sub-reveillon-tittle{
  padding: 5px 0;
  font-weight: bold;
  font-size: 1.3em;
  text-decoration: underline;
}

#reveillon-sub-tittle{
  font-size: 1.15em;
  color: red;
  font-weight: bold;
}

#reveillon-img{
  border-radius: 10px;
  max-width : 500px;
  max-height : 250px;
}

.reveillon-price{
  display: flex;
  justify-content: center;
  font-size: 1.2em;
}

.reveillon-price-title{
  font-weight: bold;
}

.reveillon-food{
  font-size: 1.2em;
  font-weight: bold;
}

#reveillon-food-extra{
  font-size: 1em;
  color: red;
}

.popup-content {
  text-align: center;
}

.close {
  float: right;
  cursor: pointer;
}

.content-group-padding{
  padding-top: 20px;
}

.container-content{
  display: flex;
  overflow-y:auto;
  justify-content: center;
}

.container-openingTime{
  background-color: white;
  border-radius: 10px;
  padding: 15px;
  height: 370px;
  width: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.openingTime-title{
  padding: 5px 0;
  font-weight: bold;
  font-size: 1.5em;
  text-decoration: underline overline;
  text-align: center;
}

.openingTime-content{
  display: flex;
  padding-top: 5px;
  text-align: left;
  justify-content: space-between;
  line-height: 1.8em;
}

.openingTime-content .Space{
  margin-right: 18px;
}

.openingTime-content .Center{
  text-align: center;
}

.openingTime-content .Color{
  color: red;
  font-weight: bold;
}

.openingTime-content li{
  list-style: none;
  font-size: 1.2em;
  text-transform: uppercase;
}

.openingTime-content #title
{
  font-weight: bold;
}

.container-buffetPrice .container-box{
  display: flex;
  justify-content: space-between;
}

.container-openingTime .container-left {
  margin-right: 25px;
}

.buffetPrice-content #title{
  font-weight: bold;
}

.container-buffetPrice {
  background-color: white;
  border-radius: 10px;
  padding: 15px;
  height: 370px;
  width: 430px;
}

.container-buffetPrice li{
  list-style: none;
  font-size: 1.2em;
}

.buffetPrice-tilte{
  display: flex;
  text-align: center;
  flex-direction: column;
}

.buffetPrice-tilte .Tittle{
  padding: 5px 0;
  font-weight: bold;
  font-size: 1.5em;
  text-decoration: underline overline;
  text-align: center;
  text-transform: uppercase;
}

.buffetPrice-tilte .Content{
  font-size: 1.15em;
  color: red;
  font-weight: bold;
}

.container-buffetPrice .Flex{
  padding: 5px 0;
}

.container-time {
  display: flex;
  justify-content: center;
}

.container-time #title{
  font-weight: bold;
  text-align: center;
}

.container-time .price-separator{
  width: 20px;
}

.container-time .price{
  width: 43px;
  text-align: right;
}

.container-content .container-separator{
  width: 25px;
}

.container-content-map{
  display: flex;
  justify-content: center;
}

.container-map{
  display: flex;
  background-color: white;
  border-radius: 10px;
  padding: 15px;
  font-size: 1.2em;
  width: 840px;
}

.map-left-container iframe{
  border-radius: 5px;
  border: 0;
  width: 570px;
  height: 300px;
}

.map-right-container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-size: 1.2em;
}


.map-right-container .map-title{
  font-weight: bold;
  text-decoration: underline overline;
}

.container-content-tooGoodToGo
{
  display: flex;
  justify-content: center;
}

.container-tooGoodToGo
{
  display: flex;
  justify-content: center;
  background-color: white;
  border-radius: 10px;
  padding: 15px;
  font-size: 1.2em;
  width: 840px;
}

.container-tooGoodToGo .map-left-container{
  display: flex;
}

.container-tooGoodToGo .container-left{
  display: flex;
}

.container-tooGoodToGo .container-left img 
{
  filter: brightness(0) saturate(100%);
  width: 150px;
}

.container-tooGoodToGo .container-separator{
  width: 60px;
}

.container-tooGoodToGo .container-right{
  font-size: 1.1em;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  text-align: center;
}

.container-tooGoodToGo .container-right .button{
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 0.8em;
  text-transform: uppercase;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.container-tooGoodToGo .container-right .button-pointed{
  background-color: white; 
  color: black; 
  border: 2px solid #000;
}

.container-tooGoodToGo .container-right .button-pointed:hover {
  background-color: #000;
  color: white;
}

.footer-container{
  padding-top: 5px;
  text-align: center;
  font-weight: bold;
}

@media only screen and (max-width: 900px) {
  .container-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .container-openingTime{
    height: 300px;
    width: 500px;
  }

  .container-content .container-separator {
    display: none;
  }

  .container-buffetPrice{
    margin-top: 20px;
  }

  .container-buffetPrice{
    width: 500px;
  }

  .container-map{
    width: 500px;
    flex-direction: column-reverse;
  }

  .map-left-container{
    display: flex;
  }

  .map-left-container iframe{
    width: 470px;
    height: 250px;
  }

  .map-right-container{
    padding-bottom: 5px;
  }

  .container-tooGoodToGo{
    width: 500px;
  }
}

@media only screen and (max-width: 550px) {
  nav{
    padding: 0 0px;
  }

  nav .nav-logo{
    font-size: 1.4em;
  }

  nav .checkbox {
  left: 20px;
  }
  
  nav .hamburger-lines {
    left: 20px;
  }

  .annonce span{
    font-size: 1.3em;
  }

  .slider-list .slider-img1 img
  {
    width: 290px;
  }

  .container-map
  {
    width: 350px;
    flex-direction: column-reverse;
  }
  
  .map-left-container iframe{
    width: 345px;
    height: 185px;
  }

  .buffetPrice-tilte .Content{
    font-size: 1.0em;
  }

  .container-buffetPrice{
    height: auto;
    width: 350px;
  }

  .container-buffetPrice li{
    font-size: 1.1em;
  }

  .container-time .price-separator{
    width: 5px;
  }

  .container-openingTime{
    height: auto;
    width: 350px;
  }
  
  .openingTime-content .Space{
    margin-right: 0px;
  }

  .openingTime-content{
    line-height: 1.5em;
  }

  .openingTime-content li{
    font-size: 1.1em;
  }

  .container-tooGoodToGo .container-separator{
    width: 15px;
  }

  .container-tooGoodToGo{
    width: 350px;
    padding: 10px;
  }

  .container-tooGoodToGo .container-left img{
    width: 100px;
  }

  .container-tooGoodToGo .container-right{
    font-size: 1.0em;
  }

  .container-tooGoodToGo .container-right .button{
    padding: 5px 0;
    font-size: 1em;
  }

  .footer-container{
    font-size: 0.8em;
  }
}

@media only screen and (max-width: 520px) {
  #reveillon-tittle{
    padding: 5px 0;
    font-weight: bold;
    font-size: 1.25em;
    text-decoration: underline overline;
  }
  
  #sub-reveillon-tittle{
    padding: 5px 0;
    font-weight: bold;
    font-size: 1.05em;
    text-decoration: underline;
  }
  
  #reveillon-sub-tittle{
    font-size: 1em;
    color: red;
    font-weight: bold;
  }
  
  #reveillon-img{
    border-radius: 10px;
    max-width : 335px;
    max-height : 250px;
  }
  
  .reveillon-price{
    display: flex;
    justify-content: center;
    font-size: 1em;
  }

  
  .reveillon-food{
    font-size: 1em;
    font-weight: bold;
  }
  
  #reveillon-food-extra{
    font-size: 0.9em;
    color: red;
  }
}