@import url('../fonts/fonts.css');

* {
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}

:root {
    --color-accent: #ff0000;
    /* Red */
    --color-sage-light: #a3b18a;
    /* Light Green */
    --color-sage-base: #7a8567;
    /* Medium Green */
    --color-sage-dark: #4d593a;
    /* Dark Green  */
    --color-dark-bg: #12150e;
    /* Almost Black */
}

:root {
    /* --- Font Family Variables --- */
    --font-heading: 'Comic Sans MS Bold';
    --font-body: 'Poppins', sans-serif;
    --font-code: 'Akceler A Alt Demo', monospace;
    --font-comic-regular: 'Comic Sans MS Normal', monospace;

    /* --- Font Size Variables --- */
    --text-xs: 12px;
    /* Extra small text (Footer ya tags) */
    --text-sm: 14px;
    /* Small text (Secondary info) */
    --text-base: 16px;
    /* Normal paragraph size */
    --text-lg: 18px;
    /* Large text (Subtitles) */
    --text-xl: 24px;
    /* Extra large (h3 ya h2) */
    --text-2xl: 34px;
    /* Double extra large (h1) */
    --text-3xl: 48px;
    /* Hero section headings */
    --text-4xl: 75px;
    /* Hero section headings */
}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    color: #fff;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;

}




/* p {
    font-size: 15px;
    color: #252123;
    line-height: 26px
} */

a {
    outline: 0;
    color: #252123;
    text-decoration: none;
}

a:focus {
    outline: 0
}

.clearfix {
    clear: both;
    font-size: 0;
    line-height: 0;
    margin: 0;
    padding: 0
}

ul {
    padding: 0;
}

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

::-moz-selection {
    text-shadow: none;
    background: #2f4398;
    color: #fff
}

a,
input,
select,
textarea {
    transition: all .1s;
    -webkit-transition: all .1s;
    -moz-transition: all .1s;
    transition: all .1s
}

::selection {
    text-shadow: none;
    background: #2f4398;
    color: #fff
}


/* a:focus,
a:hover {
    color: #1c84f9;
    text-decoration: none
} */

h1,
h2 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: var(--text-4xl);
    line-height: 80px;

}



h3,
h4 {
    font-family: var(--font-heading);
}

h3 {
    font-size: var(--text-2xl);
}

h5 {
    font-family: var(--font-body);
    font-size: var(--text-2xl);
}

.btn.btn-info {
    font-family: var(--font-body);
    font-size: var(--text-base);
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    text-align: center;
    padding: 16px 30px;
    border-radius: 100px;
}

.btn-order-red {
    background-color: #D32F2F;
    border: none;
    letter-spacing: 0.5px;
}

.btn-order-red:hover {
    background-color: #B71C1C;
    color: white;
}

.btn-order-green {
    background-color: #929D7D;
    border: none;
    letter-spacing: 0.5px;
}

.btn-order-green:hover {
    background-color: #7A8567;
    color: white;
}

