@import url('https://fonts.googleapis.com/css?family=Roboto:300,300,400,500,600,700');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

* {
    scroll-behavior: smooth;
}

a {
    text-decoration: none !important;
}

:root {
    --primary: #F6E135;
    --secondary: #333;
    --paragraph: gray;
    --bg-primary: #1D2E73;
    --bg-secondary: #304598;
    font-size: 16px;
}

.oh {
    overflow: hidden;
}

img {
    max-width: 100% !important;
}

h1 {
    font-size: 5rem;
    line-height: 1.5;
    font-family: "Roboto", sans-serif;
}

h2 {
    margin-top: 0px;
    font-size: 3rem;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    color: var(--bg-primary);
}

h3 {
    font-size: 1.25rem;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    line-height: 1.5;
}

.italic {
    font-style: italic;
}

p {
    color: var(--paragraph);
    font-size: 1rem;
    line-height: 2;
    margin-top: 30px;
    margin-bottom: 50px;
}

ul {
    list-style: none;
    padding: 0;
}

.no-margin {
    margin: 0;
}

.button {
    padding: 10px 30px;
    border-radius: 5px;
}

.button.secondary {
    background-color: var(--bg-secondary);
}

.highlight {
    color: var(--primary);
}

.flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.relative {
    position: relative;
}

section {
    margin: 0;
    padding: 0;
}

.fluid-margin-left {
    padding-left: 12%;
    padding-right: 30px;
}

.fluid-margin-right {
    padding-right: 12%;
    padding-left: 30px;
}

.no-padding-right {
    padding-right: 0px;
}

.no-padding-left {
    padding-left: 0px;
}

.r-padding {
    padding: 80px 0px;
}

ul.inline-block li {
    display: inline-block;
}

.no-padding {
    padding: 0px;
}

.bg-secondary {
    color: var(--bg-secondary);
}

