@font-face {
    font-family: 'jost';
    src: url('../fonts/Jost-VariableFont_wght.ttf') format('woff2'),
        url('/fonts/MyFont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

* {
    font-family: 'jost', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #102B2A;
    color: #CED8D8;
    ;
    font-family: 'jost', sans-serif;
}

p {
    font-size: 18px;
    color: #CED8D8;

}

h1,
h2,
h3,
h4,
h5,
h6,
a,
label {
    color: #CED8D8 !important;
}

.navbar-custom {
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 99;
    transition: top 0.3s;
}

.navbar-hidden {
    top: -150px;
    /* Adjust depending on navbar height */
}

.navbar-nav .nav-link {
    color: #CED8D8;
    text-transform: uppercase;
    font-size: 14px;
    padding: 0.5rem 1rem;
    position: relative;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #BF953F;
}



.logo {
    height: 100px;
    max-height: 100px;

}

@media (max-width: 991.98px) {
    .navbar-nav {
        flex-direction: column;
    }

    .navbar-nav .nav-item {
        margin-bottom: 10px;
    }

    .book-btn {
        margin-top: 10px;
    }

    .logo {
        height: 60px;
    }
}


.coming-soon-container {
    align-items: center;
    justify-content: center;
    top: 50%;
    text-align: center;
    position: relative;
}

.coming-soon-text {
    font-family: "Pinyon Script", cursive;
    margin: 0;

}

.book-btn {
    border: 1px solid #BF953F;
    color: #CED8D8;
    padding: 6px 20px;
    background: transparent;
    text-transform: uppercase;
    border-radius: 0;
    font-family: 'jost', sans-serif;
    font-size: 16px;
    transition: 0.3s ease;
}

.book-btn:hover {
    background-color: #BF953F;
    color: black;
}

.book-btn.active {
    background-color: #BF953F !important;
    color: black !important;
}

.nav-item-logo {
    display: flex;
    align-items: center;
}



.hero-title {
    font-size: 7rem;
    font-weight: bold;
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-subtitle {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 11;
    font-size: 1.25rem;
}

.hero-images {
    justify-content: center;
    align-items: end;
    padding-top: 200px;
    /* gap: 1.5rem; */
}

.hero-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 0 9vmax 0 0;
}

.hero-img-rounded {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 9vmax 9vmax 0 0;
}

.hero-img-reverse {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 9vmax 0 0 0;
}


.vertical-icons {
    position: absolute;
    top: 35%;
    right: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 20;
}

.vertical-icons img {
    width: 40px;
    height: 40px;
    background: white;
    padding: 0.5rem;
    border-radius: 8px;
}


.chef-section {
    padding: 80px 0;
    position: relative;
}

.chef-image {
    position: relative;
    z-index: 1;
}

.soup-image {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 150px;
    border: 5px solid #0b2e2a;
    z-index: 2;
}

.heading-outline {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.1);
}

.chef-content h2 {
    font-size: 32px;
    font-weight: 400 !important;
    letter-spacing: 2px;
    line-height: 1.4;
    text-transform: uppercase !important;
}

.chef-content p {
    font-size: 18px;
    line-height: 2;
    font-weight: lighter;
}

.signature {
    margin-top: 40px;
}

.signature img {
    height: 60px;
}

.signature p {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    margin-top: 10px;
    color: #BF953F;
}

@media (max-width: 767px) {
    .soup-image {
        position: relative;
        transform: none;
        margin-top: 20px;
        right: 0;
    }

    .heading-outline {
        font-size: 40px;
        top: -20px;
        right: 10px;
    }
}

.awards-section {
    padding: 80px 0;
    display: flex;
    flex-wrap: wrap;
    background-color: #1F3634;
}

.awards-text {
    flex: 1;
    padding: 40px 60px;
    position: relative;
}

.awards-text::before {
    content: "AWARDS";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.05);
    /* font-weight: bold; */
    z-index: 0;
}

.awards-content {
    position: relative;
    z-index: 1;
    margin-top: 100px;
}

.awards-content h2 {
    font-size: 32px;
    letter-spacing: 3px;
    font-weight: 500;
    margin-bottom: 30px;
}

.awards-content p {
    font-size: 18px;
    line-height: 2;
    margin-bottom: 15px;
}

.awards-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.awards-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18vw 0 0 0;
}

.pinyon-script-regular {
    font-family: "Pinyon Script", cursive;
    font-weight: 400;
    font-style: normal;
}

.cursive-text {
    font-family: "Pinyon Script", cursive;
    font-size: 100px;
    color: #BF953F !important;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .awards-section {
        flex-direction: column;
    }

    .awards-text {
        padding: 40px 30px;
    }

    .awards-text::before {
        font-size: 70px;
        top: 10px;
    }

    .awards-image img {
        border-top-left-radius: 80px;
    }

    .cursive-text {
        font-size: 80px;
        right: 15px;
        bottom: 15px;
    }
}


.menu-card {
    height: 430px;
    transition: transform 0.3s ease;
}

.menu-card img {
    transition: transform 0.4s ease;
}

.menu-card:hover img {
    transform: scale(1.05);
}

.qodef-e:hover .qodef-e-content {
    clip-path: inset(0px);
}

.qodef-e-content {
    position: absolute;
    bottom: 17px;
    left: 17px;
    width: calc(100% - 34px);
    backdrop-filter: blur(10px);
    clip-path: inset(0px 100% 0px 0px);
    padding: 17px 25px;
    background: rgba(16, 43, 42, 0.7);
    transition: clip-path 0.72s cubic-bezier(0.44, 1.1, 0.53, 0.99);
}

