:root {
    --theme-color: #000000;
    --secondary-color: #396836;
    --theme-color2: #582f1a;
    --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;
}

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

body {
    color: rgb(119, 119, 119);
    font-family: "Concert One", sans-serif;
    /* font-family: "Work Sans", sans-serif; */
    font-size: 20px;
    font-weight: 400;
}

p {
    margin: 0px 0px 18px;
    color: rgb(0, 0, 0);
    font-size: 20px;
    font-weight: 600;
}
p,li{
        font-weight: 100;
            font-family: 'Concert One','sans-serif';
}

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.4;
    margin: 0px 0px 15px;
    font-family: "Poller One", 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;
    }
}

img {
    object-fit: cover;
}

.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: rgba(255, 255, 255, 0.562);
    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: white !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: 80px;
    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,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px 10px 50px;
    font-size: 18px;
    color: var(--theme-color);
    white-space: nowrap;
    transition: 0.3s;
    font-weight: 600;
}

.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: var(--theme-color);
}

.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: rgb(0, 0, 0);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.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: rgb(255, 255, 255);
    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: rgb(17, 17, 17);
    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: rgb(235, 72, 93);
}

.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%);
}

.btn {
    transition: 150ms linear;
    font-weight: 400;
    padding: 5px 30px;
    background: var(--theme-color);
    color: var(--secondary-color);
    font-size: 18px;
    border-radius: 50px;
    /* border: 1px solid rgb(255, 255, 255); */
}

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

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

.bg-theme1 {
    background: var(--secondary-color)
}


/* 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;
}

.mainbanner {
    z-index: 1;
}

.mainbanner h2 {
    font-size: 107px;
    /* text-shadow: rgb(0 0 0 / 19%) 4.12497px 4.12497px 0px; */
    /* text-shadow: 0 0 20px #000000, 0 0 3px #040303, 0 0 0px #ffffff; */
    -webkit-text-stroke: 3px var(--theme-color);
    /* For Chrome/Safari */
    text-stroke: 3px var(--theme-color);
    /* Standard property */
    /* letter-spacing: -0.025em; */
    /* line-height: 93px; */
    /*  */
}

.display-7 {
    font-size: 26px;
    text-shadow: #fff;
    /* text-shadow: rgb(0 0 0 / 19%) 4.12497px 4.12497px 0px; */
    /* text-shadow: 0 0 20px #000000, 0 0 3px #040303, 0 0 0px #ffffff; */
    width: fit-content;
    font-family: "Concert One", sans-serif;
}

.bannerheight {
    height: 100vh;
    position: relative;
    z-index: 1;
}

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

.z-9 {
    z-index: 99;
}

img {
    object-fit: cover;
    border-radius: 15px;
}

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

@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);
}

.section-title h2 {
    font-size: 46px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.menuhighlight h3 {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    /* margin-bottom: 1rem; */
    color: var(--white-color);
}

.menuhighlight .card {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    overflow: hidden;
    position: relative;
}

.menuhighlight .card:hover img {
    filter: brightness(90%);
    -webkit-filter: brightness(90%);
}

.apollomenu {
    overflow: hidden;
}

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

.aboutpara p {
    color: #fff;
    font-weight: 500;
}

.bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
    z-index: 1;
}

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


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

.bg-opacity {
    background: rgb(57 104 54 / 85%);
}

.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: rgba(10, 10, 10, 0.6);
    z-index: -1;
}

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

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

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

.aboutus p {
    /* color: rgb(255, 255, 255); */
    font-size: 20px;
    font-weight: 600;
}

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

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

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

.book-a-table-btn {
    background: var(--theme-color);
    color: var(--secondary-color);
    border-radius: 50px;
    margin: 0px 0px 0px 20px;
    padding: 5px 25px;
    font-size: 15px;
    font-weight: 500;
    /* letter-spacing: 1px; */
    transition: 0.3s;
    white-space: nowrap;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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


/* inner page */

.breadcrumb h1 {
    font-weight: 400;
    font-size: 50px;
    text-transform: capitalize;
    text-align: center
    color: #fff;
    padding-top: 11rem;
}

.aboutcard {
    background-color: rgb(88 47 26 / 90%);
    border-radius: 50px;
}

.aboutcard p {
    color: #fff;
}

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 {
    /* margin: 0px 0px 40px; */
    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;
}

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

.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
}


