﻿

@font-face {
    font-family: 'Inter-Regular';
    src: url('../Fonts/Inter/Inter_28pt-Regular.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: 'Inter-SemiBold';
    src: url('../Fonts/Inter/Inter_18pt-SemiBold.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: 'CormorantGaramond-Regular';
    src: url('../Fonts/Cormorant_Garamond/CormorantGaramond-Regular.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
}
.captcha-row {
        align-items: self-start !important;
}
.floatingcart {
    position: fixed;
    Right: 15px;
    top: 300px;
    z-index: 1021;
    /*border-radius: 50%;*/
    background: #4A1420;
    /* background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);*/
    padding: 10px;
    border: 2px solid #fff;
    scale: 0.9;
}

.cart-item-number {
    background: #fff;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    color: #000;
    display: block;
    position: absolute;
    top: -12px !important;
    right: -10px !important;
    font-weight: bold;
    font-size: 14px;
}
a:hover .cart-item-number {
    color: #000;
}
/* ============ RESET ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --header-h: 150px;
    --header-h-mobile: 64px;
    --overlap-h: var(--header-h);
    --red: #CC0D29;
    --red-dark: #6e0001;
    --gold-dark: #df6c11;
    --ink: #201414;
    --ink-soft: #6b5f5f;
    /*--cream: #FBF4E9;*/
    --cream-alt: #F3E9D8;
    --border: #e7ddce;
    --font-head: "CormorantGaramond-Regular", serif;
    --font-body: "Inter-Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body-bold: "Inter-SemiBold";
    --radius: 14px;
    --ink: #1c1410;
    --char: #221815;
    --tomato: #3C0E1A;
    --tomato-deep: #4A1420;
    --basil: #4C6B45;
    --gold: #D9A441;
    --line: rgba(28,20,16,0.12);
    --shadow: 0 20px 50px -25px rgba(28,20,16,0.45);
    --cream: #FAF1DC;
    --cream-2: #F7ECD3;
    --burgundy: #3C0E1A;
    --burgundy-2: #4A1420;
    --charcoal: #2A211D;
    --charcoal-soft: #5A4E47;
    --gold: #C89A4B;
    --gold-light: #D9B876;
    --white: #FFFFFF;
    --border-soft: rgba(42,33,29,0.12);
    --radius-md: 6px;
    --radius-lg: 10px;
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    margin-bottom: 0px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}
.eyebrow {
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--white);
    font-weight: bold;
    margin: 0 0 14px;
}

.eyebrow-dark {
    color: var(--cream);
}

.eyebrow-gold {
    color: var(--cream);
}
/*.eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.6rem;
}

    .eyebrow.center {
        text-align: center;
    }

.section-title {
    font-family: var(--font-head);
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

    .section-title.center {
        text-align: center;
    }*/

/* ============ BUTTONS ============ */
.btn {
   
}
.custombtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    color: #fff !important;
}
.btn--sm {
    padding: 0.55rem 1.2rem;
    font-size: 0.82rem;
}

.btn__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn--primary {
    color: #fff;
    font-size: 14px;
    padding: 12px 26px;
    box-shadow: var(--shadow);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #fff;
    transition: transform .15s ease, background .15s ease;
    border-radius: 0px;
    font-weight: 100;
}

    .btn--primary:hover {
        background: #fff !important;
        color: var(--burgundy) !important;
        border: 1px solid #fff;
        /*transform: translateY(-1px);*/
    }

.btn--outline {
    background: transparent !important;
    color: #fff !important;
    border: 1.5px solid rgba(255,255,255,0.6);
}

    .btn--outline:hover {
        background: rgba(255,255,255,0.12);
        transform: translateY(-3px);
    }

.btn--outline-light {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.7);
}

    .btn--outline-light:hover {
        background: #fff;
        color: var(--red-dark);
    }

.btn--dark {
    background: var(--ink);
    color: #fff;
}

    .btn--dark:hover {
        background: var(--red-dark);
        transform: translateY(-3px);
    }

.btn--outline-dark {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--border);
}

    .btn--outline-dark:hover {
        background: var(--ink);
        color: #fff;
        border-color: var(--ink);
        transform: translateY(-3px);
    }

