@import url('https://fonts.googleapis.com/css?family=Niconne&display=swap');
@import url('https://fonts.googleapis.com/css?family=Teko:300,400&display=swap');

a{
    color: #fff !important; /*Overrides Bootstrap built-in styles*/
}

p{
    margin: 0;
    font-size: large;
}

section{
    padding: 60px 0;
}


/*Header*/
header{
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(16, 29, 44, .95), rgba(16, 29, 44, .95)), url(images/catering-header-banner1-1900x800.jpg) center no-repeat;    
    background-size: cover;
    position: relative; /*Placing position:absolute items inside; want them relative to header*/
}


.gallery{
    width: 100%;
    height: 25vh;
    background: linear-gradient(rgba(16, 29, 44, .95), rgba(16, 29, 44, .95)), url(images/catering-header-banner1-1900x800.jpg) center no-repeat;
    background-size: cover;
    position: relative; /*Placing position:absolute items inside; want them relative to header*/
}

header > .container{
    position: relative;
    height: 100%;
    padding: 0;
}

.navbar-brand{
    position: absolute;
    width: 100%;
    max-width: 100px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 650ms;
}

.navbar-brand:hover{
    opacity: .8;
}

.hamburger-menu{
    position: fixed;
    top: 25px;
    right: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    background-color: #101D2C;
    border-radius: 4px;
    cursor: pointer;
    z-index: 999;
}

.hamburger-menu i{
    font-size: 30px;
    color: rgba(198, 153, 99, .7);
    margin: auto;
}

.hamburger-menu .fa-times{ /*X button to close sidebar-- Hidden by default*/
    display: none;
}

.hamburger-menu .fa-times.open{ /*Chained open class so I can use JS to toggle the X button when sidebar open*/
    display: block;
}

.hamburger-menu .fa-bars.open{ /*Hides hamburger menu bars when open-- displaying X button*/
    display: none;
}

.nav-list{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    list-style: none;
    background-color: #101D2C;
    z-index: 900;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: opacity 650ms;
}

.nav-list.open{
    opacity: 1;
    transform: scale(1);
}

.logo-img{
    max-width: 100%;
    height: auto;
}

.hero-text{
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -45%);
    text-align: center;
}

.hero-text h1{ 
    font-size: 160px;
    font-family: "Niconne", cursive;
    /* color: #C69963; ORIGINAL GOLD*/
    color: #BBA34B;
}

.btn{
    width: 100px;
    padding: 5px 0!important;
    border: 1px solid #BBA34B;
    position: relative;
    overflow: hidden;
}

.btn::before{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .3), transparent);
    transition: all 650ms;
}

.btn:hover::before{
    left: 100%;
}


/*About*/
.section-heading h4{
    text-transform: uppercase;
    color: #101D2C;
    line-height: 0;
    font-family: 'Teko', sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
}

.section-heading h1{
    font-family: 'Niconne', cursive;
    color: #BBA34B;
}

.about .btn{
    width: 150px;
    color: #BBA34B !important;
    transition: background-color 650ms;
}

.about .btn:hover{
    color: #fff !important;
    background-color: #BBA34B;
}

/*Menu Section*/
.menu{
    background-color: #101D2C;
    /* padding: 20px 0px 0px 0px; Removes Separation Between Menu & Chefs */
}

.shop-info i{
    color: #BBA34B;
    font-size: 50px;
}

.shop-info h1{
    font-family: 'Teko', sans-serif;
    font-size: 25px;
    font-weight: 300;
    text-transform: uppercase;
}

.shop-info p,
.shop-info address{
    color: rgba(255, 255, 255, .5);
}

hr{
    border-top: 2px solid rgba(255, 255, 255, .05);
}

.point-right,
.point-left{
    position: relative;
    background-color: #fff;
    display: flex;
}

.point-left::before,
.point-right::before{
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: inherit;
    top: -12px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    z-index: 1;
}

.menu-item-desc{
    padding: 50px 10px;
    color: #212529;
    margin: auto;
}

.menu-item-desc h6{
    color: #BBA34B;
    font-size: 20px;
}

.menu-item-desc h1{
    color: #101D2C;
    font-size: 30px;
    letter-spacing: 1px;
    font-family: 'Teko', sans-serif;
    font-weight: 300;
}

/*Chef Section? -- Repurpose this*/
.card-body h1{
    font-size: 25px;
    letter-spacing: 1px;
    font-family: 'Teko', sans-serif;
    font-weight: 300;
}

.card-body h6{
    font-size: 16px;
    color: #BBA34B;
}

/*Gallery*/
.img-gallery{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    grid-gap: 1.5rem;
    grid-template-areas:
            'img-1 img-2 img-3 img-3'
            'img-1 img-4 img-5 img-6'
            'img-7 img-7 img-8 img-6'
            'img-9 img-10 img-11 img-11'
            'img-9 img-12 img-13 img-14'
            'img-15 img-15 img-16 img-14';
}

.img-gallery a{
    width: 100%;
    height: 25rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.img-gallery a ion-icon{
    color: rgba(255, 255, 255, .6);
    font-size: 3rem;
    position: relative;
    z-index: 100;
    padding: 1rem 3rem;
    border: 2px solid rgba(255, 255, 255, .6);
    border-radius: .4rem;
    opacity: 0;
    transition: opacity .5s;
}

.img-gallery a::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .8);
    opacity: 0;
    transition: opacity .5s;
}

.img-gallery a:hover ion-icon,
.img-gallery a:hover::before{
    opacity: 1;
}

.img-1{
    grid-area: img-1;
    min-height: 51.5rem;
    background-image: url("images/Branzini 4.jpeg");
}

.img-2{
    grid-area: img-2;
    background-image: url("images/Ginger Wedge.jpeg");
}

