:root {
    --theme-color: #5a2920;
    --secondary-color: #5a2920;
    --theme-color2: #5a2920;
    --title-color: #010f1c;
    --body-color: #4d5765;
    --smoke-color: rgba(1, 15, 28, 0.06);
    --smoke-color2: #faf7f2;
    --black-color: #000000;
    --gray-color: #bdbdbd;
    --white-color: #ffffff;
    --light-color: #72849b;
    --yellow-color: #ffb539;
    --success-color: #f2ec7;
    --error-color: #dc3545;
    --border-color: #e0e0e0;
}

body.modal-open {
    padding-right: 0 !important;
    overflow: hidden !important;
}

html,
body {
    scroll-behavior: smooth !important;
    overflow-x: hidden;
}

body {
    color: #875614;
    font-family: "Poppins", sans-serif;
    /* font-family: "Work Sans", sans-serif; */
    font-size: 18px;
    font-weight: 400;
    background: #f3c275;
}

p {
    margin: 0px 0px 18px;
    color: #875614;
    font-size: 18px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
p a,
span a {
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
    color: var(--title-color);
    text-transform: none;
    font-weight: 700;
    line-height: 1.2;
    margin: 0px 0px 15px;
    font-family: "Spectral", serif;
}

a {
    color: var(--theme-color);
    text-decoration: none;
}

a:hover {
    color: var(--theme-color2);
    text-decoration: none;
}

@media(min-width:992px) {
    .border-theme {
        border-bottom: 1px solid var(--theme-color) !important;
    }
}

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--theme-color);
    border: 1px solid #fff;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: rgb(255, 255, 255);
    line-height: 0;
}

.back-to-top:hover {
    background: rgb(230, 93, 95);
    color: rgb(255, 255, 255);
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

#header {
    background: transparent;
    transition: 0.5s;
    z-index: 997;
    padding: 4px 0px;
}

#header .logo {
    font-size: 30px;
    margin: 0px;
    padding: 0px;
    font-weight: 600;
    font-family: Poppins, sans-serif;
}

.header-scrolled {
    transition: background-color 0.3s;
    background-color: #fff !important;
}

.header-scrolled .navbar a {
    color: var(--theme-color);
}

#header .logo a {
    color: rgb(17, 17, 17);
}

#header .logo a span {
    color: rgb(235, 72, 93);
}

#header .logo img {
    max-width: 70px;
    /* background: #fff; */
    /* padding: 6px; */
}

.navbar {
    padding: 0px;
}

.navbar ul {
    margin: 0px;
    padding: 0px;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 50px 10px 0px;
    font-size: 18px;
    color: rgb(255, 255, 255);
    white-space: nowrap;
    transition: 0.3s;
    font-weight: 600;
    /* font-family: "Spectral", serif; */
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}


/* .navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #fff;
} */

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 30px;
    top: calc(100% + 30px);
    margin: 0px;
    padding: 10px 0px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: rgb(255, 255, 255);
    box-shadow: rgba(127, 137, 161, 0.25) 0px 0px 30px;
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: rgb(235, 72, 93);
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0px;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0px;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

.mobile-nav-toggle {
    color: #fff;
    font-size: 25px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
    background-color: var(--theme-color);
    border-radius: 3px;
    margin-right: 10px;
    padding: 2px;
}

.mobile-nav-toggle.bi-x {
    color: rgb(255, 255, 255);
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    inset: 0px;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
    text-align: center;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    inset: 55px 15px 15px;
    padding: 10px 0px;
    background-color: var(--white-color);
    overflow-y: auto;
    transition: 0.3s;
    text-align: center;
    height: fit-content;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 15px 20px;
    font-size: 20px;
    color: var(--theme-color);
    text-align: center;
    border-bottom: 1px solid rgb(238, 238, 238);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: var(--theme-color);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0px;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: rgb(255, 255, 255);
    box-shadow: rgba(127, 137, 161, 0.25) 0px 0px 30px;
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: rgb(235, 72, 93);
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

.homebanner .card {
    background: rgb(255 255 255 / 75%);
}

.newfont {
    font-family: "Lilita One", sans-serif !important;
    font-size: 56px !important;
}

.btn {
    background: var(--theme-color);
    color: #fff;
    border-radius: 50px;
    /* margin: 0px 0px 0px 20px; */
    padding: 4px 40px;
    font-size: 24px;
    font-weight: 600;
    /* letter-spacing: 1px; */
    transition: 0.3s;
    white-space: nowrap;
    text-transform: capitalize;
}

.btn:hover,
.btn:focus {
    /* transform: translateY(-2px); */
    background: var(--theme-color);
    /* color: rgb(255, 255, 255); */
    /* border: 1px solid rgb(255, 255, 255); */
    color: #fff;
    opacity: 0.9;
}

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

.bg-theme1 {
    background: var(--theme-color2);
}

.fs-30 {
    font-size: 30px;
}

.gutter-5 {
    --bs-gutter-x: 6rem;
}


/* banner */

.vh-100 {
    height: 100vh !important;
    position: relative;
}


/* .mainbanner:before {
    content: close-quote;
    background: rgb(0 0 0 / 30%);
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 0;
    right: 0;
    left: 0;
} */

.w-200 {
    width: 200px;
    margin: auto;
}

.homebanner {
    height: 90vh;
}

.mainbanner h1 {
    font-size: 140px;
    /* text-shadow: rgb(0 0 0 / 19%) 4.12497px 4.12497px 0px; */
    text-shadow: rgba(0, 0, 0, 0.4) 6.76144px 6.76144px 0px;
    /* letter-spacing: -0.025em; */
    line-height: 1;
    font-weight: 500;
    font-family: "Spectral", serif;
}

.display-7 {
    font-size: 32px;
    text-shadow: #fff;
    /* text-shadow: rgb(0 0 0 / 19%) 4.12497px 4.12497px 0px; */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-family: "Nunito", sans-serif;
}

@media (min-width: 1400px) {
    .px-xxl-8 {
        padding-right: 8rem !important;
        padding-left: 8rem !important;
    }
}

@media (min-width:1200px) and (max-width: 1400px) {
    .homebanner {
        height: 90vh;
    }
    .mainbanner h1 {
        font-size: 140px;
    }
    .display-7 {
        font-size: 32px;
    }
}

@media (min-width: 992px) {
    .py-lg-8 {
        padding-top: 8rem !important;
        padding-bottom: 8rem !important;
    }
}

.py-6 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
}