.bnt-btn {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-sage-order {
    display: inline-flex;
    align-items: center;
    background-color: #8c9878;
    text-decoration: none;
    border-radius: 50px;
    padding: 10px 24px 10px 10px;
    transition: background-color 0.3s ease;
}

.btn-sage-order:hover {
    background-color: #7a8567;
}

.circle-arrow-icon {
    background-color: #ffffff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #df3838;
    margin-right: 12px;
}

.sage-btn-text {
    color: #ffffff;
    font-weight: 700;
    font-size: var(--text-base);
    letter-spacing: 0.5px;
}

.btn-white-menu {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    border-radius: 50px;
    padding: 16px 46px;
    font-weight: 700;
    font-size: var(--text-base);
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
}

.btn-white-menu:hover {
    background-color: #f2f2f2;
}

/* Header */
.main_menu {
    display: flex;
    justify-content: space-between;
    padding-left: 60px;
    align-items: center;
}

.main_menu>ul {
    margin-bottom: 0px;
    margin-left: 0;
}

.main_menu ul li a {
    padding: 10px 20px;
    color: #fff;
    transition: all 0.4s;
}

.main_menu ul li a:hover {
    color: var(--color-accent);
}

.home-header>.container,
.banner-container,
.banner-caption,
.banner-caption>.row {
    height: 100%;
}

.home-pg {
    /*background: url('../images/90-on-the-green-banner.webp') no-repeat center top;*/
    background-size: cover;
    height: 1140px;
}

.banner-caption {
    padding-bottom: 260px;
}

.bnr-right-offer {
    margin-right: 65px;
}

.have-you-text {
    font-size: 70px;
    font-weight: 600;
    font-style: italic;
    color: #fff;
    line-height: 65px;
    display: inline-block;
    position: relative;
    z-index: 1;
    text-shadow: 0px 3px 10px rgba(0, 0, 0, 0.30);
}

.have-you-text span {
    padding-left: 62px;
}

.banner-title {
    color: var(--color-accent);
    font-size: 178px;
    font-weight: 900;
    font-family: var(--font-code);
    text-transform: uppercase;
    line-height: 105px;
    text-shadow: 0px 7px 10px rgba(0, 0, 0, 0.69);
}

/*.food-collection {*/
/*    font-family: 'Comic Sans MS Normal Italic';*/
/*    width: 242px;*/
/*    height: 182px;*/
/*    background: url(../images/circle-bg.webp) no-repeat center / cover;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    padding: 26px 0;*/
/*}*/

.food-collection {
    font-family: 'Comic Sans MS Normal Italic';
    width: 295px;
    height: 220px;
    background: url(../images/circle-bg.webp) no-repeat center / 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 41px 0;
}

.bnr-on-text {
    font-size: 56px;
    color: var(--color-accent);
    line-height: 40px;
}

.bnr-on-text span {
    color: #fff;
    font-size: 40px;
    font-style: italic;
    font-weight: 400;
}

.bnr-food-collection-text {
    font-size: 30px;
    line-height: 25px;
}

.bnr-food-collection-text .bnr-food-text {
    display: block;
}

.bnr-food-collection-text .bnr-collection-text {
    margin-left: 30px;
}

.brnArrow {
    max-width: 242px;
    text-align: right;
    margin-top: 38px;
}

.brnArrow img {
    margin-right: 56px;
}

.bnr-right-offer {
    display: flex;
    flex-direction: column;
    align-items: end;
    margin-top: -375px;
}

.social-banner {
    background-color: var(--color-dark-bg);
    padding: 15px 40px;
    display: inline-block;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    margin-top: 40px;
}

.social-banner-inner {
    display: flex;
    align-items: center;
}

.follow-text {
    color: #ffffff;
    font-family: 'Segoe Print', 'Comic Sans MS', cursive, sans-serif;
    /* Cursive fallback to match the image */
    font-size: 26px;
    font-style: italic;
    margin-right: 25px;
}

.social-banner::before {
    content: " ";
    display: block;
    background: var(--color-dark-bg);
    position: absolute;
    top: 0;
    right: 100%;
    width: 100%;
    height: 100%;
}

section {
    padding: 80px 0;
}

.delivery-section {
    position: relative;
    background-color: #ffffff;

}

.delivery-section-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.section-brush::before {
    content: " ";
    display: block;
    position: absolute;
    top: -115px;
    left: 0;
    width: 100%;
    height: 135px;
    background: url('../images/white-brush-top-bg.webp') no-repeat center top/cover;
}

.torn-edge-top,
.torn-edge-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 30px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 30" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,30 C150,20 300,40 450,25 C600,10 750,35 900,20 C1050,5 1200,25 1200,25 L1200,0 L0,0 Z" fill="%23ffffff" stroke="%23dddddd" stroke-width="1"/></svg>');
    background-size: 100% 100%;
    z-index: 2;
}

.torn-edge-top {
    top: -1px;
}