/* end */

@media (max-width: 767px) {
    .menu-item {
        display: block;
        justify-content: space-between;
        margin-bottom: 8px;
    }

    .gutter-5 {
        --bs-gutter-y: 2rem;
    }

    .header .btn {
        font-size: 12px;
        padding: 5px 11px;
    }

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

    .bannerheight {
        background-position: center center !important;
        height: 100%;
    }

    .mainbanner h2 {
        font-size: 83px;
        line-height: 80px;
        margin: 10px 0;
    }

    .display-7 {
        font-size: 15px;
        /*         margin-top: 2rem; */
        width: fit-content;
    }

    body {
        font-size: 16px;
    }

    .breadcrumb h1 {
        font-size: 32px;
        padding-top: 7rem;
    }

    #header .logo img {
        max-height: 60px;
        /* background: #fff; */
        padding: 0;
    }

    .btn {
        font-size: 16px;
        padding: 5px 15px;
    }

    p {
        font-size: 16px;
    }

    .min-vh-100 {
        min-height: 75vh !important;
    }

    .section-title h2 {
        font-size: 32px;
        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;
    }
}

@media(min-width: 992px) and (max-width: 1200px) {
    .mainbanner h2 {
        font-size: 65px;
    }

    .mainbanner p {
        font-size: 30px;
    }
}

@media(min-width:1500px) {
    .bannerheight {
        height: 80vh;
        position: relative;
    }
}


/* review */
/* new bikash start cafe mantra */
/* CANVA DESIGN SPECIFIC STYLES */

.brand-display {
    font-family: 'Poller One', cursive;
    font-size: 138px;
    line-height: 0.85;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0;
    /* Adding text-shadow for better legibility on photos */
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.headline-sub {
    font-family: 'Canva Sans', 'Concert One', sans-serif;
    font-size: 40px;
    font-weight: 600;
    margin-top: -10px;
}

.canva-btn-black {
    background-color: #000000 !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    padding: 12px 35px !important;
    font-family: 'Concert One', sans-serif;
    font-size: 18px !important;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border: none;
    transition: 0.3s transform;
}

.canva-btn-black:hover {
    transform: scale(1.05);
    color: #ffffff;
}

/* Responsiveness for small screens */
@media (max-width: 991px) {
    .brand-display {
        font-size: 80px;
    }

    .headline-sub {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .brand-display {
        font-size: 50px;
    }

    .headline-sub {
        font-size: 20px;
    }
}

/* menu highlight block */
/* Container Background */
.menu-highlight-section {
    background-color: #000000 !important;
    padding: 0 0;
}

/* 1. Typography - Exact Canva Specs */
.canva-title-main {
    font-family: 'Poller One', cursive;
    font-size: 41px;
    /* Scaled for 4-column layout */
    line-height: 1.1;
    text-transform: capitalize;
    color: #ffffff;
    margin-bottom: 20px;
}

.canva-desc-main {
    font-family: 'Concert One', sans-serif;
    font-size: 20px;
    line-height: 1.5;
    color: #ffffff;
    font-weight: 400;
}

.menu-card-name {
    font-family: 'Poller One', cursive;
    font-size: 14px;
    text-transform: uppercase;
    margin-top: 15px;
    letter-spacing: 0.5px;
    color: #ffffff;
}

/* 2. Square Image Logic */
.menu-image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Forces square shape like Canva */
    overflow: hidden;
    border-radius: 12px;
    /* Slight roundness as per image */
}

.menu-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Prevents stretching */
    transition: transform 0.3s ease;
}

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

/* 3. Button Styles (White Pill) */
.menu-footer-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.canva-pill-btn-white {
    background-color: #ffffff !important;
    color: #000000 !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: 'Concert One', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
}

.canva-pill-btn-white:hover {
    background-color: #e0e0e0 !important;
    color: #000000 !important;
}