.px-5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
}

p {
    color: var(--secondary-color);
}

.bg-theme-color {
    background: var(--theme-color)
}

.bg-theme1 {
    background-color: #f3c275;
}

.text-theme1 {
    color: var(--theme-color);
}

.section-title h2 {
    font-size: 52px;
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom: 1rem;
    font-family: "Spectral", serif;
    color: var(--theme-color);
}

.section-title {
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 18px;
    font-weight: 300;
}

.ourgoodies h3 {
    font-size: 26px;
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom: 0;
    color: var(--theme-color);
    padding: 10px 0;
}

.apollomenu {
    overflow: hidden;
}

.apollomenu img {
    transition: transform 150ms linear, -webkit-transform 150ms linear;
    will-change: transform;
}

.apollomenu:hover::before {
    height: 100%;
}

.apollomenu .apollomenu-body {
    position: absolute;
    right: 0px;
    bottom: 0px;
    left: 0px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    width: 100%;
    padding: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    z-index: 2;
}

.openinghours {
    z-index: 2;
    overflow: hidden;
}

.openinghours::before {
    content: "";
    position: absolute;
    right: 0px;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgb(88 47 26 / 60%);
    z-index: -1;
}

.aboutoverlay::before {
    content: "";
    position: absolute;
    right: 0px;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgb(88 47 26 / 60%);
    z-index: -1;
}

.foottop::before {
    content: "";
    position: absolute;
    right: 0px;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgb(90 41 32 / 72%);
    z-index: -1;
}

.foottop {
    z-index: 2;
    overflow: hidden;
}

.aboutoverlay {
    z-index: 2;
    overflow: hidden;
    position: relative;
}

.me-20 {
    margin-right: 20px !important;
}

.pt-50 {
    padding-top: 80px;
}

.pb-50 {
    padding-bottom: 80px;
}

.d-table-cell {
    vertical-align: middle;
}

.section-title {
    padding-bottom: 2rem;
}

.book-a-table-btn {
    background: var(--theme-color);
    color: #fff;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: 600;
    padding: 5px 10px;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 30px;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    /* font-family: "Spectral", serif; */
}

.book-a-table-btn:hover {
    background: var(--theme-color2);
    color: rgb(255, 255, 255);
}


/* inner page */

.breadcrumb h1 {
    font-weight: 400;
    font-size: 74px;
    text-transform: capitalize;
    text-align: center;
    color: #fff;
    padding: 11rem 0 3rem 0;
    font-family: "Spectral", serif;
    z-index: 1;
}

.breadcrumb {
    position: relative;
    z-index: 1;
}

.breadcrumb:before {
    content: close-quote;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 0;
    right: 0;
    left: 0;
    z-index: -1;
}

.aboutcard p {
    font-size: 24px;
}


/* .aboutinner p {
    font-size: 24px;
} */

p:last-child {
    margin-bottom: 0px;
}

footer {
    background: rgb(27, 23, 27);
}

footer p {
    padding: 0px;
    text-align: start;
    font-size: 18px;
    color: rgb(255, 255, 255);
}

.foottop ul a {
    padding-left: 0;
}

footer .social-links {
    text-align: start;
}

footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: rgb(70, 66, 59);
    color: rgb(255, 255, 255);
    line-height: 1;
    padding: 8px 0px;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

footer .social-links a:hover {
    background: var(--third-color);
}

.footmenu a {
    color: rgb(255, 255, 255);
}

footer .copyright {
    margin: 0px 0px 5px;
    font-size: 15px;
    padding-top: 15px !important;
}

footer .credits {
    font-size: 15px;
    padding-bottom: 15px;
}

.fs-18 {
    font-size: 18px !important;
}

.fs-21 {
    font-size: 21px;
}