.torn-edge-bottom {
    bottom: -1px;
    transform: scaleY(-1);
    /* Flip for the bottom edge */
}

/* Brush Stroke Background Effect using CSS Morphing */
.brush-bg {
    background: url('../images/menu-bg.webp') no-repeat center;
    background-size: contain;
    width: 260px;
    height: 212px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.brush-bg:hover {
    transform: scale(1.05) rotate(-2deg);
}


.about-section {
    background-color: var(--color-sage-light);
    position: relative;
    padding: 200px 0 280px;
}

.about-section::after {
    content: " ";
    display: block;
    position: absolute;
    top: -56px;
    right: 0;
    width: 300px;
    height: 312px;
    background: url(../images/hmp-floting-img-01.webp) no-repeat center top / 100%;
}

.hmp-floting-img-02::after {
    content: " ";
    display: block;
    position: absolute;
    top: -220px;
    left: 0;
    width: 340px;
    height: 412px;
    background: url(../images/hmp-floting-img-02.webp) no-repeat center top / 100%;
}


.section-brush-02::before {
    content: " ";
    display: block;
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 150px;
    background: url(../images/white-brush-bottom-bg.webp) no-repeat center top / cover;
}

/* Typography */
.main-heading span {
    font-family: 'Comic Sans MS Normal';
    font-size: var(--text-3xl);
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: 1.5px;
    display: block;
}

.sub-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 25px;
}

.brand-name {
    color: #2b3a2a;
    font-weight: 600;
}

.body-text {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
    padding: 0 15px;
}

/* Custom Red Button */
.btn-custom-red {
    background-color: #ed1c24;
    /* Bright Red */
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 30px;
    border: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-custom-red:hover {
    background-color: #c7151b;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(237, 28, 36, 0.3);
}

.arch-img-wrapper {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    border-radius: 200px;
    overflow: hidden;
}

.arch-left {
    aspect-ratio: 1 / 2;
}

.arch-right {
    aspect-ratio: 1 / 1.7;
}

.arch-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Adjustments */
@media (max-width: 991px) {

    .arch-img-wrapper {
        max-width: 280px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {


    .body-text {
        padding: 0;
    }

    /* Adjust image aspect ratio for mobile so they aren't too tall */
    .arch-left,
    .arch-right {
        aspect-ratio: 1 / 1.3;
    }
}

.dflt-title h2 {
    line-height: 60px;
    text-transform: uppercase;
}

.dflt-title h2 span {
    font-size: var(--text-3xl);
    display: block;
    text-transform: uppercase;
    font-family: var(--font-comic-regular);
}

.text-color h2 {
    color: var(--color-accent);
}

.text-color h2 span {
    color: var(--color-dark-bg);
}

.food-card {
    background-color: var(--color-sage-base);
    border-radius: 40px;
    padding: 50px 30px 20px 30px;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    font-family: 'Nunito', sans-serif;
    color: #ffffff;
    box-sizing: border-box;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.food-card:hover {
    background-color: var(--color-sage-dark);
}

.card-title {
    margin: 0 0 15px 0;
    letter-spacing: 0.5px;
}

.card-desc {
    line-height: 1.6;
    margin: 0 0 30px 0;
    opacity: 0.95;
}

.action-btn {
    background-color: #fff;
    border: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0px;
    top: -20px;
    cursor: pointer;
    transition: transform 0.2s ease;
    z-index: 2;
}

.action-btn:hover {
    transform: scale(1.1);
}

.action-btn svg {
    width: 24px;
    height: 24px;
}

.image-container {
    text-align: center;
    margin-top: 10px;
    overflow: hidden;
    /*margin: 0 auto;*/
    margin:auto auto 0;
    height: 200px;
    width: 100%;
    border-radius: 30px;
}

.image-container img {
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28), filter 0.5s ease;
}

.food-card:hover {
    transform: translateY(-5px);
}

.food-card:hover img {
    transform: scale(1.08) rotate(5deg);
}

.ftr-cptext {
    color: var(--color-accent);
}

.action-btn svg path {
    transition: stroke 0.2s ease;
}

.food-card:hover .action-btn {
    background: var(--color-accent);
}

.food-card:hover svg path {
    stroke: #fff;
}

.bg_a3b18a {
    background: var(--color-sage-light);
}

.our-menu {
    padding-top: 222px;
}

.hmp-floting-img-03::after {
    content: " ";
    display: block;
    position: absolute;
    top: -0px;
    right: 0;
    width: 410px;
    height: 402px;
    background: url(../images/hmp-floting-img-03.webp) no-repeat center top / 100%;
}

.food-strip {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    position: relative;
    overflow: hidden;
    background-color: #1a1a1a;
}

.food-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.food-strip img:hover {
    transform: scale(0.92);
    filter: brightness(0.85);
}

.center-follow-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    width: 143px;
    height: 143px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.4);
    z-index: 10;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.center-follow-circle:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0.6);
}