.qodef-e-title {
    display: block;
    position: relative;
}

textarea,
input {
    color: #CED8D8 !important;
    border-radius: 0 !important;
    border-color: #BF953F !important;
}

.form-control {
    border-color: #BF953F !important;

}

.form-control:focus {
    box-shadow: none;
    border-color: #BF953F !important;

}

.border-start {
    border-color: #BF953F !important;
}

footer h6 {
    font-weight: 600;
    letter-spacing: 1px;
}

footer p,
footer a {
    font-size: 16px;
    color: #ccc;
}

footer .logo span {
    font-family: 'Georgia', serif;
    font-size: 18px;
    letter-spacing: 1px;
}

footer hr {
    margin: 2rem 0;
    opacity: 1 !important;
}

@media (max-width: 768px) {

    footer .border-md-start,
    footer .border-md-end {
        border: none !important;
    }

    .logo {
        order: 1;
    }
}

@keyframes scaleUp {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

[data-aos="scale-up"] {
    opacity: 0;
    transform: scale(0.8);
    transition: transform 0.6s ease, opacity 0.6s ease;
}

[data-aos="scale-up"].aos-animate {
    animation: scaleUp 0.8s forwards;
}

.button-seemore {
    position: relative;
    display: block;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    margin-top: 100px;
    height: 30px;
    width: 100%;
    max-width: 150px;
    line-height: 30px;
    font-family: 'Helvetica';
    overflow: hidden;
    font-size: 16px;
    color: #0047ba;
    text-transform: uppercase;
    cursor: pointer;
    background: #fff;
    border-left: 2px solid #0047ba;
}

.button-seemore span {
    position: absolute;
    transition: all 200ms ease-in-out;
    /* horizontal */
    /* horizontal - small */
}

.button-seemore span.line-1 {
    top: 0;
    left: 0;
    width: 158px;
    height: 2px;
    background: #0047ba;
    transform: translateX(-48px);
}

.button-seemore span.line-2 {
    bottom: 0;
    right: 0;
    width: 130px;
    height: 2px;
    background: #0047ba;
    transform: translateX(-25px);
}

.button-seemore span.line-3 {
    top: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: #0047ba;
    transform: translateX(20px);
}

.button-seemore span.line-4 {
    bottom: 0;
    right: 0;
    width: 100px;
    height: 2px;
    background: #0047ba;
    transform: translateX(95px);
}

.button-seemore span.line-5 {
    bottom: 0;
    right: 0;
    width: 2px;
    height: 50px;
    background: #0047ba;
    transform: translateY(0px);
}

.button-seemore span.line-6 {
    top: 0;
    right: 0;
    width: 2px;
    height: 8px;
    background: #0047ba;
    transform: translateY(-48px);
}

.button-seemore:hover .line-1 {
    transform: translateX(0px);
}

.button-seemore:hover .line-2 {
    transform: translateX(-65px);
}

.button-seemore:hover .line-3 {
    transform: translateX(60px);
}

.button-seemore:hover .line-4 {
    transform: translateX(55px);
}

.button-seemore:hover .line-5 {
    transform: translateY(44px);
}

.button-seemore:hover .line-6 {
    transform: translateY(-2px);
}

.white-close {
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent !important;
    border: 1px solid #BF953F;
    z-index: 99;
}

.modal-body {
    position: relative;
    text-align: center;
}

.modal-img {
    max-height: 80vh;
    object-fit: contain;
}

@media (max-width: 576px) {
    .modal-img {
        max-width: 100%;
        max-height: 60vh;
    }

    #prevBtn,
    #nextBtn {
        font-size: 1.5rem;
    }
}

.modal.fade .modal-dialog {
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.modal.fade.show .modal-dialog {
    transform: scale(1);
    opacity: 1;
}

/* Image transition on next/prev */
.modal-img {
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    opacity: 1;
    transform: scale(0.95);
}

.modal-img.active {
    opacity: 1 !important;
    transform: scale(1) !important;
}

.gallery-img {
    cursor: pointer;
}

.modal-content {
    background: transparent;
    border: none;
    box-shadow: none;
}

.modal,
.menu-card-bg,
.login-card {
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0px;
}

.signature {
    font-family: "Pinyon Script", cursive;
    font-size: 24px;
    color: #BF953F !important;
    margin: 0 0.5rem;
}

.weekly-menu-item {
    margin-top: 50px;
    position: relative;
}

.weekly-menu-item .menu-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    float: left;
    border: 8px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.weekly-menu-item .menu-content::after {
    content: "......................................................................" "...................................................................." "....................................................................";
    position: absolute;
    left: 20px;
    right: 0;
    top: -4px;
    z-index: 1;
    color:
        color-mix(in srgb, var(--default-color), transparent 60%);
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.weekly-menu-item .menu-content {
    margin-left: 95px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    position: relative;

}

.weekly-menu-item .menu-ingredients {
    margin-left: 95px;
    font-style: italic;
    font-size: 14px;
    font-family: var(--nav-font);
    color:
        color-mix(in srgb, var(--default-color), transparent 50%);
}

.weekly-menu-item .menu-content p {
    color: white;
    background:  #1F3634;
    padding-right: 10px;
    position: relative;
    z-index: 3;
    font-weight: 700;
    transition: 0.3s;
    letter-spacing: 1px
}

.weekly-menu-item .menu-content span {
    color: white;
    background: #1F3634;
    position: relative;
    z-index: 3;
    padding: 0 10px;
    font-weight: 600;
}
.qodef-e-prices{
    position: absolute;
    right:15px;
    bottom:10px;
    /* color:#BF953F */
}
.menu-content th, .menu-content td{
    width: 90px;
}