.pt-6 {
    padding-top: 6rem;
}

:focus {
    box-shadow: unset !important;
}


/* my menu */

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.section-title1 {
    background-color: #5b301d;
    color: white;
    padding: 10px 15px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 5px;
}

.hub-title {
    color: #00a8e8;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.burger-hub-title {
    color: #f8f8f8;
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    margin: 15px 0;
    text-transform: uppercase;
}

.saucy-hub-title {
    color: #ffa500;
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    margin: 15px 0;
    text-transform: uppercase;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.item-name {
    font-weight: bold;
}

.item-description {
    font-size: 0.8rem;
    color: #ccc;
    margin-top: 2px;
}

.item-price {
    color: #ffa500;
    font-weight: bold;
}

.category-label {
    background-color: var(--theme-color2);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: bold;
}

.special-deal {
    background-color: #ffa500;
    color: #000;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
    text-align: center;
    font-weight: bold;
}

.special-deal-price {
    font-size: 1.2rem;
}

.logo-container {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    margin-bottom: 20px;
}

.contact-info {
    text-align: center;
    margin: 15px 0;
}

.phone-number {
    color: #ffa500;
    font-size: 1.2rem;
    font-weight: bold;
}

.hours {
    margin: 10px 0;
}

.address {
    margin: 10px 0;
}

.fish-pack {
    background-color: #000;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 15px;
    text-align: center;
    border: 1px solid #fff;
}

.fish-pack-title {
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.fish-pack-item {
    background-color: var(--theme-color2);
    border-radius: 8px;
    padding: 8px;
    margin-bottom: 8px;
    text-align: center;
}

.management-notice {
    background-color: #333;
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.divider {
    height: 2px;
    background-color: #333;
    margin: 20px 0;
}

.old-shop {
    background-color: #333;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 15px;
}

.old-shop-title {
    color: #ffa500;
    font-weight: bold;
}

::placeholder {
    font-size: 15px;
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #212529
}

.fs-48 {
    font-size: 48px !important;
}

.fs-55 {
    font-size: 55px !important;
}

@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }
}

@media (min-width: 992px) {
    .about-text {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1300px) {
    .absolute {
        position: absolute !important;
        top: 0;
        right: 0;
        height: 100%;
    }
}


/* end */

@media (max-width: 767px) {
    .w-75 {
        width: 100% !important;
    }
    .pt-6 {
        padding-top: 3rem;
    }
    .gutter-5 {
        --bs-gutter-y: 2rem;
    }
    .newfont {
        font-family: "Lilita One", sans-serif !important;
        font-size: 34px !important;
    }
    .homebanner {
        height: 35vh;
    }
    .vh-100 {
        height: auto !important;
        position: relative;
    }
    .bannerheight {
        background-position: center center !important;
    }
    .mainbanner h1 {
        font-size: 45px;
    }
    .display-7 {
        font-size: 25px;
    }
    body {
        font-size: 16px;
    }
    .breadcrumb h1 {
        font-size: 32px;
        padding-top: 7rem;
    }
    #header .logo img {
        max-height: 31px;
        /* background: #fff; */
        padding: 0;
    }
    .btn {
        font-size: 18px;
    }
    p {
        font-size: 16px;
    }
    .aboutinner p {
        font-size: 16px;
    }
    .min-vh-100 {
        min-height: 75vh !important;
    }
    .section-title h2 {
        font-size: 34px;
        text-transform: uppercase;
        font-weight: 500;
        margin-bottom: 1rem;
    }
    .aboutus p {
        /* color: rgb(255, 255, 255); */
        font-size: 16px;
    }
    br {
        display: none;
    }
    .pt-6 {
        padding-top: 2rem;
    }
    .pt-50 {
        padding-top: 50px;
    }
    .pb-50 {
        padding-bottom: 50px;
    }
    .book-a-table-btn {
        padding: 6px;
        font-size: 13px;
        margin-right: 1rem;
    }
    .btn {
        padding: .5rem 1rem;
        font-size: 16px;
        margin-right: 1rem;
    }
    .section-title h2 {
        font-size: 38px !important;
        text-transform: capitalize;
        font-weight: 500;
        margin-bottom: 1rem;
    }
    .ourgoodies h3 {
        font-size: 20px;
    }
    .section-title p {
        font-size: 18px;
    }
}

@media(min-width: 768px) and (max-width: 1024px) {
    .w-75 {
        width: 100% !important;
    }
    .mainbanner h1 {
        font-size: 94px;
    }
    .homebanner {
        height: 50vh;
    }
    .display-7 {
        font-size: 35px;
    }
    .gutter-5 {
        --bs-gutter-y: 3rem;
    }
    .mobile-nav-toggle {
        margin-left: 1rem;
    }
    .section-title h2 {
        font-size: 64px !important;
    }
}

@media(min-width: 1024px) and (max-width: 1200px) {
    .mainbanner h1 {
        font-size: 100px;
    }
    .mainbanner p {
        font-size: 30px;
    }
    .gutter-5 {
        --bs-gutter-x: 3rem;
    }
    .nav-gap-sm span {
        width: 100% !important;
    }
}


/* review */