.center-follow-circle .text-follow {
    font-size: 15px;
    color: var(--color-dark-bg);
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 2px;
}

.center-follow-circle .text-handle {
    font-size: 15px;
    color: var(--color-sage-light);
    font-weight: 500;
    line-height: 20px;
}

@media (max-width: 992px) {
    .food-strip {
        grid-template-columns: repeat(3, 1fr);
        height: auto;
    }

    .food-strip img {
        height: 200px;
    }
}

@media (max-width: 600px) {
    .food-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .food-strip img {
        height: 180px;
    }

    .center-follow-circle {
        width: 130px;
        height: 130px;
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.4);
    }

    .center-follow-circle:hover {
        box-shadow: 0 0 0 14px rgba(255, 255, 255, 0.6);
    }
}

@media (max-width:400px) {
    .food-strip {
        grid-template-columns: repeat(1, 1fr);
    }

    .food-strip img {
        height: 180px;
    }

    .center-follow-circle {
        width: 130px;
        height: 130px;
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.4);
    }

    .center-follow-circle:hover {
        box-shadow: 0 0 0 14px rgba(255, 255, 255, 0.6);
    }
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.grid-item {
    position: relative;
    background-color: #000;
    overflow: hidden;
    cursor: pointer;
    border-radius: 20px;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.6s ease;
}

.gradient-bottom {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
}

.gradient-top {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, transparent 40%);
}

.item-text {
    position: absolute;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    transition: transform 0.5s ease, opacity 0.5s ease;
    font-size: var(--text-2xl);
    font-family: var(--font-heading);
    line-height: 40px;
}

.pos-bottom-left {
    bottom: 25px;
    left: 25px;
}

.pos-top-left {
    top: 25px;
    left: 25px;
}

.grid-item:hover img {
    transform: scale(1.1);
    opacity: 0.8;
}

.grid-item:hover .item-text {
    transform: translateY(-5px);
}

.grid-item:hover .gradient-bottom {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
}


.row-tall {
    height: 500px;
}

.row-short {
    height: 320px;
}

.item-brunch {
    grid-column: span 2;
}

.item-burger {
    grid-column: span 1;
}

.item-texmex {
    grid-column: span 1;
}

.item-hotdogs,
.item-wings,
.item-sides,
.item-kids {
    grid-column: span 1;
}

.item-salads {
    grid-column: span 1;
}

.item-milkshakes {
    grid-column: span 1;
}

.item-smoothies {
    grid-column: span 2;
}

body.home .item-smoothies {
    grid-column: span 2;
}

@media (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .item-brunch {
        grid-column: span 2;
    }

    .item-burger,
    .item-texmex {
        grid-column: span 1;
    }

    .item-hotdogs,
    .item-wings,
    .item-sides,
    .item-kids {
        grid-column: span 1;
    }

    .item-salads,
    .item-milkshakes {
        grid-column: span 1;
    }

    /*.item-smoothies {*/
    /*    grid-column: span 2;*/
    /*}*/

    .row-tall {
        height: 350px;
    }

    .row-short {
        height: 200px;
    }
}