/* ============ TOP BAR ============ */
.topbar {
    /* background: var(--char);*/
    color: #EFE6DA;
    font-size: 13.5px;
    padding: 4px 25px;
    position: relative;
    z-index: 2;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

    .topbar .wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 40px;
        /*max-width: 1280px;*/
        margin: 0 auto;
        padding: 0;
    }

    .topbar .contact {
        display: flex;
        gap: 22px;
        opacity: 0.9;
    }

    .topbar .socials {
        display: flex;
        gap: 14px;
        align-items: center;
    }

        .topbar .socials a {
            width: 26px;
            height: 26px;
            
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }
        .topbar .socials a svg{
            width: 26px;
            height: 26px;
           
        }

/* ============ HEADER ============ */
.site-header {
    position: relative;
    z-index: 100;
    
    display: flex;
    align-items: center;
    background: transparent;
    box-shadow: none;
    transition: background 0.3s ease, box-shadow 0.3s ease, min-height 0.3s ease;
    padding: 10px 25px !important;
}

.site-header.is-scrolled {
   /* background: #ffffff;
    box-shadow: 0 2px 18px -6px rgba(32, 20, 20, 0.15);*/
}

.site-header__inner {
    /*max-width: 1280px;*/
    margin: 0 auto;
    /* padding: 0.85rem 5vw;*/
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0 !important; 
    justify-content: space-between;
}

.site-header__inner {
    width: 100%;
    transition: padding 0.3s ease;
}

.site-header.is-scrolled .site-header__inner {
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
}

.site-header .brand__logo {
    transition: width 0.3s ease, height 0.3s ease;
}

.site-header.is-scrolled .brand__logo {
    /*width: 37px !important;
    height: 34px !important;*/
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-left: -25%;
}

.brand__logo {
    /*width: 42px;
    height: 42px;*/
    object-fit: contain;
}

.brand__logo {
    /*width: 56px;
    height: 52px;*/
}

.brand__logo--desktop {
    display: block;
}

.brand__logo--mobile {
    display: none;
}

.brand__text {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    transition: color 0.3s ease;
}

    .brand__text em {
        font-style: italic;
        color: var(--red);
    }

.site-header.is-scrolled .brand__text {
    color: var(--ink);
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

    .nav__list > li > a {
        font-size: 1rem;
       
        color: #fff;
        transition: color 0.3s ease;
        padding: 0.4rem 0;
        position: relative;
    }

        .nav__list > li > a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 0;
            height: 2px;
            background: var(--red);
            transition: width 0.25s ease;
        }

        .nav__list > li > a:hover::after,
        .nav__list > li > a.active::after {
            width: 100%;
        }

        .nav__list > li > a:hover,
        .nav__list > li > a.active {
            color: var(--red);
        }

.site-header.is-scrolled .nav__list > li > a {
    color: var(--red);
}

    .site-header.is-scrolled .nav__list > li > a:hover,
    .site-header.is-scrolled .nav__list > li > a.active {
        color: var(--red);
    }

.has-dropdown {
    position: relative;
}

.customdropdown {
    position: absolute;
    top: 130%;
    left: 0;
    min-width: 190px;
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
}

.has-dropdown:hover .customdropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.customdropdown li a {
    display: block;
    padding: 0.55rem 0.8rem;
    border-radius: 6px;
    font-size: 1rem;
    /*font-weight: 600;*/
    color: #000;
}

    .customdropdown li a:hover {
        background: var(--cream-alt);
        color: var(--red);
    }

.header__cta {
    flex-shrink: 0;
}

/*.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
}

    .nav-toggle span {
        display: block;
        width: 100%;
        height: 2.5px;
        background: #ffffff;
        transition: background 0.3s ease, transform 0.25s ease, opacity 0.25s ease;
        border-radius: 2px;
        transition: all 0.25s ease;
    }

    .nav-toggle.is-open span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }

    .nav-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.is-open span:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }*/
.nav-toggle {
    display: none;
    position: relative;
    z-index: 1002; /* stay above .nav and .nav-backdrop */
    width: 22px;
    height: 23px;
    background: transparent;
    border: none;
    cursor: pointer;
    /*display: inline-flex;*/
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    color: #fff; /* <-- explicit, so currentColor below actually resolves */
}

    .nav-toggle span {
        display: block;
        height: 2px;
        width: 100%;
        background-color: currentColor;
        border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .nav-toggle.is-open span:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
            background: #000;
    }

    .nav-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.is-open span:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
            background: #000;
    }

.site-header.is-scrolled .nav-toggle span {
    background: var(--ink);
}

/* ============ BACK TO TOP ============ */
.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 90;
}

    .back-to-top.is-visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .back-to-top:hover {
        background: var(--red-dark);
        color: #fff;
    }

