@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@font-face {
    font-family: 'Dream-Avenue';
    src: url('../fonts/Dream-Avenue.ttf');
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #000;
    --white-color: #fff;
    --title-color: #efbf04;
    --text-secondary-color: #9f9f9f;
    --theme-color: #5f6b3c;
    --golden-color: #E3C48E;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: 'Dream-Avenue';
    background-color: var(--bg-color);
    background-image: url(../images/pattern-4.png);
    background-position: top center;
    background-repeat: repeat;
    background-size: auto;
}

.hero-section {
    height: 100svh;
    position: relative;
    z-index: 0;
}

.hero-section-slider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.hero-section-slider .carousel-item img {
    height: 100svh;
    object-fit: cover;
}

.hero-section-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.55);
}

.hero-section-content img {
    width: 600px;
}

.hero-section-content p {
    margin-bottom: 0;
    color: var(--white-color);
    text-align: center;
    font-size: 26px;
    line-height: 26px;
    margin-top: 25px;
    letter-spacing: 0.5px;
}

.hero-navigate-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-navigate-button a {
    text-decoration: none;
    display: inline-flex;
    animation: bounce 1600ms infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.hero-navigate-button a img {
    width: 40px;
    flex-shrink: 0;
}

@keyframes bounce {
    50% {
        transform: translateY(-15px);
    }
}

.menu-section {
    padding: 100px 0;
}

.section-main-title h1 {
    text-align: center;
    font-size: 54px;
    line-height: 54px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0;
    color: var(--golden-color);
    font-weight: bold;
}

.section-main-title {
    text-align: center;
}

.section-main-title img {
    width: 100px;
    margin-top: 10px;
}

.categories-options .nav-tabs {
    border: 0;
    flex-wrap: nowrap;
    overflow: hidden;
    overflow-x: auto;
    gap: 12px;
    height: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.categories-options {
    position: sticky;
    top: 0;
    background-color: var(--bg-color);
    z-index: 9;
    padding-top: 20px;
}

.categories-options .nav-tabs .nav-item {
    flex: 0 0 auto;
}

.categories-options .nav-tabs .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    text-transform: capitalize;
    color: var(--text-secondary-color);
    border: 1px solid var(--text-secondary-color);
    border-radius: 13px;
    white-space: nowrap;
    flex-wrap: nowrap;
    padding: 8px 20px;
    margin: 0;
    min-width: max-content;
    flex-shrink: 0;
}

.categories-options .nav-tabs .nav-link img {
    width: 40px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
    opacity: 50%;
}

.categories-block {
    margin-top: 50px;
}

.categories-options .nav-tabs .nav-link.active {
    background-color: var(--theme-color);
    color: var(--white-color);
    border-color: var(--theme-color);
}

.categories-options .nav-tabs .nav-link.active img {
    opacity: 1;
}

.categories-detail-section {
    margin-top: 50px;
}

.categories-detail-section .container {
    padding: 0;
}

.categories-detail-section-title h2 {
    text-align: center;
    font-size: 40px;
    line-height: 40px;
    color: var(--white-color);
    text-transform: capitalize;
    margin-bottom: 0;
    font-weight: bold;
}

.categories-detail-section-title img {
    width: 100px;
    margin-top: 10px;
}

.categories-detail-section-title {
    text-align: center;
}

.menu-item-row {
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-bottom: 40px;
    /* gap: 60px; */
    gap: 30px;
}

.categories-detail-info .menu-item-row:last-child {
    margin-bottom: 0;
}

.menu-item-name-info h6 {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    color: var(--white-color);
    font-size: 20px;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.menu-item-name-info h6 span {
    text-transform: capitalize;
    font-size: 13px;
    line-height: 13px;
    color: var(--golden-color);
}

.btn-dish-photo {
    text-decoration: none;
    display: flex;
    flex-shrink: 0;
}

.btn-dish-photo img {
    width: 20px;
    flex-shrink: 0;
}

.menu-item-name-info p {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    color: var(--white-color);
    opacity: 60%;
    font-size: 16px;
    line-height: 20px;
    text-transform: capitalize;
    margin-bottom: 0;
    margin-top: 5px;
}

.menu-item-name-info p:nth-child(2) {
    margin-top: 10px;
}

.menu-item-price {
    width: 70px;
    text-align: right;
    flex-shrink: 0;
}

.menu-item-price h5 {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    color: var(--white-color);
    font-size: 22px;
    line-height: 22px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.menu-item-price h6 {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    color: var(--white-color);
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 0;
}

.categories-detail-info.soup-info .menu-item-price {
    display: grid;
    align-items: center;
    justify-content: end;
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
    min-width: 180px;
    max-width: 180px;
}

.categories-detail-info.soup-info .menu-item-price h5 {
    text-align: center;
}

.menu-item-row.price-row {
    justify-content: end;
    margin-bottom: 25px;
}

.categories-detail-info {
    margin-top: 50px;
}

.sub-category-tabs {
    margin-top: 40px;
}

.starter-sub-category .nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px 0;
}

.starter-sub-category .nav-tabs .nav-item {
    margin: 0 40px;
}

.starter-sub-category .nav-tabs .nav-link {
    margin: 0;
    margin: 0 auto;
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    text-transform: capitalize;
    color: var(--text-secondary-color);
    padding: 0 0 10px;
    border: 0;
    box-shadow: none;
    position: relative;
}

.starter-sub-category .nav-tabs .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 5px;
    border-top: 1px solid var(--golden-color);
    border-bottom: 1px solid var(--golden-color);
    transform: scaleX(0);
    transition: all 300ms ease;
}

.starter-sub-category .nav-tabs .nav-link.active {
    background-color: transparent;
    color: var(--white-color);
}

.starter-sub-category .nav-tabs .nav-link.active::before {
    transform: scaleX(1);
}

.starter-sub-category .nav-tabs .nav-link::after {
    content: '';
    position: absolute;
    left: 100%;
    margin-left: 36px;
    top: 50%;
    margin-top: 0;
    height: 8px;
    width: 8px;
    border: 1px solid var(--golden-color);
    transform: rotate(45deg) translateY(-50%);
}

.starter-sub-category .nav-tabs .nav-item:last-child .nav-link::after {
    display: none;
}

.starter-sub-category .nav-tabs .nav-item:last-child {
    margin-right: 0;
}

.starter-sub-category .nav-tabs .nav-item:first-child {
    margin-left: 0;
}

.categories-options .nav-tabs {
    padding-bottom: 10px;
}

.footer-section {
    border-top: 1px solid var(--theme-color);
}

.footer-top {
    padding: 40px 0 30px;
}

.footer-row {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 60px;
}

.footer-left img {
    width: 300px;
}

.footer-left p {
    margin-bottom: 0;
    color: var(--white-color);
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    margin-top: 20px;
}

.footer-right a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color);
    width: 50px;
    height: 50px;
    border-radius: 1006px;
}

