/*-- -------------------------- -->
<---        Core Styles         -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0rem) {
  :root {
    /* Main Brand Pillars */
    --primary: #A34828;           /* Rich Cinnamon / Terracotta (Buttons & Main Accents) */
    --primaryLight: #2D4A43;      /* Deep Matte Sage Green (Pill-Link Backgrounds) */
    
    /* Supporting Brand Tones */
    --secondary: #1A1A1A;         /* Soft Charcoal Black (Instead of pure #000 for a more premium feel) */
    --secondaryLight: #FFBA43;    /* Toasted Saffron / Warm Mustard (Great for gold star ratings or warm accents) */
    
    /* Layout, Typography & Interface */
    --headerColor: #1A1A1A;       /* Deep Charcoal for Headings & Strong Typography */
    --bodyTextColor: #2B2521;     /* Deep Cocoa-Charcoal (Replaces CodeStitch's purple-gray for a warm, readable body copy) */
    --bodyTextColorWhite: #F5EFEB;/* Warm Biscuit Cream (Used for text sitting ON dark banners/buttons so it reads clearly) */
    /* 13px - 16px */
    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    /* 31px - 49px */
    --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
    --bodyFontSize: 1rem;
    /* 60px - 100px top and bottom */
    --sectionPadding: clamp(8rem, 7.82vw, 12rem) 1rem;
  }
  /* roboto-regular - latin */
  @font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: local(''), url('/assets/fonts/roboto-v29-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('/assets/fonts/roboto-v29-latin-regular.woff') format('woff');
    
    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  /* roboto-700 - latin */
  @font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: local(''), url('/assets/fonts/roboto-v29-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('/assets/fonts/roboto-v29-latin-700.woff') format('woff');
    
    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  /* roboto-900 - latin */
  @font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    src: local(''), url('/assets/fonts/roboto-v29-latin-900.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('/assets/fonts/roboto-v29-latin-900.woff') format('woff');
    
    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  body,
  html {
    margin: 0;
    padding: 0;
    font-size: 100%;
    font-family: 'Roboto', Arial, sans-serif;
    color: var(--bodyTextColor);
    overflow-x: hidden;
  }
  *,
  *:before,
  *:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    transition: background-color 0.3s;
  }
  .container {
    position: relative;
    width: 92%;
    margin: auto;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0;
    color: var(--headerColor);
  }
  p,
  li,
  a {
    font-size: 1rem;
    line-height: 1.5em;
    margin: 0;
  }
  p,
  li {
    color: var(--bodyTextColor);
  }
  a:hover,
  button:hover {
    cursor: pointer;
  }
  .cs-topper {
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: .1em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    display: block;
  }
  body.dark-mode .cs-topper {
    color: var(--secondary);
  }
  .cs-title {
    font-size: var(--headerFontSize);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
  }
  .cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: var(--bodyTextColor);
  }
  .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--primary);
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }
  .cs-button-solid:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width .3s;
  }
  .cs-button-solid:hover:before {
    width: 100%;
  }
  .skip {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1111111;
  }

.cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-align: center;
    text-decoration: none;
    min-width: 9.375rem;
    margin: 0;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    padding: 0 clamp(2rem, 4vw, 3rem);
    background-color: var(--primary);
    color: #fff;
    border-radius: 0.5rem;
    overflow: hidden;
    border: none;
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  .cs-button-solid:before {
    content: "";
    width: 0%;
    height: 100%;
    background: var(--primaryLight);
    opacity: 1;
    border-radius: 0.25rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  .cs-button-solid:hover:before {
    width: 100%;
  }
}
/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/
@media only screen and (max-width: 1023.5px) {
  body.cs-open {
    overflow: hidden;
  }
  body.scroll #cs-navigation:before {
    height: 100%;
  }
  #cs-navigation {
    width: 100%;
    box-sizing: border-box;
    padding: 0.75rem 1rem;
    background: var(--bodyTextColorWhite);
    position: fixed;
    z-index: 10000;
    transition: background-color 0.3s;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  #cs-navigation:before {
    content: "";
    width: 100%;
    height: 0%;
    background: var(--bodyTextColorWhite);
    opacity: 1;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: height 0.3s;
  }
  #cs-navigation:after {
    content: "";
    width: 100%;
    height: 0vh;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    display: block;
    position: absolute;
    top: 0%;
    right: 0;
    z-index: -1100;
    transition: height 0.5s, opacity 0.5s;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }
  #cs-navigation.cs-active {
    background-color: var(--bodyTextColorWhite);
  }
  #cs-navigation.cs-active:after {
    height: 150vh;
    opacity: 1;
  }
  #cs-navigation.cs-active .cs-ul-wrapper {
    opacity: 1;
    transform: scaleY(1);
  }
  #cs-navigation.cs-active .cs-li {
    opacity: 1;
    transform: translateY(0);
  }
  #cs-navigation .cs-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  #cs-navigation .cs-logo {
    width: auto;
    height: clamp(3.5rem, 5vw, 4.5rem);
    margin: 0 auto 0 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
  }
  #cs-navigation .cs-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

/* Safely vanishes the logo box completely while the mobile dropdown is open */
  #cs-navigation .cs-logo.cs-hide-logo {
    display: none !important;
  }

  #cs-navigation .cs-toggle {
    width: 3rem;
    height: 3rem;
    margin: 0 0 0 auto;
    background-color: var(--primary);
    border-radius: 50%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: transform 0.6s, box-shadow 0.3s;
    box-shadow: 3px 3px 0px var(--bodyTextColorCustom);
  }
  #cs-navigation .cs-toggle.cs-active {
    transform: rotate(180deg);
  }
  #cs-navigation .cs-active .cs-line1 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(225deg);
  }
  #cs-navigation .cs-active .cs-line2 {
    top: 50%;
    transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
  }
  #cs-navigation .cs-active .cs-line3 {
    opacity: 0;
    bottom: 100%;
  }
  #cs-navigation .cs-box {
    width: 1.5rem;
    height: 1rem;
    position: relative;
  }
  #cs-navigation .cs-line {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  #cs-navigation .cs-line1 {
    top: 0;
    transition: transform 0.5s, top 0.3s, left 0.3s;
  }
  #cs-navigation .cs-line2 {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: top 0.3s, left 0.3s, transform 0.5s;
  }
  #cs-navigation .cs-line3 {
    bottom: 0;
    transition: bottom 0.3s, opacity 0.3s;
  }
}