@media (max-width: 600px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .grid-item {
        grid-column: span 1 !important;
        height: 250px !important;
    }

    .text-xl {
        font-size: 22px;
    }

    .pos-bottom-left,
    .pos-top-left {
        left: 15px;
        bottom: 15px;
        top: auto;
    }

    .gradient-top {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    }

    .grid-item:hover .item-text {
        transform: translateY(-3px);
    }
}

.pageError.home-pg {
    height: 185px;
}

.pageError h2 {
    color: var(--color-dark-bg);
}

.pageError p {
    color: var(--color-dark-bg);
}


.back-to-top {
    position: fixed;
    bottom: 81px;
    right: 17px;
    display: none;
    background: var(--color-sage-base);
    color: #fff;
    border-radius: 8px;
    border: none;
    z-index: 9999;
}

/* Custom Footer Colors */
.site-footer {
    background-color: var(--color-dark-bg);
    color: #ffffff;
    padding: 100px 0 0;
}

.opening-sec {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.text-red {
    color: #e33b3b !important;
}

.site-footer h5 {
    font-family: var(--font-body);
    font-size: var(--text-2xl);
    font-weight: 600;
}

/* Social Icons Custom Styling */
.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
    transition: transform 0.2s;
}

.text-red {
    color: var(--color-accent);
}

.social-icon:hover {
    transform: scale(1.1);
    color: white;
}

.should-text {
    color: white;
}

.food-alltext {
    font-size: 18px;
    font-family: var(--font-body);
}

/* Custom Footer Links */
.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-accent);
}

.ftr-copy-right {
    border-top: 1px solid #898a87;
    padding: 30px 0;
}

/* Adding the '|' separator between links on large screens */
@media (min-width: 768px) {
    .footer-links-item:not(:last-child)::after {
        content: "|";
        margin-left: 15px;
        margin-right: 15px;
        color: #ffffff;
    }
}


.social-img {
    width: 20px;
    height: auto;
}

.inner-banner {
    height: 715px;
}

.inner-banner .banner-caption {
    display: flex;
    align-items: center;
}

.inner-banner .banner-caption span {
    font-weight: 600;
    font-size: 70px;
    color:#fff;
}

.section-color-brush::before {
    content: " ";
    display: block;
    position: absolute;
    top: -101px;
    left: 0;
    background: url('../images/color-brush-top-bg.webp') no-repeat center/cover;
    height: 165px;
    width: 100%;
}

.dlvr-sec-bg {
    background: var(--color-sage-light);
}

.custome-padd {
    padding: 60px 0 60px;
}

.section-color-brush::after {
    content: " ";
    display: block;
    position: absolute;
    bottom: -101px;
    left: 0;
    background: url('../images/color-brush-bottom-bg.webp') no-repeat center/cover;
    height: 165px;
    width: 100%;
}

.deflt-height {
    min-height: 100px;
}

.connect-with-us .row {
    align-items: end;
}

.color-brush-top-bg::before {
    content: " ";
    display: block;
    position: absolute;
    top: -101px;
    left: 0;
    background: url('../images/color-brush-top-bg.webp') no-repeat center/cover;
    height: 165px;
    width: 100%;
}

.color-brush-top-bg::after {
    content: " ";
    display: block;
    position: absolute;
    bottom: -101px;
    left: 0;
    background: url('../images/color-brush-bottom-bg.webp') no-repeat center/cover;
    height: 165px;
    width: 100%;
}

.connect-wus-map iframe {
    border-radius: 30px;
}

.connect-wus-info {
    background: var(--color-sage-dark);
    border-radius: 30px;
    padding: 70px 50px;
    margin-left: -95px;
    margin-bottom: -100px;
    color: #fff;
}

.connect-wus-info h3 {
    font-family: var(--font-comic-regular);
    font-size: var(--text-2xl);
    margin-bottom: 20px;
    color: #fff;
}