.img-3{
    grid-area: img-3;
    background-image: url("images/Lamb Kefta Sliders.JPG");
}

.img-4{
    grid-area: img-4;
    background-image: url("images/Tuna Poke Tacos.jpeg");
}

.img-5{
    grid-area: img-5;
    background-image: url("images/Lettuce Wraps 3.jpeg");
}

.img-6{
    grid-area: img-6;
    min-height: 51.5rem;
    background-image: url("images/Seafood Entree 2.JPG");
}

.img-7{
    grid-area: img-7;
    background-image: url("images/Steak Entree.jpeg");
}

.img-8{
    grid-area: img-8;
    background-image: url("images/Crispy Rice Bite.JPG");
}

.img-9{
    grid-area: img-9;
    min-height: 51.5rem;
    background-image: url("images/Sushi .jpeg");
}

.img-10{
    grid-area: img-10;
    background-image: url("images/Grilled Meat .jpeg");
}

.img-11{
    grid-area: img-11;
    background-image: url("images/Beef Tartare.jpeg");
}

.img-12{
    grid-area: img-12;
    background-image: url("images/Tuna Pizza.JPG");
}

.img-13{
    grid-area: img-13;
    background-image: url("images/Sushi Board .jpeg");
}

.img-14{
    grid-area: img-14;
    min-height: 51.5rem;
    background-image: url("images/Wedding Buffet 4.JPG");
}

.img-15{
    grid-area: img-15;
    background-image: url("images/Salads.jpg");
}

.img-16{
    grid-area: img-16;
    background-image: url("images/Wedding Buffet Salads 2.JPG");
}

/*Media Queries*/
@media screen and (max-width: 900px){
    .img-gallery{
        grid-template-areas:
                'img-1 img-1 img-2 img-2'
                'img-1 img-1 img-3 img-3'
                'img-4 img-4 img-5 img-5'
                'img-6 img-7 img-7 img-7'
                'img-8 img-8 img-8 img-8'
                'img-9 img-9 img-10 img-10'
                'img-9 img-9 img-11 img-11'
                'img-12 img-12 img-13 img-13'
                'img-14 img-15 img-15 img-15'
                'img-16 img-16 img-16 img-16';
    }

    .img-gallery a{
        height: 20rem;
    }

    .img-1{
        min-height: 41.5rem;
    }

    .img-6{
        min-height: 20rem;
    }

    .img-9{
        min-height: 41.5rem;
    }

    .img-14{
        min-height: 20rem;
    }
}

@media screen and (max-width: 600px){
    .img-gallery{
        grid-template-areas:
                'img-1 img-1 img-1 img-1'
                'img-2 img-2 img-2 img-2'
                'img-3 img-3 img-3 img-3'
                'img-4 img-4 img-4 img-4'
                'img-5 img-5 img-5 img-5'
                'img-6 img-6 img-6 img-6'
                'img-7 img-7 img-7 img-7'
                'img-8 img-8 img-8 img-8'
                'img-9 img-9 img-9 img-9'
                'img-10 img-10 img-10 img-10'
                'img-11 img-11 img-11 img-11'
                'img-12 img-12 img-12 img-12'
                'img-13 img-13 img-13 img-13'
                'img-14 img-14 img-14 img-14'
                'img-15 img-15 img-15 img-15'
                'img-16 img-16 img-16 img-16';
    }

    .img-gallery a,
    .img-1,
    .img-6,
    .img-9,
    .img-14{
        min-height: 30rem;
        height: 30rem;
    }
}

/*Footer Section*/
footer{
    background-color: #101D2C;
    color: rgba(255, 255, 255, .5);
}


/*Responsive Media Queries*/
@media (max-width: 800px) {
    h1{
        font-size: 120px !important;
    }
}

@media (max-width: 500px) {
    h1{
        font-size: 100px !important;
    }
}

@media (max-width: 400px) {
    h1{
        font-size: 60px !important;
    }
}

@media (min-width: 576px) { /*Small Screens*/
    .navbar-brand{
        max-width: 150px;
    }
    .hamburger-menu{
        top: 35px;
        right: 25px;
    }
    .point-right::before,
    .point-left::before{
        display: none;
    }
    .menu-item-desc{
        padding: 50px 20px;
    }
}

@media (min-width: 768px) { /*Medium Screens*/
    .btn{
        width: 150px;
    }
}

@media (min-width: 992px) { /*Large Screens*/
    header > .container{
        padding: 0 15px;
    }
    .hamburger-menu{
        display: none;
    }
    .navbar-brand{
        position: initial;
        transform: initial;
    }
    .nav-list{
        position: initial;
        width: initial;
        height: initial;
        background-color: initial;
        flex-direction: row;
        opacity: initial;
        transform: initial;
        transition: initial;
        margin: 0;
        padding: 0;
    }
    .nav-item{
        margin: 0 30px;
    }
    .nav-item:last-child{
        margin-right: 0;
    }
    .nav-link{
        position: relative;
        padding: 0;
    }
    .nav-link::before{
        content: "";
        position: absolute;
        left: 0;
        bottom: -3px;
        background-color: #BBA34B;
        width: 100%;
        height: 2px;
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 650ms;
    }
    .nav-link:hover::before{
        transform: scaleX(1);
    }
}

@media (min-width: 1200px) { /*Extra Large Screens*/
    .point-right::before,
    .point-left::before{
        display: block;
        top: 50%;
        left: initial;
        transform: translate(0, -50%) rotate(45deg);
    }
    .point-left::before{
        left: -12px;
    }
    .point-right::before{
        right: -12px;
    }
    .menu-item-desc p{
        display: none;
    }
    .menu-item-desc .btn{
        color: #fff !important;
        background-color: #BBA34B;
    }
}