/*-- -------------------------- -->
<---   Mobile Navigation Menu   -->
<--- -------------------------- -*/
@media only screen and (max-width: 1023.5px) {
  #cs-navigation .cs-ul-wrapper {
    width: 100%;
    height: auto;
    padding-bottom: 3rem;
    opacity: 0;
    background-color: var(--headerBg);
    box-shadow: inset rgba(0, 0, 0, 0.05) 0px 8px 24px;
    overflow: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: -1;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s, opacity 0.3s;
  }
  
  #cs-navigation .cs-ul {
    margin: 0;
    padding: 3rem 1.5rem 0 1.5rem;
    width: 100%;
    box-sizing: border-box;
    height: auto;
    max-height: 75vh;
    overflow-y: auto;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem; /* Controls space between mobile button rows */
  }

  /* NEUTRALIZE DESKTOP DIVS ON MOBILE */
  /* This strips out the 50/50 desktop layout behavior so items stack vertically again */
  #cs-navigation .cs-nav-group {
    display: contents !important; 
  }

  #cs-navigation .cs-li {
    width: 100%;
    max-width: 20rem; /* Keeps the mobile pills from stretching too wide on tablet sizes */
    text-align: center;
    list-style: none;
    margin: 0;
    transform: translateY(-2rem);
    opacity: 0;
    transition: transform 0.5s, opacity 0.5s;
  }

  #cs-navigation .cs-ul .cs-nav-group:nth-child(1) .cs-li:nth-child(1) { transition-delay: 0.05s; }
  #cs-navigation .cs-ul .cs-nav-group:nth-child(1) .cs-li:nth-child(2) { transition-delay: 0.1s; }
  #cs-navigation .cs-ul .cs-nav-group:nth-child(2) .cs-li:nth-child(1) { transition-delay: 0.15s; }
  #cs-navigation .cs-ul .cs-nav-group:nth-child(2) .cs-li:nth-child(2) { transition-delay: 0.2s; }

  #cs-navigation .cs-li-link {
    font-size: 1.15rem;
    line-height: 1.2em;
    text-transform: uppercase;
    font-weight: 800;
    text-decoration: none;
    padding: 0.8rem 2rem;
    color: #ffffff;
    background-color: var(--secondary); /* Dark Charcoal */
    border-radius: 50px; /* Fully rounded mobile pills */
    display: block;
    position: relative;
    box-shadow: 3px 3px 0px var(--headerColor); /* Crisp flat 3D shadow */
    transition: background-color 0.3s, transform 0.2s;
  }

  /* Active / Tapped States on Mobile */
  #cs-navigation .cs-li-link.cs-active,
  #cs-navigation .cs-li-link:active {
    background-color: var(--primary); /* Cinnamon Red */
    color: #ffffff;
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0px var(--headerColor);
  }

  #cs-navigation .cs-button-solid {
    display: none;
  }
}
/*-- -------------------------- -->
<---    Desktop Navigation      -->
<--- -------------------------- -*/
@media only screen and (min-width: 1024px) {
  #cs-navigation {
    width: 100%;
    box-sizing: border-box;
    padding: 0 2rem;
    background: var(--bodyTextColorWhite);
    position: fixed;
    z-index: 10000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  
  #cs-navigation .cs-container {
    width: 100%;
    max-width: 85rem;
    height: 7rem;
    margin: auto;
    display: flex;
    justify-content: center; /* Forces structural center alignment */
    align-items: center;
    position: relative;
  }
  
  #cs-navigation .cs-toggle {
    display: none;
  }
  
  /* The Centered Logo Layer */
  #cs-navigation .cs-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: 4.5rem;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
  }
  #cs-navigation .cs-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  /* The Full Width Navigation Flex Engine */

/* Make both the left and right wrapper boxes take up exactly half the navbar width */
  #cs-navigation .cs-nav-group {
    display: flex;
    align-items: center;
    flex: 1; /* This is the secret—forces both sides to be mathematically identical in width */
    gap: 1.5rem; /* Controls the tight spacing between Home/About and Takeaway/Catering */
  }

#cs-navigation .cs-left-group {
    justify-content: flex-end;
    padding-right: 13rem; /* THIS CONTROLS THE LEFT ARROW GAP */
    box-sizing: border-box;
  }

#cs-navigation .cs-right-group {
    justify-content: flex-start;
    padding-left: 13rem;  /* THIS CONTROLS THE RIGHT ARROW GAP - MUST MATCH ABOVE */
    box-sizing: border-box;
  }

  #cs-navigation .cs-nav {
    width: 100%;
  }
  #cs-navigation .cs-ul-wrapper {
    width: 100%;
  }
  
  #cs-navigation .cs-ul {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }
  
  /* Make all list items equal in structural weight, but align them outward */
  #cs-navigation .cs-li {
    list-style: none;
    flex: none;
  }
  

  #cs-navigation .cs-ul .cs-li:nth-child(2),
  #cs-navigation .cs-ul .cs-li:nth-child(3) {
    margin: 0 !important;
  }

  /* Motu Style Links: Flat-Shadow Pill Buttons */
  #cs-navigation .cs-li-link {
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.5em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.6rem 1.4rem;
    color: #ffffff;
    background-color: var(--primaryLight);
    border-radius: 50px; /* Fully pill-shaped */
    border: none !important;
    display: block;
    position: relative;
    z-index: 1;
    text-shadow: none !important;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    box-shadow: 4px 4px 0px #63230E; /* Darker shade of your cinnamon */
  }
  

  /* Active / Hover State transformations */
  #cs-navigation .cs-li-link:hover {
    background-color: var(--primary);
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px var(--bodyTextColorCustom);
  }
  
  #cs-navigation .cs-li-link.cs-active {
    background-color: var(--primary);
    transform: translate(4px, 4px);
    box-shadow: 0px 0px 0px var(--bodyTextColorCustom);
  }
  
  /* Removing original background injection code from template */
  #cs-navigation:before,
  #cs-navigation .cs-li-link:before {
    display: none !important;
  }
}                                