@media (max-width: 1299px) {
    #siteHeader, .topbar {
        padding: 5px 10px !important;
    }
}
    @media (max-width: 991px) {
        .nav-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(15,8,8,0.5);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease;
            z-index: 98;
        }

            .nav-backdrop.is-open {
                opacity: 1;
                visibility: visible;
            }

        body.nav-scroll-lock {
            overflow: hidden;
        }

        .nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: min(320px, 82vw);
            height: 100vh;
            background: #fff;
            padding: 6rem 2rem 2rem;
            box-shadow: -12px 0 30px rgba(0,0,0,0.15);
            transition: right 0.3s ease;
            z-index: 99;
            overflow-y: auto;
        }

            .nav.is-open {
                right: 0;
            }

        .nav__list {
            flex-direction: column;
            align-items: flex-start;
            gap: 1.1rem;
        }

        .has-dropdown {
            width: 100%;
        }

        .customdropdown {
            position: static;
            opacity: 1;
            visibility: visible;
            transform: none;
            box-shadow: none;
            display: none;
            padding-left: 0.8rem;
            margin-top: 0.5rem;
        }

        .has-dropdown.is-open .dropdown {
            display: block;
        }

        .nav-toggle {
            display: flex;
        }

        .header__cta {
            display: none;
        }

        /* Mobile header: never transparent, always solid white like the scrolled state */
        .site-header {
            box-shadow: 0 2px 18px -6px rgba(32, 20, 20, 0.15);
        }

            .site-header .brand__text {
                color: var(--ink);
            }

            .site-header .nav__list > li > a {
                color: var(--ink);
            }

                .site-header .nav__list > li > a:hover,
                .site-header .nav__list > li > a.active {
                    color: var(--red);
                }

            .site-header .nav-toggle span {
                background: #fff;
            }

        /* Mobile logo swap */
        .brand__logo--desktop {
            display: none;
        }

        .brand__logo--mobile {
            display: block;
            width: 175px;
            /*height: 100px;*/
            object-fit: contain;
        }

        .site-header {
            min-height: var(--header-h-mobile);
        }
    }

    @media (max-width: 720px) {
        .topbar__inner {
            font-size: 1rem;
        }
    }

    @media (max-width: 576px) {
        .topbar__inner {
            flex-direction: column;
            /* text-align: left; */
            align-items: self-start;
        }
        .nav {
            /*top: 87px;*/
        }
        .topbar .wrap {
            align-items: flex-start;
            text-align: left;
            height: auto;
            flex-direction: column;
            gap: 5px;
        }
        .topbar .contact {
            flex-direction: column;
            gap: 5px;
        }
    }

    @media (max-width: 480px) {
       
    }

    @media (max-width: 1199px) {
        .site-header__inner {
            gap: 1rem;
        }
    }

    @media (max-width: 424px) {
       
    }

    .dropdownbtn {
        display: inline-block;
        font-weight: 400;
        line-height: 1.5;
        color: #212529;
        text-decoration: none;
        vertical-align: middle;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
        background-color: transparent;
        border: 1px solid transparent;
        padding: .375rem .75rem;
        font-size: 1rem;
        border-radius: .25rem;
        transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    }

/* ============================================================
   HERO SLIDER  (_HomePageSlider.cshtml)
   ============================================================ */

.wrap {
   /* max-width: 1180px;*/
    margin: 0 auto;
    padding: 0 10px;
}
.cta-btn {
   
    color: #fff;
    /*  font-weight: 700;*/
    font-size: 14px;
    padding: 13px 34px;
    border-radius: 0px;
    box-shadow: var(--shadow);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #fff;
    transition: transform .15s ease, background .15s ease;
}

    .cta-btn:hover {
        background: #fff !important;
        color: var(--burgundy) !important;
        border: 1px solid #fff;
    }
.menubtn, .onlinebtn {
    color: #fff !important;
    transform: translateY(-1px);
}

@media(max-width:992px) {
    .brand {
       margin-left: 0px;
    }
}

    /* ============================================================
   End : HERO SLIDER  (_HomePageSlider.cshtml)
   ============================================================ */

/* ==========================================================
   OUR STORY
   ========================================================== */
.story {
    background: var(--cream);
    /*padding: 110px 24px;*/
}

.story-inner {
   
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 40px;
    align-items: center;
}

.story-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.story-content {
    text-align: center;
    padding: 100px 10px;
}

    .story-content h2 {
        font-size: clamp(28px,3.2vw,40px);
        color: var(--charcoal);
        line-height: 1.15;
        margin-bottom: 26px;
    }

    .story-content p {
        font-size: 14.5px;
        line-height: 1.85;
        color: var(--charcoal-soft);
        margin-bottom: 20px;
        font-weight: 300;
    }

    .story-content .btn {
        margin-top: 12px;
    }