.bg-whitesmoke {
    background-color: whitesmoke;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

.pb-0 {
    padding-bottom: 0px;
}

.mb-0 {
    margin-bottom: 0px;
}

.button.highlight {
    background-color: var(--primary);
    padding: 16px 30px;
    color: var(--secondary);
    font-weight: 700;
    font-family: "Inter", sans-serif;
    text-transform: uppercase;
}

.tradition img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

/* Nav */

.contact-bar {
    background-color: #EFF2FF;
    padding: 20px 0px;
}

.navbar-default {
    background-color: var(--bg-primary);
    border-radius: 0;
    box-shadow: none;
    border: none;
    padding: 10px 0px;
    margin: 0;
}

.brand {
    z-index: 1000;
    position: relative;
    width: 125px;
    margin-top: -35px;
}

.brand img {
    position: absolute;
    width: 125px;
}

.navbar-left {
    margin-left: 125px;
}

nav ul li {
    margin: 0;
    padding: 0;
}

.navbar-default .navbar-nav>li {
    padding: 0px 5px;
}

.navbar-default .navbar-nav>li>a {
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.navbar-default .navbar-nav>li>a:hover {
    color: white !important;
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover {
    background-color: transparent;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.navbar-default .navbar-nav>.active>a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    width: 25px;
    background-color: var(--primary);
    border: none;
}


nav .button.secondary {
    margin-top: 1px;
    vertical-align: middle;
    padding: 14px 20px !important;
    font-size: .9rem !important;
}

nav .button.secondary:hover {
    background-color: var(--bg-secondary) !important;
    color: white !important;
}

.contact-bar ul li {
    margin-left: 30px;
    display: inline-block;
}

.contact-bar ul li a {
    color: var(--secondary)
}

.contact-bar .icon {
    background-color: var(--primary);
    border-radius: 100px;
    margin-right: 10px;
    width: 30px;
    height: 30px;
    transform: translateY(-1px);
    vertical-align: middle;
    display: inline-block;
    text-align: center;
}

.contact-bar .icon i {
    display: absolute;
    left: 0;
    bottom: 0;
    margin-top: 8px;
    color: var(--secondary)
}

/* Header */

.header .left-side {
    height: 650px;
    background-color: var(--bg-secondary);
    width: 45%;
}

.header .right-side {
    overflow: hidden;
    position: relative;
    height: 650px;
    background-color: var(--bg-primary);
    width: 55%;
}

.header .content {
    z-index: 999;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.header.secondary {
    position: relative;
    top: unset;
    background-color: var(--bg-secondary);
    height: 250px;
}

.header.secondary h1 {
    font-size: 5rem;
    color: white;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 10px;
    text-decoration-color: var(--primary);
    font-weight: 700;
}

.header h2.h1-style {
    font-size: 5rem;
    color: white;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 10px;
    text-decoration-color: var(--primary);
    font-weight: 700;
    margin-bottom: 60px;
}

.header h1 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: -20px;
}

.owl-carousel {
    height: 650px;
}

.owl-carousel .item {
    width: 100%;
    height: 650px;
}

.owl-carousel .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.owl-carousel .item::before {
    position: absolute;
    width: 100%;
    content: "";
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.header .content ul {
    margin: 0;
}

.header .content ul li {
    display: inline-block;
}

.header .content .button.highlight {
    background-color: var(--primary);
    padding: 20px 50px;
    color: var(--secondary);
    font-weight: 700;
    font-family: "Inter", sans-serif;
    text-transform: uppercase;
    margin-right: 20px;
}

.header .content a {
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1rem;
    font-family: "Inter", sans-serif;
}

/* Blue Box */

.blue-box {
    padding: 20px;
    border-radius: 5px;
    background-color: var(--bg-primary);
    text-align: center;
    margin-top: 18px;
    margin-bottom: 18px;
}

.blue-box h3 {
    color: white;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
}

.blue-box h4 {
    color: white;
    font-family: "Inter", sans-serif;
    text-transform: uppercase;
    font-size: .8rem;
}

.blue-box hr {
    border-bottom: 2px solid var(--bg-secondary);
    border-color: var(--bg-secondary);
}

.blue-box img {
    width: 30px;
}

/* Hours */

.hours ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
}

.hours img {
    height: 600px;
    width: 100%;
    object-fit: cover;
}

.hours .target {
    height: 100%;
    position: absolute;
    right: 0;
}

/* Footer */

footer {
    padding-top: 60px;
    background-color: var(--bg-primary);
    padding-bottom: 0px;
}

footer img {
    width: 100px;
}

footer p {
    color: white;
}

footer h3 {
    margin-top: 0px;
    color: white;
    position: relative;
    padding-bottom: 5px;
    font-family: "Roboto", sans-serif;
    margin-bottom: 30px;
}

footer h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 25px;
    background-color: var(--primary);
    border: none;
}

footer ul {
    margin-bottom: 20px;
}

footer ul li {
    color: white;
    margin-top: 10px;
    font-size: 1rem;
}

footer ul li a {
    color: white;
    font-size: 1rem;
}

footer a:hover,
footer a:active,
footer a:active {
    color: unset;
}


.footer-copyright {
    margin-top: 30px;
    background-color: var(--bg-secondary);
}

.footer-copyright p {
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 10px 0px;
}

.lb-outerContainer {
    width: auto !important;
}

.lightbox .lb-image {
    display: block;
    height: auto !important;
    width: 100% !important;
    max-width: inherit;
    max-height: none;
    border-radius: 3px;
    border: 4px solid #fff;
}

/* About */

.about {
    height: 500px;
    background: url('../img/restaurant.JPG') no-repeat center center;
    background-size: cover;
    width: 100%;
}

.about-text .content p {
    margin-top: 0px;
}

.about-text .content {
    padding-left: 20px;
}

.who p {
    margin-top: 0px;
}

.blue {
    color: var(--bg-primary)
}

/* Contact */

.contact-box {
    border: 2px solid #efefef;
    padding: 20px;
    border-radius: 5px;
}

.contact-box .icon {
    width: 50px;
    height: 50px;
    border: 2px solid #efefef;
    border-radius: 5px;
}

.contact-box .icon i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.contact-box h3 {
    margin-bottom: 0px;
}

.contact-box p {
    margin-top: 0px;
    margin-bottom: 20px;
}

.contact-box a {
    color: var(--bg-secondary);
    font-size: 1rem;
    text-decoration: underline !important;
    text-decoration-thickness: 3px;
    text-decoration-color: var(--bg-primary);
}

@media (max-width:991px) {

    .no-padding-left {
        padding-left: 15px;
    }

    .header.secondary h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .about-text .content {
        padding-left: 0px;
    }

    .contact-box:nth-of-type(1) {
        margin-top: 20px;
    }

    .tradition .row.flex {
        display: block;
    }

    .tradition {
        text-align: center;
    }

    .fluid-margin-left {
        padding-left: 15px;
        padding-right: 15px;
    }

    .no-padding-right {
        padding-right: 15px;
    }

    .blue-box {
        margin-top: 70px;
        margin-bottom: 60px;
    }

    .hours .target {
        text-align: center;
        position: relative;
        margin-top: 60px;
    }

    .fluid-margin-right {
        padding-left: 15px;
        padding-right: 15px;
    }

    footer {
        text-align: center;
    }

    footer h3 {
        margin-top: 50px;
    }

    .footer-copyright {
        text-align: center;
        padding: 12px 0px;
    }

    .footer-copyright .text-right {
        text-align: center;
    }

    .footer-copyright p {
        padding: 1px 0px;
    }

    footer h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width:768px) {

    h2 {
        font-size: 2rem;
    }
    .header h2.h1-style {
        font-size: 3rem;
    }

    .header.secondary h1 {
        font-size: 3rem;
    }

    .navbar-default .navbar-collapse,
    .navbar-default .navbar-form {
        text-align: center;
        border: none;
        box-shadow: none;
        border-radius: none;
    }

    .navbar-left {
        margin-left: unset;
    }

    .navbar-default .navbar-nav>li>a {
        margin-bottom: 10px;
    }

    .navbar-default .navbar-toggle:focus,
    .navbar-default .navbar-toggle:hover {
        background-color: transparent;
    }

    .navbar-default .navbar-toggle {
        border: none;
    }

    .navbar-default .navbar-toggle .icon-bar {
        color: var(--primary);
        background-color: var(--primary);
        border-color: var(--primary);
    }

    .header h1 {
        font-size: 1.2rem;
    }
}

@media (max-width:400px) {
    .header h2.h1-style {
        font-size: 2rem;
        line-height: 1.5;
    }

    .contact-bar ul li a {
        font-size: .7rem;
    }
}