/* General Styles */
a, a:hover {
    text-decoration: none !important;
}

ul {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    background: rgb(0, 0, 0);
    border: 3px;
    border-top: 3px solid rgba(0,0,0,.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 28px;
    font-weight: 300;
    background-color: #121618;
    margin: 0;
    padding: 0;
}

/* Navbar Styles */
.navbar {
    border: none;
    border-radius: 0;
    margin: 0;
    position: relative;
    padding: 0 !important;
}

.navbar-brand {
    width: 80px;
    height:80px;
}

/* Header Section */
.header-section {
    transition: all .3s ease-in-out;
    background-color: #222227;
    width: 100%;
    height: 120px;
    z-index: 999;
    position: fixed;
    left: 0;
    top: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.menu-wrap {
    position: relative;
}

ul.nav>li {
    position: relative;
}

ul.nav>li>a {
    color: #ddd;
    font-family: 'Work Sans', sans-serif;
    display: inline-block;
    vertical-align: middle;
    padding: 0 20px;
    letter-spacing: 0;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 80px;
    z-index: 1;
    transition: 0.5s;
}

.header-btn .menu-btn { 
    background-color: #ed8a00; 
    font-family: 'Work Sans', sans-serif; 
    font-size: 12px; 
    text-transform: uppercase; 
    color: #fff; 
    padding: 0 30px; 
    height: 45px; 
    line-height: 45px; 
    display: block; 
    margin: 0; 
}

.header-btn .menu-btn:hover {
    opacity: .8;
}

ul.nav>li>a:hover {
    color: #ed8a00;
}

/* Home Section */
.home-section {
    background: url(../images/home_bg.jpg) center no-repeat;
    background-size: cover;
    height: 650px;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.home-section h1 {
    color: rgb(255, 255, 255);
    white-space: nowrap;
    letter-spacing: 12px;
    font-weight: 400;
    font-size: 50px;
    margin: 0;
}

.home-section h2 {
    color: rgb(255, 255, 255);
    white-space: nowrap;
    letter-spacing: 12px;
    font-weight: 400;
    font-size: 30px;
    margin: 0;
}

.home-section p {
    color: rgb(255, 255, 255);
    white-space: nowrap;
    letter-spacing: 2px;
    font-weight: 300;
    font-size: 17px;
    margin: 0;
}

.navbar img {
    width: 50px;
    height: 60px;
}

/* Button Styles */
.bttn_style_1, .bttn_style_2 {
    font-family: 'Work Sans', sans-serif;
    letter-spacing: 3px;
    line-height: 45px;
    display: inline-block;
    padding: 0 25px;
    border-radius: 0;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    text-align: center;
}

.bttn_style_1 {
    background-color: transparent;
    color: white !important;
    border: 2px solid white;
    opacity: 1;
}

.bttn_style_1:hover {
    opacity: 0.6;
}

.bttn_style_2 {
    background-color: #ed8a00;
    color: rgb(18, 22, 24);
    border: 2px solid #ed8a00;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bttn_style_2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #222227;
    transform-origin: right center;
    transform: scale(0, 1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.bttn_style_2:hover:before {
    transform-origin: left center;
    transform: scale(1, 1);
}

.bttn_style_2:hover {
    color: #ed8a00;
    border-color: #222227;
}

.order_buttons {
    display: flex;
}




/* Responsiveness for smaller screens */


@media (max-width: 1024px) {
    .header-section {
        height: 60px;
        flex-direction: column;
        padding: 0 5px;
    }

    .home-section {
        height: 250px;
    }

    .order_buttons{
        width: 20px;
    }

    .home-section h1, .home-section h2, .home-section p {
        font-size: 12px;
    }

    ul.nav>li>a {
        padding: 0 3px;
        font-size: 7px;
        line-height: 40px;
    }

    .header-btn .menu-btn {
        padding: 0 5px;
        height: 25px;
        line-height: 25px;
    }

    .menu-image .image-preview {
        width: 100px;
        height: 100px;
    }

    /* Button Styles */
.bttn_style_1, .bttn_style_2 {
    font-family: 'Work Sans', sans-serif;
    letter-spacing: 2px;
    line-height: 25px;
    display: inline-block;
    padding: 0 25px;
    border-radius: 0;
    font-size: 8px;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    text-align: center;
}

.bttn_style_1 {
    background-color: transparent;
    color: white !important;
    border: 2px solid white;
    opacity: 1;
}

.bttn_style_1:hover {
    opacity: 0.6;
}

.bttn_style_2 {
    background-color: #ed8a00;
    color: rgb(18, 22, 24);
    border: 2px solid #ed8a00;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bttn_style_2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #222227;
    transform-origin: right center;
    transform: scale(0, 1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.bttn_style_2:hover:before {
    transform-origin: left center;
    transform: scale(1, 1);
}

.bttn_style_2:hover {
    color: #ed8a00;
    border-color: #222227;
}

.order_buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    width: 50%;
}

}

@media (max-width: 576px) {

    .navbar img{
        width: 20px;
        height: 40px;
    }

    .header-section {
        height: 60px;
        flex-direction: column;
        padding: 0 5px;
    }

    .home-section {
        height: 250px;
    }

    .order_buttons{
        width: 20px;
    }

    .home-section h1, .home-section h2, .home-section p {
        font-size: 12px;
    }

    ul.nav>li>a {
        padding: 0 3px;
        font-size: 7px;
        line-height: 40px;
    }

    .header-btn .menu-btn {
        padding: 0 5px;
        height: 25px;
        line-height: 25px;
    }

    .menu-image .image-preview {
        width: 100px;
        height: 100px;
    }

    /* Button Styles */
.bttn_style_1, .bttn_style_2, .bttn_style_3 {
    font-family: 'Work Sans', sans-serif;
    letter-spacing: 2px;
    line-height: 25px;
    display: inline-block;
    padding: 0 25px;
    border-radius: 0;
    width: 150px;
    height: 50px;
    font-size: 6px;
    text-transform: uppercase;
    font-weight: 300;
    position: relative;
    text-align: center;
}

.bttn_style_1 {
    background-color: transparent;
    color: white !important;
    border: 2px solid white;
    opacity: 1;
    margin-right: 10px; 
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
}

.bttn_style_1:hover {
    opacity: 0.6;
}

.bttn_style_2 {
    background-color: #ed8a00;
    color: rgb(18, 22, 24);
    border: 2px solid #ed8a00;
    overflow: hidden;
    z-index: 1;
    width:150px;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-right: 10px; 
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
}

.bttn_style_3 {
    background-color: #de6a12;
    color: rgb(18, 22, 24);
    border: 2px solid #ed8a00;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    margin-right: 10px; 
    display: flex;
    justify-content: center;
    align-items: center;
    /* font-size: 1vw; */
    letter-spacing: 0px;
}

.bttn_style_2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #222227;
    transform-origin: right center;
    transform: scale(0, 1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.bttn_style_2:hover:before {
    transform-origin: left center;
    transform: scale(1, 1);
}

.bttn_style_3:hover:before {
    transform-origin: left center;
    transform: scale(1, 1);
}

.bttn_style_2:hover {
    color: #ed8a00;
    border-color: #222227;
}

.bttn_style_3:hover {
    color: #ed8a00;
    border-color: #222227;
}

.header-btn {
    margin:10px;
    padding: 10px;
    /* position:relative; */
}

.order_buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    width: 50%;
}

}