.story-image-left img{
    border-radius: 0 0 20px 20px;
}
.story-image-right {
    position: relative;
  
}
    .story-image-right img {
        position: absolute;
        bottom: 0;
        border-radius: 20px 20px 0 0;
    }
.ourstoryheader {
    color: var(--burgundy);
}
/* ==========================================================
   WHAT WE OFFER
   ========================================================== */
.offer {
    background: var(--burgundy);
    padding: 110px 24px;
}

.offer-inner {
    margin: 0 auto;
}

.offer-heading {
  
    margin: 0 auto 60px;
    
}

    .offer-heading h2 {
        font-size: clamp(30px,3.6vw,44px);
        color: var(--gold-light);
        margin-bottom: 20px;
        line-height: 1.15;
        font-weight: 100;
    }

        .offer-heading h2 em {
            color: #fff;
            font-style: italic;
        }

.offer-sub {
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
}

.offer-cards {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 26px;
}

.offer-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.offer-card-img {
    height: 180px;
    overflow: hidden;
}

    .offer-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s ease;
    }

.offer-card:hover .offer-card-img img {
    transform: scale(1.06);
}

.offer-card-body {
    padding: 26px 22px 30px;
}

.offer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--burgundy);
    color: var(--gold-light);
    margin-bottom: 16px;
}
.homeicon {
    filter: none !important;
}
    .homeicon svg {
        color: var(--cream);
    }
.offer-card-body h3 {
    font-size: 19px;
    color: var(--charcoal);
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.offer-card-body p {
    font-size: 13.5px;
    line-height: 1.65;
    color: #000;
    font-weight: 300;
}
.offer-card-icon {
    height:26px;
    width:42px;
    background: url('../Images/Icons/ServiceIcon.png');
    /*filter: invert(1);*/
}
.orderonline {
   background-size: 180px 100%;
    background-position: 129px 100%;
}
.catering {
       background-size: 193px 100%;
    background-position: 93px 100%;
}
.tablebooking {
      background-size: 164px 100%;
    background-position: -125px 100%;
    background-repeat: no-repeat;
}
/* ==========================================================
   GALLERY
   ========================================================== */
.gallery {
    background: var(--cream);
    padding: 110px 24px;
}

.gallery-inner {
    margin: 0 auto;
}

.gallery-heading {
    max-width: 620px;
    margin-bottom: 50px;
}

    .gallery-heading h2 {
        font-size: clamp(30px,3.6vw,44px);
        color: var(--charcoal);
        margin-bottom: 18px;
    }

        .gallery-heading h2 em {
            font-style: italic;
            color: var(--burgundy);
        }

    .gallery-heading p {
        font-size: 14.5px;
        /*color: var(--charcoal-soft);*/
        color: #000;
        line-height: 1.7;
        font-weight: 300;
    }

.gallery-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 16px;
    height: 560px;
}

.gallery-large {
    grid-row: 1 / 3;
    grid-column: 1;
}

    .gallery-large img, .gallery-small img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: var(--radius-md);
        transition: transform .5s ease;
    }

    .gallery-large:hover img, .gallery-small:hover img {
        transform: scale(1.03);
    }

.gallery-large, .gallery-small {
    overflow: hidden;
    border-radius: var(--radius-md);
}
/* ==========================================================
   TESTIMONIALS
   ========================================================== */
.testimonials {
    background: var(--burgundy);
    padding: 110px 24px;
    text-align: center;
}

.testimonials-inner {
    max-width: var(--container);
    margin: 0 auto;
}

.testimonials h2 {
    font-size: clamp(30px,3.6vw,44px);
   
    margin-bottom: 56px;
    color: var(--gold-light);
}

    .testimonials h2 em {
        color: #fff;
        font-style: italic;
    }

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 26px;
}

.testimonial-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 34px 30px;
    text-align: left;
}

.testimonial-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 18px;
}

.stars {
    color: var(--gold);
    letter-spacing: 2px;
    font-size: 14px;
}

.quote-mark {
    font-family: var(--font-serif);
    font-size: 44px;
    color: var(--burgundy);
    opacity: .25;
    line-height: .6;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 17px;
    line-height: 1.6;
    color: var(--charcoal);
    margin-bottom: 22px;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal);
}

