:root{
    --main-color:#8C7322;
    --second-color:#D6B227 ;
}

body{
    font-family: "Microsoft JhengHei";
}

.main-color-font{
    color:var(--main-color);
}

.second-color-font{
    color:var(--second-color);
}

.navbar .nav-link{
    font-size: 14px;
    text-transform:uppercase;
    padding-left:1rem !important;
    padding-right:1rem !important;
}

.nav-item:hover{
    border-bottom:1px solid var(--main-color);   
}

.carousel-item{
    min-height:450px;
}

.carousel-image-1{
    background:url(images/Carousel_1.jpg);
    background-size: cover;
}
.carousel-image-2{
    background:url(images/Carousel_2.jpg);
    background-size: cover;
}
.carousel-image-3{
    background:url(images/Carousel_3.jpg);
    background-size: cover;
}

#section-home-heading{
    background-image: url(images/bg_1.jpg);
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;    
    min-height:200px;
}

#section-contact{
    background: var(--main-color);
}

footer{
    background: #FFFFCC;
}

#section-heading{
    position: relative;
    min-height:300px;
    background-attachment: fixed;
    background-position: bottom center;
    background-size: cover;
    background-image: url(images/chef.jpg);
}

.dark-overlay{
    position: absolute;
    background: rgba(0,0,0,0.5);
    top:0;
    left:0;
    width:100%;
    height: 100%;
}

#section-staff img{
    margin-top:-40px;
    box-shadow: -1px 1px 20px 3px rgba(0,0,0,0.5);
}

.small-hr{
    border-bottom: 1px solid var(--second-color);
    width: 10%;
}

#section-staff .thumb {
    position: relative;
}

#section-staff .thumb img {
    display: block;
    width: 100%;
    height: auto;
}

#section-staff .thumb .middle{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: rgba(214,178,39,0.7);
}

#section-staff .thumb:hover .middle{
    opacity: 1;
}

#section-reservation{
    position: relative;
    height:100%;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    background-image: url(images/restaurant.jpg);
}

#section-reservation .reserve-overlay{
    background: rgba(0,0,0,0.75);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pizza-media{
    border:1px solid var(--second-color);
    border-radius: 5px;
    padding:10px;   
}

.pizza-media img{
    width: auto;
    height: 130px;
    background-position: center center;
    background-size: cover;
}

#section-menu .nav-item{
    margin:10px;
    border:1px solid var(--main-color);
    transition: 0.2s;
}

#section-menu .nav-item:hover{
    background-color: var(--main-color);   
}

#section-menu .nav-item a:hover{
    color:white;
}

#section-menu .nav-link{
    color:var(--main-color);    
}

#section-menu .nav-link.active{
    background-color: var(--main-color);
    color:white;   
    border-radius: 0rem;
}