.connect-wus-info .on90-text {
    font-weight: 600;
}

.connect-wus-info a {
    color: #fff;
    transition: all 0.3s;
}
.connect-wus-info a:hover{
    color: var(--color-sage-light);
}

.connect-with-us {
    padding-bottom: 260px;
}

.get-in-touch .form-control {
    height: 97px;
    box-shadow: none;
    background: #fff;
    border: none;
    border-radius: 30px;
    padding: 20px 40px;
    margin-bottom: 13px;
}

.get-in-touch textarea.form-control {
    height: 207px;
    border-radius: 30px;
}

.get-in-touch .btn.btn-info {
    background: var(--color-accent);
    border-radius: 100px;
    border: none;
    display: inline-block;
    padding: 14px 50px;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
}

.prvt-evnt-title h1 {
    font-family: var(--font-comic-regular);
    font-size: var(--text-3xl);
    color: var(--color-dark-bg);
    line-height: 61px;
}

.prvt-evnt-title h1 span {
    color: var(--color-accent);
}

.prvt-evnt-title h5 {
    color: var(--color-sage-base);
    font-size: var(--text-xl);
}

.prvt-evnt-title p {
    color: var(--color-dark-bg);
}

.prvt-evnt-content {
    padding: 145px 0 0;
    position: relative;
}

.our-restaurant {
    background: var(--color-sage-base);
    padding: 50px 40px;
    border-radius: 30px;
    max-width: 490px;
    position: absolute;
    top: 40px;
    left: 0;
}

.from-casual-sharing {
    position: absolute;
    top: 90px;
    right: 0;
}

.from-casual-sharing-thumb {
    margin-left: 78px;
}

.from-casual-sharing-thumb img {
    border-radius: 60px;
}

.from-casual-sharing-content {
    background: var(--color-sage-dark);
    padding: 50px 40px;
    border-radius: 30px;
    max-width: 490px;
    margin-top: 35px;
}

.food-and-catering-thumb {
    position: relative;
}

.food-and-catering-thumb img {
    margin-left: -100px;
    margin-top: -135px;
}

.food-and-catering-content {
    padding-top: 150px;
}

.food-and-catering-content h3 {
    font-family: var(--font-comic-regular);
    font-size: var(--text-3xl);
}

.food-and-catering-content h4 {
    font-family: var(--font-body);
    color: var(--color-sage-dark);
    font-size: 30px;

}

.food-and-catering-content h5 {
    font-size: var(--text-xl);
}

.food-and-catering-content-inside{
    max-width: 900px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    width: 100%;
    margin-top: 50px;
}

.services-grid .grid-item {
    background-color: #555e46;
    color: #ffffff;
    text-align: center;
    padding: 20px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
    box-sizing: border-box;
}

.services-grid .grid-item:hover {
    background-color: #48503b;
    transform: scale(1.02);
}

.ht-ctc.ht-ctc-chat{
    right: 76px !important;
}


@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.you-choose-text {
    
    font-size: 20px;
}

.flexible-cat-content h3 {
    font-family: var(--font-comic-regular);
    font-size: var(--text-3xl);
    margin-bottom: 30px;
}
.flexible-cat-content h4 {
    font-family: var(--font-body);
}
ul.flxb-catng-list{}
ul.flxb-catng-list li{
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}
ul.flxb-catng-list li::before{
    content: " ";
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 16px;
    border: 3px solid var(--color-sage-dark);
    background: #fff;
    position: absolute;
    top: 5px;
    left: 0;
}
.space-designed-around-you h3 {
    font-family: var(--font-comic-regular);
    font-size: var(--text-3xl);
    margin-bottom: 30px;
}
#space-designed .owl-dots{
    margin-top: 35px;
}
#space-designed.owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px 7px;
    background: #c8d0b9;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px;
}
#space-designed.owl-theme .owl-dots .owl-dot.active span, 
#space-designed.owl-theme .owl-dots .owl-dot:hover span {
    background: #fff;
}