.testimonial-meta {
    font-size: 12.5px;
    color: var(--charcoal-soft);
    margin-top: 2px;
}


    /* ===== Footer / CTA + info ===== */
    .cta-band {
        background: var(--tomato);
        color: #fff;
        padding: 50px 0 40px;
    }

        .cta-band .wrap {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
        }

        .cta-band h3 {
            font-size: 26px;
            max-width: 440px;
        }

        .cta-band .btn-white {
            background: #fff;
            color: var(--tomato-deep);
            font-weight: 800;
            padding: 14px 26px;
            border-radius: 999px;
        }

footer {
    background: var(--cream-2);
    color: #000;
    padding: 80px 0 0;
}

    .foot-grid {
        display: grid;
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
        gap: 40px;
        padding-bottom: 60px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    @media (max-width:576px) {
        .cta-band .wrap {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
    }

    @media (max-width:1199px) {
        .foot-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width:520px) {
        .foot-grid {
            gap: 20px;
            grid-template-columns: 1fr;
        }
    }

footer h4 {
    color: var(--burgundy);
    font-size: 14px;
    letter-spacing: 0.06em;
    /*text-transform: uppercase;*/
    margin-bottom: 18px;
    font-weight: bold;
}

    footer .fbrand {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
    }

    footer p {
        font-size: 14px;
        line-height: 1.7;
        max-width: 250px;
    }

    footer ul {
        list-style: none;
        display: grid;
        gap: 5px;
    }

        footer ul a {
            font-size: 14px;
        }

            footer ul a:hover {
                color: var(--burgundy);
            }

    #logoutButton {
        background: none;
        color: inherit;
        border: 0;
        font-size: 14px;
    }

        #logoutButton:hover {
            color: var(--burgundy);
        }

    .bottom-bar {
        padding: 22px 0;
        display: flex;
        justify-content: space-between;
        font-size: 14px;
        color: #000;
        flex-wrap: wrap;
        gap: 10px;
    }

footer a:hover {
    color: var(--burgundy);
}

    @media (max-width:1199px) {
        .intro {
            padding: 60px 0 70px;
        }

        .features {
            padding: 0 0 60px;
        }

        .menu-section {
            padding: 60px 0;
        }

       

        /*.testimonial {
            padding-bottom: 50px;
        }*/

        footer {
            padding: 60px 0 0;
        }

        .foot-grid {
            padding-bottom: 0px;
        }
    }


    @media (max-width:576px) {
        .intro {
            padding: 60px 0 70px;
        }

        .features {
            padding: 0 0 60px;
        }

        .menu-section {
            padding: 60px 0;
        }

        .story {
            padding: 60px 0;
            padding-bottom: 40px;
        }

       /* .testimonial {
            padding-bottom: 50px;
        }*/

        footer {
            padding: 60px 0 0;
        }

        .foot-grid {
            padding-bottom: 0px;
        }
    }


    /* For AIC */
    .headeraddress {
        width: auto !important;
        border: NONE !important;
        color: #A1A1A0;
    }

        .headeraddress:hover {
            color: #fff;
        }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
    .story-inner {
        grid-template-columns: 1fr;
    }

    .story-image img {
        height: 320px;
    }
    .story-image-left img {
        border-radius: 0;
    }

    .story-image-right {
        position: relative;
    }

        .story-image-right img {
            position: relative;
           
            border-radius: 0;
        }
    .story-content {
        order: -1;
        padding: 0;
    }
    .story {
        padding: 70px 20px;
    }

    .offer-cards {
        grid-template-columns: repeat(2,1fr);
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        height: auto;
    }

    .gallery-large {
        grid-column: 1 / 3;
        grid-row: auto;
        height: 340px;
    }

    .gallery-small {
        height: 220px;
    }

    .testimonial-cards {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 860px) {
    .main-nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-main-inner {
        grid-template-columns: auto 1fr auto;
    }

    .logo {
        justify-self: start;
    }

    .mobile-nav.open {
        display: flex;
    }

    .header-top-inner {
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .hero {
        height: 82vh;
        min-height: 520px;
    }

    .story {
        padding: 70px 20px;
    }

    .offer, .testimonials {
        padding: 70px 20px;
    }

    .gallery {
        padding: 70px 20px;
    }

    .testimonials {
        padding: 70px 20px !important;
    }

    .offer-cards {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-large {
        grid-column: 1;
        height: 280px;
    }

    .gallery-small {
        height: 200px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .header-top-right {
        gap: 12px;
    }
}


.float-left {
    float: left;
}
.float-right {
    float: right;
}

@media (max-width: 768px) {
    .bottom-bar {
            flex-direction: column;
    }
}