/*-- -------------------------- -->
<---          Banner            -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #banner-712 {
    /* 175px - 200px top */
    padding: clamp(10.9375rem, 10vw, 12.5rem) 1rem 6.25rem;
    position: relative;
    z-index: 1;
  }
  #banner-712 .cs-container {
    text-align: center;
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
  }
  #banner-712 .cs-int-title {
    /* 39px - 61px */
    font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    margin: 0;
    color: var(--bodyTextColorWhite);
    position: relative;
  }
  #banner-712 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #banner-712 .cs-background:before {
    /* background color overlay */
    content: '';
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: .75;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #banner-712 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* Makes img tag act as a background image */
    object-fit: cover;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #banner-712 .cs-background:before {
    opacity: 1;
    background: linear-gradient(90.01deg, rgba(0, 0, 0, 0.9) 16.86%, rgba(0, 0, 0, 0) 100%);
  }
}
/*-- -------------------------- -->
<---           Footer           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #cs-footer-108 {
        /* 40px - 100px top and bottom */
        padding: clamp(2.5rem, 7.9vw, 6.25rem) 1rem;
        /* 40px - 50px */
        padding-bottom: clamp(2.5rem, 7.9vw, 3.125rem);
    }
    #cs-footer-108 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
    }
    #cs-footer-108 .cs-ul {
        /* 40px - 60px*/
        padding: 0 0 clamp(2.5rem, 4.7vw, 3.75rem);
        margin: auto;
        border-bottom: 1px solid #eff0f6;
    }
    #cs-footer-108 .cs-li {
        list-style: none;
        text-align: center;
        margin-bottom: 1.25rem;
    }
    #cs-footer-108 .cs-li:last-of-type {
        margin-bottom: 0;
    }
    #cs-footer-108 .cs-link {
        /* 16px - 20px */
        font-size: clamp(1rem, 1.55vw, 1.25rem);
        line-height: 1.5em;
        text-decoration: none;
        font-weight: 700;
        color: var(--bodyTextColor);
        position: relative;
    }
    #cs-footer-108 .cs-link:hover:before {
        width: 100%;
    }
    #cs-footer-108 .cs-link:before {
        /* top right box */
        content: "";
        width: 0%;
        height: 0.1875rem;
        background: var(--bodyTextColor);
        opacity: 1;
        position: absolute;
        display: block;
        bottom: -0.125rem;
        left: 0;
        transition: width 0.3s;
    }
    #cs-footer-108 .cs-copyright {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.6vw, 1rem);
        text-align: center;
        color: #a0a3bd;
        display: block;
        /* 20px - 28px */
        margin: clamp(1.25rem, 2.8vw, 1.75rem) auto 0;
    }
}
/* Tablet - 600px */
@media only screen and (min-width: 37.5rem) {
    #cs-footer-108 .cs-ul {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #cs-footer-108 .cs-li {
        /* 44px - 88px */
        margin: 0 clamp(2.75rem, 6.2vw, 5.5rem) 0 0;
    }
    #cs-footer-108 .cs-li:last-of-type {
        margin: 0;
    }
}

                                