* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    overflow-y: hidden;
}

/* Additional CSS */
.welcome-paragraph {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9); /* Light gray color */
}

.icon-container {
    display: flex;
    justify-content: center;
    gap: 15px; /* Space between icons */
    margin-top: 20px;
}

.fab,
.fas {
    display: inline-block;
    padding: 5px 10px;
    background-color: #ce9838;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.icon-link:hover {
    transform: scale(1.1);
    color: #ddd; /* Change color on hover */
}

@media (max-width: 768px) {
    .welcome-paragraph {
        font-size: 1rem;
    }

    .fab {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .welcome-paragraph {
        font-size: 16px;
    }

    .fab {
        font-size: 1.2rem;
    }
}

#viewport {
    overflow: hidden;
}

.main-banner {
    position: relative;
    background-image: url("/frontend/images/Restaurant.jpg"); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    z-index: 1;
}

.main-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.527); /* Dark overlay */
    z-index: -1;
}

.sec-wp {
    width: 100%;
    position: relative;
    z-index: 2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-text {
    text-align: center;
}

.banner-logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.h1-title {
    font-size: 3rem;
    margin-bottom: 20px;
    font-size: 70px;
    text-transform: capitalize;
    font-weight: 900;
}

.banner-btn .sec-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ce9838;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.banner-btn .sec-btn:hover {
    background-color: rgba(255, 255, 255, 1);
    color: #ce9838;
}

@media (max-width: 768px) {
    .banner-logo {
        width: 150px; /* Adjust as needed */
    }

    .h1-title {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .banner-logo {
        width: 120px; /* Adjust as needed */
    }

    .h1-title {
        font-size: 30px;
    }

    .banner-btn .sec-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* Steam animation CSS */
.steam-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    pointer-events: none; /* Allow clicks to pass through */
    overflow: hidden;
    z-index: 0; /* Ensure it is behind other elements */
}

.steam {
    position: absolute;
    bottom: 0;
    width: 10px;
    height: 100px;
    background: rgba(255, 255, 255, 0.582);
    opacity: 0;
    border-radius: 50%;
    animation: steam-rise 4s infinite ease-in-out;
}

.steam:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
    animation-duration: 5s;
}

.steam:nth-child(2) {
    left: 40%;
    animation-delay: 2s;
    animation-duration: 4.5s;
}

.steam:nth-child(3) {
    left: 60%;
    animation-delay: 1s;
    animation-duration: 4.8s;
}

.steam:nth-child(4) {
    left: 80%;
    animation-delay: 3s;
    animation-duration: 5.2s;
}

.steam:nth-child(5) {
    left: 50%;
    animation-delay: 4s;
    animation-duration: 4.3s;
}

@keyframes steam-rise {
    0% {
        transform: translateY(0) scaleX(0.5);
        opacity: 0.2;
    }
    25% {
        opacity: 0.4;
    }
    50% {
        transform: translateY(-150px) scaleX(1);
        opacity: 0.3;
    }
    75% {
        opacity: 0.2;
    }
    100% {
        transform: translateY(-300px) scaleX(1.5);
        opacity: 0;
    }
}

.site-header.sticky_head {
    background: rgb(255 255 255 / 80%);
    padding: 20px 0;
    border-color: #f2f2f2;
    backdrop-filter: blur(20px);
}
.site-header.sticky_head,
.site-header {
    background: rgb(255 255 255 / 90%);
}
.site-header {
    position: fixed;
    padding: 30px 0;
    display: flex;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: 0.5s;
    border-bottom: 1px solid transparent;
}

.site-header.sticky_head {
    background: rgb(255 255 255 / 80%);
    padding: 20px 0;
    border-color: #f2f2f2;
    backdrop-filter: blur(20px);
}

.main-navigation {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: flex-end;
    align-items: center;
}

.main-navigation .menu li {
    display: inline-block;
    position: relative;
    margin: 0 6px;
}

.main-navigation .menu li:first-child {
    margin-left: 0;
}

.main-navigation .menu li:last-child {
    margin-right: 0;
}

.main-navigation .menu li:hover > ul,
.main-navigation .menu li.focus > ul {
    opacity: 1;
    margin-top: 6px;
    visibility: visible;
}

a {
    background-color: transparent;
    text-decoration: none !important;
    outline: none !important;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation .menu ul a {
    width: 200px;
}

.main-navigation .menu li:hover > ul,
.main-navigation .menu li.focus > ul {
    left: auto;
}

.main-navigation .menu li a {
    display: flex;
    transition: 0.3s;
    position: relative;
    justify-content: center;
    align-items: center;
    color: #000;
    text-transform: capitalize;
    font-weight: 500;
    padding: 5px 18px;
    border-radius: 30px;
}

.main-navigation .menu li a:hover,
.main-navigation .menu li .active-menu,
.main-navigation .menu .sub-menu li .active-sub-menu {
    color: #ce9838;
    background: #f3f3f5;
    box-shadow: inset 8px 8px 12px #e2e2e2, inset -8px -8px 12px #ffffff;
}

.header-right {
    margin-left: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.header-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    border-radius: 10px;
    position: relative;
    margin-left: 20px;
    transition: 0.3s;
    box-shadow: inset 6px 6px 7px #dadada, inset -6px -6px 7px #ffffff;
    align-items: center;
}

.header-btn:hover {
    background: linear-gradient(145deg, #dcdcdc, #ffffff);
    box-shadow: 20px 20px 60px #cfcfd0, -20px -20px 60px #ffffff;
}

.form-input::placeholder {
    color: rgba(70 69 71 / 0.7);
}

.fa-star {
    color: #ce9838;
}

* {
    -webkit-tap-highlight-color: transparent;
}

.uil {
    color: #ce9838;
}

@media screen and (min-width: 992px) {
    .menu-toggle {
        display: none;
    }
}

@media (min-width: 1500px) {
    .container {
        max-width: 1368px;
    }
}

@media (min-width: 2100px) {
    .container {
        max-width: 1400px;
    }
    p,
    body,
    button,
    input {
        font-size: 18px;
        line-height: 32px;
    }
}

@media (max-width: 1399px) {
    .header-right {
        margin-left: 20px;
    }
    .main-navigation .menu li {
        margin: 0 3px;
    }
}

@media (max-width: 1199px) {
    .header-btn {
        margin-left: 10px;
    }
    .header-right {
        margin-left: 10px;
    }
    .main-navigation .menu li {
        margin: 0;
    }
    .main-navigation .menu li a {
        padding: 4px 15px;
        font-size: 15px;
    }
}

@media (max-width: 991px) {
    .section {
        padding-top: 85px;
        padding-bottom: 85px;
    }
    .for-des {
        display: none !important;
    }
    .for-mob {
        display: block !important;
    }
    .site-header .container {
        max-width: 100%;
        padding: 0;
        height: 100%;
    }
    .site-header .container .row {
        margin: 0;
        height: 100%;
    }
    .site-header .container .row .col-lg-2 {
        width: auto;
        padding: 0;
        height: 100%;
        position: absolute;
        top: 0;
        left: 30px;
        z-index: 2;
        display: flex;
        align-items: center;
    }
    .menu-toggle {
        position: absolute;
        top: 50%;
        right: 30px;
        border: none;
        outline: none !important;
        background: transparent;
        width: 40px;
        height: 40px;
        transform: translate(0, -50%);
        z-index: 100;
        box-shadow: inset 6px 6px 7px #dadada, -6px -6px 10px #ffffff;
        border-radius: 10px;
        padding: 0 8px;
    }
    .menu-toggle span {
        display: block;
        width: 100%;
        height: 4px;
        background: #ce9838;
        margin-bottom: 5px;
        transition: 0.3s;
        border-radius: 5px;
        position: relative;
    }

    .menu-toggle span:last-child {
        margin: 0;
    }
    .toggled .menu-toggle span:nth-child(1) {
        transform: rotate(45deg);
        top: 5px;
    }
    .toggled .menu-toggle span:nth-child(2) {
        transform: rotate(-45deg);
        top: -4px;
    }
    .toggled .menu-toggle span:nth-child(3) {
        opacity: 0;
        height: 0;
    }
    .toggled .header-menu {
        transform: translateY(0);
    }
    .header-menu {
        height: 100vh;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        padding-top: max(9vh, 30px);
        padding-left: max(6vh, 30px);
        z-index: 99;
        transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
        overflow-y: auto;
        transform: translateY(-100%);
        background-image: url(images/blog-pattern-bg.png);
        background-position: center;
        background-color: #f3f3f5;
    }
    .main-navigation .menu li {
        display: block;
        float: none;
        margin: 0;
        margin-bottom: max(20px, 4vh);
    }
    .main-navigation .menu li a {
        display: inline-block;
        font-size: max(16px, 2vh);
    }
    .main-navigation .menu .sub-menu {
        max-width: 220px;
        opacity: 1;
        visibility: visible;
        display: none;
    }
    .main-navigation .menu .sub-menu li {
        margin-bottom: 5px;
    }
    .main-navigation .menu li:last-child {
        margin: 0;
    }
    .main-navigation .menu .sub-menu li a {
        color: #ce9838;
    }

    .header-btn {
        margin: 0;
        margin-right: 70px;
    }
    .site-header {
        padding: 20px 0;
    }
    .site-header.sticky_head,
    .site-header {
        background: rgb(255 255 255 / 90%);
    }
    body {
        height: auto !important;
        overflow-x: hidden;
    }
}

@media (max-width: 575px) {
    .container,
    .container-fluid {
        padding: 0 30px;
    }
}

@media (max-width: 400px) {
    .container,
    .container-fluid {
        padding: 0 15px;
    }
    .header-btn {
        margin-right: 56px;
    }
    .menu-toggle {
        right: 15px;
    }
    .site-header .container .row .col-lg-2 {
        left: 15px;
    }
}

.form-input::placeholder {
    color: rgba(70 69 71 / 0.7);
}

.form-input {
    width: 100%;
    height: 50px;
    outline: none !important;
    padding: 10px 15px;
    color: #0d0d25;
    -webkit-appearance: none;
    border-radius: 10px;
    border: none;
    background: #f8f8f8;
    box-shadow: inset 6px 6px 8px #dadada, inset -6px -6px 8px #ffffff;
}

@media (max-width: 1199px) {
    .header-search-form .form-input {
        width: 100%;
    }
}
@media (max-width: 991px) {
    .section {
        padding-top: 85px;
        padding-bottom: 85px;
    }
}
.section {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}
@media (max-width: 400px) {
    .section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
.bottom-cart {
    background: #ce9838;
    border-radius: 30px;
}
.bottom-cart .btn {
    background-color: #fff;
    color: #ce9838;
}
/* **************** */
.sec-sub-title {
    text-transform: uppercase;
    display: inline-block;
    background: #f3f3f5;
    padding: 3px 20px;
    border-radius: 60px;
    color: #ce9838;
    font-size: 14px;
}

.h2-title {
    font-size: 46px;
    line-height: 56px;
    margin-bottom: 15px;
    text-transform: capitalize;
    position: relative;
}

.repeat-img {
    background-size: contain;
    background-repeat: repeat;
}

.menu-tab-wp {
    margin-bottom: 80px;
}

.menu-tab ul {
    padding: 10px;
    display: inline-block;
    border-radius: 60px;
    background: linear-gradient(145deg, #ececec, #ffffff);
    box-shadow: 28px 28px 55px #d4d4d4, -28px -28px 55px #ffffff;
    position: relative;
    z-index: 2;
}

.menu-tab ul li,
.menu-tab ul .filter-active {
    display: inline-flex;
    text-transform: capitalize;
    font-size: 18px;
    line-height: normal;
    cursor: pointer;
    padding: 10px 26px;
    border-radius: 30px;
    transition: 0.3s;
    justify-content: center;
    align-items: center;
}

.filter-active {
    position: absolute;
    left: 0;
    top: 12px;
    min-height: 50px;
    z-index: -1;
}

.menu-tab ul li img {
    margin-right: 10px;
    position: relative;
    top: 1px;
}

.menu-tab ul .filter-active {
    color: #ffffff;
    background: linear-gradient(145deg, #ce9838, #ce9838);
}

.menu-list-row .bydefault_show .dish-box-wp {
    display: inline-block !important;
}