.color-brush-bottom-bg::after{
    content: " ";
    display: block;
    position: absolute;
    bottom: -101px;
    left: 0;
    background: url(../images/color-brush-bottom-bg.webp) no-repeat center / cover;
    height: 165px;
    width: 100%;
}

.bg_ffffff{
    background: #fff;
}
.the-date-you-need-the-cake{
    color: var(--color-dark-bg);
    padding-bottom: 140px;
}
.the-date-you-need-the-cake ul.flxb-catng-list li::before {
    border: 3px solid var(--color-accent);
} 
.acam-text-color {
    color: var(--color-sage-dark);
}  



/* 04-04-2026
========================== */
.product-90pg .card-desc {
    font-size: 24px;
}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 8px;
    justify-content: center;
}

.pagination button {
    padding: 8px 16px;
    border: 1px solid #d1d5db;
    background-color: white;
    color: #374151;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.pagination button:hover:not(:disabled) {
    background-color: #e5e7eb;
}

.pagination button.active {
    background-color: var(--color-sage-base);
    color: white;
    border-color: var(--color-sage-base);
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}



.product-img-main {
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
}

.thumbnail {
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 6px;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #0d6efd;
    /* Bootstrap Primary Blue */
}

.color-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: inline-block;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #dee2e6;
}

.color-swatch.active {
    box-shadow: 0 0 0 2px #0d6efd;
}

.qty-input {
    width: 60px;
    text-align: center;
}

.reservation-pg{
    text-align:center;
}
.reservation-pg h2{
    font-size:60px;
    margin-bottom:35px;
}
.reservation-pg h2 + p a{
        font-family: var(--font-body);
    font-size: var(--text-base);
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    text-align: center;
    padding: 16px 30px;
    border-radius: 100px;
    background-color: #D32F2F;
    border: none;
    letter-spacing: 0.5px;
    display:inline-block;
}

.reservation-pg h2 + p a br{
    display:none;
}


.related-products-sec h2 {
    color: var(--color-dark-bg);
    font-size: 40px;
}

.related-products-sec .owl-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.related-products-sec .owl-carousel .owl-item {
    display: flex;
    height: auto !important;
}

.related-products-sec .owl-carousel .item, 
.related-products-sec .owl-carousel .card {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}


.related-products-sec .food-card{
    box-shadow: none;
}
.related-products-sec .food-card:hover {
    transform: translateY(0px);
}
.related-products-sec .card-desc {
    font-size: 24px;
}


.order-collect-sec {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding:40px 0;
    width: 100%;
    max-width: 900px;
    box-sizing: border-box;
    margin: 0 auto;
}

.order-collect-sec .order-box {
    background-color: #c9353e;
    color: white;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    line-height: 1.2;
    width: 190px;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 40px;
}

.order-collect-sec .content {
    color: white;
    text-align: center;
    flex-grow: 1;
}

.order-collect-sec .main-text {
    font-size: 36px;
    line-height: 48px;
    margin: 0 0 15px 0;
    font-weight: normal;
}

.order-collect-sec .discount {
    color: #c9353e;
    font-style: italic;
    font-family: "Georgia", serif;
    font-size: 65px;
}

.order-collect-sec .sub-text {
    font-size: 26px;
    margin: 0;
    font-weight: normal;
}

.order-collect-sec .phone-number a {
    color: #c9353e;
}

@media (max-width: 768px) {
    .order-collect-sec {
        flex-direction: column;
        padding: 30px 20px;
    }

    .order-collect-sec .order-box {
        margin-right: 0;
        margin-bottom: 25px;
        width: 180px;
        height: 160px;
        font-size: 24px;
    }
.order-collect-sec .discount {
    font-size: 50px;
}
    .order-collect-sec .main-text {
        font-size: 28px;
    }

    .order-collect-sec .sub-text {
        font-size: 18px;
    }
}






