/* Link Reset */
.menu-card-link {
    text-decoration: none !important;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .canva-title-main {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .canva-pill-btn-white {
        font-size: 12px;
    }
}
/* coffee mantra start */
.about-section-padding {
    padding: 80px 0;
}

.about-title {
    font-family: 'Poller One', cursive;
    font-size: 42px;
    line-height: 1.1;
    text-transform: capitalize;
}

.about-content {
    font-family: 'Concert One', sans-serif;
    font-size: 18px;
    line-height: 1.6;
}

.about-content p {
    margin-bottom: 15px;
}

/* The Black Pill Button */
.canva-pill-btn-black {
    background-color: #000000 !important;
    color: #ffffff !important;
    padding: 14px 35px;
    border-radius: 50px;
    font-family: 'Concert One', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    border: none;
    transition: 0.3s transform ease;
}

.canva-pill-btn-black:hover {
    transform: scale(1.05);
    color: #ffffff;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .about-title {
        font-size: 32px;
    }

    .about-section-padding {
        padding: 50px 0;
    }
}
/* new with chatgpt */
.brand-title-image {
    width: 100%;
    height: auto;
    max-width: 700px;
}

@media (max-width: 768px) {
    .brand-title-image {
        max-width: 420px;
    }
}

/* new bigreko hero section */
.hero-banner {
    min-height: 90vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-inner {
    width: 100%;
}

.brand-display {
    font-family: 'Poller One', cursive;
    font-size: 140px;
    line-height: 0.85;
    color: #ffffff;
    text-transform: uppercase;
}

.hero-brand-img {
    max-width: 420px;
    margin-bottom: 10px;
}

.headline-sub {
    font-family: 'Concert One', sans-serif;
    font-size: 38px;
    color: #ffffff;
    margin-top: -10px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.hero-btn {
    background: var(--btn-bg);
    color: var(--btn-color);
    padding: 14px 36px;
    border-radius: 50px;
    text-transform: uppercase;
    font-family: 'Concert One', sans-serif;
    text-decoration: none;
    transition: 0.3s ease;
}

.hero-btn:hover {
    background: var(--btn-hover-bg);
    color: var(--btn-hover-color);
}

@media (max-width: 768px) {
    .brand-display {
        font-size: 70px;
    }

    .headline-sub {
        font-size: 22px;
    }
      
}
.brand-display br {
    content: "";
    display: block;
    margin-bottom: -10px;
    /* adjust to match Canva */
}
.hero-banner {
    min-height: 90vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-inner {
    width: 100%;
}

.brand-display {
    font-family: 'Poller One', cursive;
    font-size: 140px;
    line-height: 0.85;
    text-transform: uppercase;
    color: #ffffff;
}

.brand-display span {
    display: block;
}

.headline-sub {
    font-family: 'Concert One', sans-serif;
    font-size: 38px;
    color: #ffffff;
    margin-top: -10px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.hero-btn {
    background: var(--btn-bg);
    color: var(--white-color);
    padding: 14px 36px;
    border-radius: 50px;
    text-transform: uppercase;
    font-family: 'Concert One', sans-serif;
    text-decoration: none;
    transition: 0.3s ease;
}

.hero-btn:hover {
    background: var(--btn-hover-bg);
    color: var(--btn-hover-color);
}

@media (max-width: 768px) {
    .brand-display {
        font-size: 59px;
        margin-bottom:13px;
    }

    .headline-sub {
        font-size: 22px;
    }
        .hero-banner {
            min-height: 50vh;
    
        }
                .hero-btns {
                   
                    gap: 6px;
}}
/* hero section end */
/* cafe catering */

.catering-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    padding: 100px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

/* The Glassmorphism Card */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    /* Semi-transparent white */
    backdrop-filter: blur(10px);
    /* Blurs the background behind the card */
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.catering-title {
    font-family: 'Poller One', cursive;
    font-size: 45px;
    line-height: 1.1;
    color: #000000;
    text-transform: capitalize;
}

.catering-content {
    font-family: 'Concert One', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: #333333;
    font-weight: 500;
}

.catering-content p {
    margin-bottom: 20px;
}

/* Button matching your branding */
.canva-pill-btn-black {
    background-color: #000000 !important;
    color: #ffffff !important;
    padding: 14px 40px;
    border-radius: 50px;
    font-family: 'Concert One', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    transition: 0.3s transform ease;
}

.canva-pill-btn-black:hover {
    transform: scale(1.05);
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .catering-title {
        font-size: 32px;
    }

    .glass-card {
        padding: 30px;
        margin: 0 15px;
    }

    .catering-section {
        padding: 60px 0;
    }
}

/* second banner   */

.inner-banner {
    position: relative;
    width: 100%;
    height: 315px;
    /* Adjust height based on your design */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-title {
    font-family: 'Poller One', cursive;
    font-size: 80px;
    /* Matches the massive bold text in design */
    color: #ffffff;
    text-transform: capitalize;
    line-height: 0.9;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
    margin: 0;
}
.newstylesecondbanner{
        margin-top: 35px;
            padding-top: 35px;
}
/* Responsive Scaling */
@media (max-width: 991px) {
    .banner-title {
        font-size: 60px;
    }

    .inner-banner {
        height: 175px;
    }
}

@media (max-width: 576px) {
    .banner-title {
        font-size: 40px;
    }
}

/* welcome mantra */
.welcome-mantra-section {
    background-color: #000 !important;
}

/* 1. Exact Canva Typography */
.canva-title {
    font-family: 'Poller One', cursive;
    font-size: 45px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.canva-text {
    font-family: 'Concert One', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    opacity: 0.9;
}

/* 2. Replaceable Image Styling with Rounded Corners */
.canva-img {
    border-radius: 25px;
    /* Matches the soft rounded look in your design images */
    width: 100%;
    object-fit: cover;
    max-height: 500px;
}

/* 3. The White Pill Button with Arrow */
.canva-pill-white {
    background-color: #ffffff !important;
    color: #000000 !important;
    padding: 15px 45px;
    border-radius: 50px;
    font-family: 'Concert One', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    letter-spacing: 1px;
}

.canva-pill-white:hover {
    background-color: #f1f1f1 !important;
    transform: scale(1.03);
    transition: 0.2s ease;
}

/* Mobile Layout Fix */
@media (max-width: 768px) {
    .canva-title {
        font-size: 30px;
    }
.hero-btn{
    font-size: 13px;
}
    .ps-md-5 {
        padding-left: 0 !important;
    }
}
/* Styling for the editor only */
.canva-img-wrapper {
    position: relative;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 10px;
}

.canva-img-wrapper:hover {
    border-color: #ffffff;
}

.media-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    opacity: 0;
}

.canva-img-wrapper:hover .media-overlay {
    opacity: 1;
}
.img-edit-container {
    position: relative;
    display: inline-block;
}

.edit-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    transition: 0.3s;
}

.img-edit-container:hover .edit-badge {
    opacity: 1;
}
/* why different section */
.why-different-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    padding: 100px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.why-overlay-box {
    border-radius: 40px;
    /* High roundness like Canva design */
    backdrop-filter: blur(10px);
    /* Optional: Soft glass effect */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Reusing your Canva typography classes */
.canva-title {
    font-family: 'Poller One', cursive;
    font-size: 42px;
    line-height: 1.1;
    text-transform: uppercase;
}

.canva-text {
    font-family: 'Concert One', sans-serif;
    font-size: 18px;
    line-height: 1.6;
}

.canva-text ul {
    list-style-type: disc;
    padding-left: 20px;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .why-different-section {
        padding: 60px 0;
        background-attachment: scroll;
    }

    .canva-title {
        font-size: 32px;
    }
}

/* footer start  */
/* ==============================
   Footer Background Overlay Fix
   Only targets Cafe Mantra footer
   ============================== */

#footer .foottop::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(226, 221, 221, 0.4); /* 👈 lighter overlay */
    z-index: 1;
}

/* Make sure content stays above overlay */
#footer .foottop > .container {
    position: relative;
    z-index: 2;
}
#footer .foottop {
    background-blend-mode: multiply;
}
#footer .foottop {
    filter: contrast(1.05) brightness(1.05);
}
/* footer end */