.footer-right a img {
    width: 30px;
}

.footer-bottom p {
    margin-bottom: 0;
    color: var(--white-color);
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    margin-top: 20px;
    text-align: center;
    opacity: 60%;
}

.footer-bottom {
    padding-bottom: 20px;
    border-top: 1px solid #212121;
}

.footer-right {
    flex-shrink: 0;
}

.menu-item-name-info {
    display: flex;
    align-items: start;
    gap: 5px 15px;
    /* width: 100%; */
    flex: 1;
    min-width: 0;
}

.btn-dish-photo {
    width: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.btn-dish-photo img {
    width: 20px;
    display: block;
}

.menu-item-name-info-top {
    width: 100%;
}

.categories-detail-info.soup-info .menu-item-row:last-child {
    margin-bottom: 0;
}

.fade-text {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease;
}

.fade-text.show {
    opacity: 1;
    transform: translateY(0);
}

.special-text {
    background-color: #fff;
    color: #000 !important;
    padding: 3px 6PX;
    text-align: center;
    border-radius: 6px;
    display: inline-block;
}

.special-text-block {
    text-align: center;
}

@media(min-width:992px) {
    .categories-options .nav-tabs::-webkit-scrollbar {
        height: 3px;
    }
    .categories-options .nav-tabs::-webkit-scrollbar-track {
        background: var(--white-color);
        border-radius: 10px;
    }
    .categories-options .nav-tabs::-webkit-scrollbar-thumb {
        background: var(--theme-color);
        border-radius: 10px;
    }
}

@media(max-width:767.98px) {
    .hero-section-content img {
        width: 450px;
    }
}

@media(max-width:575.98px) {
    .hero-section-content {
        background-color: rgba(0, 0, 0, 0.65);
    }
    .hero-section-content img {
        width: 300px;
    }
    .hero-navigate-button {
        position: absolute;
        bottom: 10px;
    }
    .hero-navigate-button a img {
        width: 30px;
    }
    @keyframes bounce {
        50% {
            transform: translateY(-10px);
        }
    }
    .hero-section-content p {
        font-size: 24px;
        line-height: 26px;
        margin-top: 15px;
        padding: 0 35px;
    }
    .categories-options {
        padding-top: 12px;
    }
    .categories-options .nav-tabs {
        padding-bottom: 12px;
    }
    .categories-options .nav-tabs {
        padding-left: 12px;
        padding-right: 12px;
    }
    .categories-options .nav-tabs .nav-link {
        gap: 8px;
        font-size: 16px;
        line-height: 16px;
        border-radius: 10px;
        padding: 5px 10px;
    }
    .categories-options .nav-tabs .nav-link img {
        width: 30px;
    }
    .menu-section {
        padding: 60px 0;
    }
    .section-main-title h1 {
        font-size: 44px;
        line-height: 44px;
    }
    .section-main-title img {
        width: 80px;
        margin-top: 5px;
    }
    .categories-block {
        margin-top: 30px;
    }
    .categories-detail-info {
        margin-top: 40px;
    }
    .menu-item-name-info h6 {
        font-size: 14px;
        line-height: 16px;
    }
    .menu-item-name-info p {
        font-size: 12px;
        line-height: 14px;
        margin-top: 5px;
    }
    .menu-item-name-info p:nth-child(2) {
        margin-top: 7px;
    }
    .menu-item-price h5 {
        font-size: 14px;
        line-height: 14px;
    }
    .menu-item-row {
        margin-bottom: 25px;
    }
    .categories-detail-section .container {
        padding: 0 15px;
    }
    .menu-item-name-info-top {
        gap: 5px 8px;
    }
    .btn-dish-photo img {
        width: 16px;
    }
    .starter-sub-category .nav-tabs .nav-link {
        font-size: 16px;
        line-height: 16px;
        padding: 8px 0;
        border-width: 3px;
    }
    .sub-category-tabs {
        margin-top: 30px;
    }
    .footer-left img {
        width: 180px;
    }
    .footer-left p {
        font-size: 14px;
        line-height: 20px;
        margin-top: 15px;
    }
    .footer-right a {
        width: 40px;
        height: 40px;
    }
    .footer-right a img {
        width: 22px;
    }
    .footer-bottom p {
        font-size: 13px;
        line-height: 13px;
        margin-top: 15px;
    }
    .footer-bottom {
        padding-bottom: 15px;
    }
    .categories-detail-info {
        margin-top: 30px;
    }
    .categories-detail-section {
        margin-top: 25px;
    }
    .footer-section .container {
        padding: 0 20px;
    }
    .starter-sub-category .nav-tabs .nav-item {
        margin: 0 25px;
    }
    .starter-sub-category .nav-tabs .nav-link::after {
        margin-left: 20px;
    }
    .starter-sub-category .nav-tabs {
        padding: 20px 0;
    }
    .menu-item-name-info-top {
        width: 100%;
    }
    .menu-item-price h6 {
        font-size: 12px;
        line-height: 12px;
    }
    .categories-detail-info.soup-info .menu-item-price {
        gap: 10px;
        min-width: 120px;
        max-width: 120px;
    }
    .categories-detail-info.soup-info .menu-item-row {
        margin-bottom: 25px;
        gap: 30px;
    }
    .menu-item-name-info h6 span {
        font-size: 11px;
        line-height: 11px;
    }
    .menu-item-name-info {
        width: 65%;
    }
}