/* Menu Section Styles from Restoria-3-Video-Hero */

.menu-section{
  position: relative;
  overflow: hidden;
  background-color: var(--color-two);
}

.tabs-box{
  position: relative;
}

.tabs-box .tab-buttons{
  position: relative;
}

.tabs-box .tab-buttons .tab-btn{
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tabs-box .tabs-content{
  position: relative;
  background-color: var(--color-two);
  background-image: url(../images/background/menu-bg-paper.jpg);
  background-repeat: repeat;
  background-position: top center;
  background-size: cover;
}

.tabs-box .tabs-content:before{
  content: '';
  position: absolute;
  left: 0px;
  right: auto;
  top: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}

.menu-tabs{
  position: relative;
}

.menu-tabs .buttons{
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 0px;
}

.menu-tabs .buttons .tab-buttons{
  position: relative;
  text-align: center;
  font-family: var(--font-family-Fraunces);
}

.menu-tabs .buttons .tab-buttons .tab-btn{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  margin-left: 40px;
  margin-right: 40px;
  font-size: 16px;
  line-height: 25px;
  text-transform: uppercase;
  padding-bottom: 5px;
  font-family: var(--font-family-Urbanist);
  color: var(--white-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-tabs .buttons .tab-buttons .tab-btn:before{
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 5px;
  border-top: 1px solid var(--main-color);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

.menu-tabs .buttons .tab-buttons .tab-btn.active-btn:before{
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.menu-tabs .buttons .tab-buttons .tab-btn:after{
  content: '';
  position: absolute;
  left: 100%;
  margin-left: 36px;
  top: 50%;
  margin-top: -8px;
  height: 14px;
  width: 14px;
  background: none;
  position: relative;
}

.menu-tabs .buttons .tab-buttons .tab-btn:last-child:after{
  display: none;
}

/* Étoile verte CSS pour remplacer star-element.svg */
.menu-tabs .buttons .tab-buttons .tab-btn:after {
  content: "★";
  color: var(--color-one);
  font-size: 14px;
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
}

.tabs-box .tabs-content .tab .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.menu-tabs .menu-col .inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-left: 70px;
}

.menu-tabs .menu-col.img-col {
  text-align: center;
  padding-top: 30px;
}

.menu-tabs .menu-col.img-col .inner {
  display: block;
}

.menu-tabs .menu-col:nth-child(2) .inner{
  padding-right: 0;
  border-right: none;
}

.menu-tabs .menu-col:nth-child(2) .inner:after{
  display: none;
}

.menu-tabs .menu-col.img-col .image {
  position: relative;
  display: inline-block;
}

.menu-tabs .menu-col.img-col .image img{
  display: block;
  border-radius: 300px 300px 0 0;
  position: relative;
  z-index: 1;
}

.menu-tabs .menu-col.img-col .image::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid var(--main-color);
  border-radius: 300px 300px 0 0;
  pointer-events: none;
  z-index: 2;
  box-sizing: border-box;
}

.menu-tabs .dish-block{
  position: relative;
  margin-bottom: 35px;
}

.menu-tabs .dish-block:last-child{
  margin-bottom: 0;
}

.menu-tabs .dish-block .inner-box{
  position: relative;
  padding-left: 120px;
  min-height: 100px;
  padding-top: 10px;
}

.menu-tabs .dish-block .dish-image{
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: 100px;
  border-radius: 400px;
  overflow: hidden;
}

.menu-tabs .dish-block .dish-image img{
  position: relative;
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 400px;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.menu-tabs .dish-block .inner-box:hover .dish-image img{
  transform: rotate(90deg);
}

.menu-tabs .dish-block .title{
  position: relative;
  margin-bottom: 8px;
}

.menu-tabs .dish-block .title h6{
  position: relative;
  font-size: 18px;
  font-weight: 600;
  color: var(--white-color);
  margin: 0;
  line-height: 1.2;
}

.menu-tabs .dish-block .title h6 a{
  color: var(--white-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.menu-tabs .dish-block .title h6 a:hover{
  color: var(--main-color);
}

.menu-tabs .dish-block .menu-list-line{
  position: relative;
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--main-color);
  margin: 0 15px;
  vertical-align: middle;
}

.menu-tabs .dish-block .price{
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: var(--main-color);
  vertical-align: middle;
}

.menu-tabs .dish-block .text{
  position: relative;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-three);
  margin-top: 8px;
}

.menu-tabs .dish-block .text a{
  color: var(--color-three);
  text-decoration: none;
}

.menu-tabs .dish-block .s-info{
  position: relative;
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  color: var(--white-color);
  background: var(--main-color);
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.open-timing{
  position: relative;
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background: var(--color-five);
  border-radius: 15px;
}

.open-timing .hours{
  position: relative;
  font-size: 18px;
  font-weight: 600;
  color: var(--white-color);
  margin-bottom: 20px;
}

.open-timing .theme_color{
  color: var(--main-color);
  font-weight: 700;
}

.open-timing .link-box{
  position: relative;
}

.theme-btn{
  position: relative;
  display: inline-block;
  background: var(--main-color);
  color: var(--color-two);
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.theme-btn:hover{
  background: var(--white-color);
  color: var(--color-two);
  transform: translateY(-2px);
}

.theme-btn .btn-wrap{
  position: relative;
  display: block;
}

.theme-btn .text-one,
.theme-btn .text-two{
  position: relative;
  display: block;
  transition: all 0.3s ease;
}

.theme-btn .text-two{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
}

.theme-btn:hover .text-one{
  opacity: 0;
  transform: translateY(-20px);
}

.theme-btn:hover .text-two{
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .menu-tabs .buttons .tab-buttons .tab-btn{
    margin: 5px;
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .menu-tabs .menu-col .inner{
    padding-left: 20px;
  }
  
  .menu-tabs .dish-block .inner-box{
    padding-left: 80px;
  }
  
  .menu-tabs .dish-block .dish-image{
    width: 70px;
    height: 70px;
  }
  
  .menu-tabs .dish-block .dish-image img{
    width: 70px;
    height: 70px;
  }
}
