/* 
 *  To change this license header, choose License Headers in Project Properties.
 *  To change this template file, choose Tools | Templates
 *  and open the template in the editor.
 *
 *  Licensed to the Apache Software Foundation (ASF) under one or more
 *  contributor license agreements. See the NOTICE file distributed with
 *  this work for additional information regarding copyright ownership.
 *  The ASF licenses this file to You under the Apache License, Version 2.0
 *  (the "License"); you may not use this file except in compliance with
 *  the License. You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 * 
 *  Developer: Pranata Naskar (pranata.naskar@gmail.com)
 * 
 */

body {
    background: #000;
    color: white;
    font-family: 'Segoe UI', sans-serif;
}
.header, .footer {
    background: #fcb813;
    color: #000;
    padding: 20px 0;
    text-align: center;
}
.main-banner {
    background: url("/images/proj_header_image-13286-770x400.jpg") no-repeat center center;
    background-size: cover;
    padding: 130px 20px;
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 4px #000;
    height: 300px;
}
.coupon-section {
    background-color: #111;
    padding: 50px 20px;
}
.btn-book {
    background-color: #28a745;
    color: white;
}
.btn-view {
    background-color: #ffc107;
    color: black;
}
.menu-card {
    background-color: #fff;
    color: #000;
    border: none;
}
.menu-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.highlight {
    background-color: #000;
    padding: 40px 0;
}
.container.section1 .card{
    height: 300px;
}
.container.section1 .card img{
    height: 300px;
    width: 100%;
}


/*---Menu----*/
header *{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
header{
    height: 120px;
    width: 100%;
    position: relative;
    background-color: white;
    box-shadow: 0px 2px 5px rgba(0,0,0,.4);
}
.timlogo{
    width: 200px;
    display: block;
    margin: 0 auto;
    padding-top: 15px;
}
.head{
    position: absolute;
    top: 35px;
    right: 50px;
    z-index: 2;
}
.head .tile{
    display: inline-block;
    height: 50px;
    width: 50px;
    margin-left: 5px;
    transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
}
.head .tile.socialmedia{
    color: #0b253e;
    font-size: 50px;
    text-align: center;
    line-height: 50px;
    position: relative;
    top: -6px;
}
header.clicked .head .tile.socialmedia{
    color: white;
}
.head .burger{
    margin-left: 25px;
    padding: 5px;
    cursor: pointer;
    background-color: transparent;
}
.meat{
    height: 40px;
    width: 40px;
    position: relative;
    transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
}
header.clicked .head .burger .meat{
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}
.meat .line{
    height: 4px;
    width: 40px;
    background-color: #0b253e;
    border-radius: 3px;
    position: absolute;
    transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
}
.meat .line.one{
    top: 5px;
    left: 0px;
}
.meat .line.two{
    top: 18px;
    left: 0px;
}
.meat .line.three{
    top: 31px;
    left: 0px;
}

header.clicked .burger .line{
    background-color: white;
}
header.clicked .burger .line.one{
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    top: 18px;
}
header.clicked .burger .line.two{
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    top: 18px;
}
header.clicked .burger .line.three{
    opacity: 0;
}
header.clicked .burger:hover .meat{
    transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
}

.nav-modal{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    pointer-events: none;
    z-index: 1;
}
header.clicked .nav-modal{
    visibility: visible;
    opacity: 1;
    pointer-events: initial;
}
.nav-modal .blob{
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    margin: 0 auto;
    background-color: #0b253e;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transition: all .3s ease-in;
}
header.clicked .nav-modal .blob{
    width: 100vw;
    height: 100vh;
    border-radius: 0px;
}

nav{
    position: fixed;
    left: 20%;
    top: 30%;
    color: white;
}
nav a{
    color: white;
    text-decoration: none;
    font-family: sans-serif;
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
}
nav ul li{
    list-style: none;
    text-align: right;
    border-right: 6px solid white;
    padding-bottom: 10px;
    padding-right: 10px;
    position: relative;
}
nav{
    opacity: 0;
    transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    -webkit-transition-delay: .3s;
    -moz-transition-delay: .3s;
    -o-transition-delay: .3s;
    transition-delay: .3s;
}
header.clicked nav{
    opacity: 1;
}

nav ul li ul{
    position: absolute;
    right: -300px;
    top: -4px;
    display: none;
}
nav ul li ul li{
    border: none;
    padding-bottom: 10;
    padding-left: 10px;
    height: 50px;
    width: 300px;
}
nav ul li ul li a{
    display: block;
    height: 50px;
    font-size: 20px;
    text-align: left;
    padding: 10px;
}
nav ul li.selected ul{
    display: block;
}

nav ul li.notselected a{
    opacity: .5;
}
nav ul li.selected ul li a{
    opacity: 1;
}

.gallery .gitems img {
    width: 100%;
}

.blogs .text-black, .text-gray-800 {
    color: #5d5d5d !important;
    font-weight: 500 !important;
}
.blogs .text-gray-800, .text-gray-600 {
    color: black !important;
    font-weight: 500 !important;
}

.home-footer .col1 h5{
    font-size: 24px !important;
    line-height: 25px;
    margin-bottom: 25px;
}

.home-footer .col1 p{
    font-size: 14px !important;
    line-height: 15px;
    margin-bottom: 10px;
    color: #f8f9fa8a !important;
}

.home-footer .footer-links h6{
    font-size: 16px;
    margin-bottom: 20px;
}

.home-footer .footer-links ul li{
    font-size: 14px !important;
    line-height: 14px;
    padding-bottom: 12px;
    color: #f8f9fa8a !important;
}
.home-footer .footer-links ul li a{
    color: #f8f9fa8a !important;
}

@media screen and (max-width:820px){
    .timlogo{
        margin-left: 50px;
    }
}
@media screen and (max-width:580px){
    .timlogo{
        width: 130px;
        padding-top: 30px;
    }
    nav ul li a{
        font-size: 16px;
    }
    nav ul li ul{
        top: -9px;
    }
    nav ul li ul li{
        height: 40px;
    }
    nav ul li ul li a{
        font-size: 16px;
        height: 40px;
    }
}
@media screen and (max-width:500px){
    .timlogo{
        display: none;
    }
}
@media screen and (max-width:320px){
    header .head .tile.socialmedia{
        display: none;
    }
}
/*---./Menu---*/


