/* ************************************************ */
/* Global CSS */
/* ************************************************ */

/* Header CSS */
/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/

body,
html {
    /* reset margin and padding so there's no gap between the nav and the screen edges */
    margin: 0;
    padding: 0;
}

svg {
    image-rendering: crisp-edges; /* Improve image rendering quality */
}

/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
    body.cs-open {
        overflow: hidden;
    }
    body.cs-open #cs-navigation:after {
        width: 100%;
        opacity: 1;
    }
    body.scroll #cs-navigation:after {
        width: 100%;
    }
    #cs-navigation {
        width: 100%;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        position: fixed;
        z-index: 10000;
    }
    #cs-navigation:before {
        /* mobile nav overlay on open */
        content: "";
        width: 100%;
        height: 0vh;
        background: rgba(0, 0, 0, 0.6);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        position: absolute;
        display: block;
        top: 100%;
        right: 0;
        z-index: -1100;
        opacity: 0;
        transition:
            height 0.5s,
            opacity 0.5s;
    }
    #cs-navigation:after {
        /* on scroll overlay */
        content: "";
        width: 0%;
        height: 100%;
        background: #1a1a1a;
        opacity: 0.8;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        z-index: -1;
        transition:
            width 0.3s,
            opacity 0.3s;
    }
    #cs-navigation.cs-active:before {
        height: 150vh;
        opacity: 1;
    }
    #cs-navigation.cs-active .cs-ul-wrapper {
        opacity: 1;
        transform: scaleY(1);
        transition-delay: 0.15s;
    }
    #cs-navigation.cs-active .cs-li {
        transform: translateY(0);
        opacity: 1;
    }
    #cs-navigation .cs-container {
        width: 100%;
        padding: 1rem;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    #cs-navigation .cs-logo {
        width: 9.1875rem;
        height: auto;
        margin: 0 auto 0 0;
        padding: 0;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 10;
    }
    #cs-navigation .cs-logo img {
        width: 140px;
        height: auto;
        object-fit: contain;
    }
    #cs-navigation .cs-toggle {
        width: 3.5rem;
        height: 3.5rem;
        margin: 0 0 0 auto;
        background-color: #484848;
        border: none;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #cs-navigation .cs-active .cs-line1 {
        top: 50%;
        transform: translate(-50%, -50%) rotate(225deg);
    }
    #cs-navigation .cs-active .cs-line2 {
        top: 50%;
        transform-origin: center;
        transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
    }
    #cs-navigation .cs-active .cs-line3 {
        bottom: 100%;
        opacity: 0;
    }
    #cs-navigation .cs-box {
        /* 24px - 28px */
        width: clamp(1.5rem, 2vw, 1.75rem);
        height: 1rem;
        position: relative;
    }
    #cs-navigation .cs-line {
        width: 100%;
        height: 2px;
        border-radius: 2px;
        background-color: #fafbfc;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    #cs-navigation .cs-line1 {
        top: 0;
        transform-origin: center;
        transition:
            transform 0.5s,
            top 0.3s,
            left 0.3s;
        animation-duration: 0.7s;
        animation-timing-function: ease;
        animation-fill-mode: forwards;
        animation-direction: normal;
    }
    #cs-navigation .cs-line2 {
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
        transition:
            top 0.3s,
            left 0.3s,
            transform 0.5s;
        animation-duration: 0.7s;
        animation-timing-function: ease;
        animation-fill-mode: forwards;
        animation-direction: normal;
    }
    #cs-navigation .cs-line3 {
        bottom: 0;
        transition:
            bottom 0.3s,
            opacity 0.3s;
    }
    #cs-navigation .cs-ul-wrapper {
        width: 100%;
        height: auto;
        padding-bottom: 3rem;
        opacity: 0;
        background-color: #1a1a1a;
        box-shadow: inset rgba(0, 0, 0, 0.2) 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 0 0 0;
        width: 100%;
        height: auto;
        max-height: 65vh;
        overflow: scroll;
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
    }
    #cs-navigation .cs-li {
        width: 100%;
        text-align: center;
        list-style: none;
        margin-right: 0;
        /* transition from these values */
        transform: translateY(-4.375rem);
        opacity: 0;
        transition:
            transform 0.6s,
            opacity 0.9s;
    }
    #cs-navigation .cs-li:nth-of-type(1) {
        transition-delay: 0.05s;
    }
    #cs-navigation .cs-li:nth-of-type(2) {
        transition-delay: 0.1s;
    }
    #cs-navigation .cs-li:nth-of-type(3) {
        transition-delay: 0.15s;
    }
    #cs-navigation .cs-li:nth-of-type(4) {
        transition-delay: 0.2s;
    }
    #cs-navigation .cs-li:nth-of-type(5) {
        transition-delay: 0.25s;
    }
    #cs-navigation .cs-li:nth-of-type(6) {
        transition-delay: 0.3s;
    }
    #cs-navigation .cs-li:nth-of-type(7) {
        transition-delay: 0.35s;
    }
    #cs-navigation .cs-li:nth-of-type(8) {
        transition-delay: 0.4s;
    }
    #cs-navigation .cs-li:nth-of-type(9) {
        transition-delay: 0.45s;
    }
    #cs-navigation .cs-li:nth-of-type(10) {
        transition-delay: 0.5s;
    }
    #cs-navigation .cs-li:nth-of-type(11) {
        transition-delay: 0.55s;
    }
    #cs-navigation .cs-li:nth-of-type(12) {
        transition-delay: 0.6s;
    }
    #cs-navigation .cs-li:nth-of-type(13) {
        transition-delay: 0.65s;
    }
    #cs-navigation .cs-li-link {
        /* 16px - 24px */
        font-family: 'Merriweather Sans Regular', sans-serif;
        font-size: clamp(1rem, 2.5vw, 1.5rem);
        line-height: 1.2em;
        text-decoration: none;
        margin: 0;
        color: var(--bodyTextColorWhite);
        display: inline-block;
        position: relative;
    }
    #cs-navigation .cs-li-link.cs-active {
        color: var(--secondary);
    }
    #cs-navigation .cs-li-link:hover {
        color: var(--secondary);
    }
    #cs-navigation .cs-button-solid {
        display: none;
    }
}

/*-- -------------------------- -->
<---     Desktop Navigation     -->
<--- -------------------------- -*/

/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    body.scroll #cs-navigation:after {
        height: 100%;
    }
    #cs-navigation {
        width: 100%;
        padding: 0;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        position: fixed;
        z-index: 10000;
    }
    #cs-navigation:after {
        /* on scroll overlay */
        content: "";
        width: 100%;
        height: 100%;
        background: #1a1a1a;
        opacity: 0.8;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        z-index: -1;
        transition:
            height 0.3s,
            opacity 0.3s;
    }
    #cs-navigation .cs-container {
        width: 100%;
        /* same height as the cs-ul-wrapper */
        height: 5.8125rem;
        max-width: 80rem;
        margin: auto;
        padding: 0 1rem;
        /* prevents padding from affectin gheight */
        box-sizing: border-box;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
        position: relative;
    }
    #cs-navigation .cs-toggle {
        display: none;
    }
    #cs-navigation .cs-logo {
        width: 18.4%;
        max-width: 12.3125rem;
        height: 3.75rem;
        /* margin-right auto pushes everything away from it to the right */
        margin: 0 auto 0 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 100;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    #cs-navigation .cs-logo img {
        width: 100%;
        /* ensures the image never overflows the container. It stays contained within it's width and height and expands to fill it then stops once it reaches an edge */
    }
    #cs-navigation .cs-ul-wrapper {
        /* absolutely positioned to be dead center */
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    #cs-navigation .cs-ul {
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        /* 20px - 36px */
        gap: clamp(1.25rem, 2.6vw, 2.25rem);
    }

    #cs-navigation .cs-nav {
        margin-left: 15%; 
        display: flex;
        align-items: center;
        position: relative;
    }

    #cs-navigation .cs-li {
        list-style: none;
        padding: 2.25rem 0;
        /* prevent flexbox from squishing it */
        flex: none;
    }
    #cs-navigation .cs-li-link {
        /* 14px - 16px */
        font-family: 'Merriweather Sans Regular', sans-serif;
        font-size: 20px;
        line-height: 1.5em;
        text-decoration: none;
        margin: 0;
        color: var(--bodyTextColorWhite);
        display: block;
        position: relative;
        transition: color 0.3s;
    }
    /* #cs-navigation .cs-li-link:before {
        content: "";
        width: 0%;
        height: 1px;
        background: currentColor;
        opacity: 1;
        position: absolute;
        display: block;
        bottom: -2px;
        left: 0;
        transition: width 0.3s;
    } */
    #cs-navigation .cs-li-link:hover {
        color: var(--secondary);
    }
    #cs-navigation .cs-li-link:hover:before {
        width: 100%;
    }
    #cs-navigation .cs-li-link.cs-active {
        color: var(--secondary);
    }
    #cs-navigation .cs-li-link.cs-active:before {
        width: 100%;
    }
    #cs-navigation .cs-button-solid {
        font-size: 20px;
        /* 46px - 56px */
        line-height: clamp(2.875em, 5.5vw, 3.5em);
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        margin: 0;
        color: #5F464B;
        min-width: 9.375rem;
        padding: 0 2rem;
        background-color: #FFED66;
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
        transition: color 0.3s;
    }
    #cs-navigation .cs-button-solid:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: #fff;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width 0.3s;
    }
    #cs-navigation .cs-button-solid:hover {
        color: #1a1a1a;
    }
    #cs-navigation .cs-button-solid:hover:before {
        width: 100%;
    }
    #cs-navigation .cs-nav-button {
        line-height: 2.875rem;
    }
}

                                



/* Fonts */
@font-face {
    font-family: 'Haksen';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/haksen.otf");
}


@font-face {
    font-family: 'Abril Fatface';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/abril-fatface.woff2");
}

@font-face {
    font-family: 'Merriweather';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/merriweather-regular.woff");
}

@font-face {
    font-family: 'Merriweather Sans Regular';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/Merriweather-sans-regular.woff2");
}

@font-face {
    font-family: 'Merriweather Sans 300';
    font-style: thin;
    font-weight: 300;
    font-display: swap;
    src: url("../fonts/Merriweather-sans-300.woff2");
}

@font-face {
    font-family: 'Merriweather Sans 700';
    font-style: bold;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/Merriweather-sans-700.woff2");
}

/* Variables */
:root {
    --primary: #E84C3D;
    --primaryLight: #ffba43;
    --dark-blue: #1E3A5F;
    --text-purple: #5F464B;
    --text-grey: #484848;
    --secondary: #ffba43;
    --secondaryLight: #ffba43;
    --headerColor: #1a1a1a;
    --bodyTextColor: #4e4b66;
    --bodyTextColorWhite: #fafbfc;
    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
    --bodyFontSize: 1rem;
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}

/* Reset */
*, *:before, *:after {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

.header-bg-div {
    height: 107px;
    background-color: var(--primary);
}


header .cs-container {
    padding: 0 16px !important;
}

/* ************************************************ */
/* Typography */
/* ************************************************ */

h1 {
    font-family: 'Abril Fatface', Helvetica, sans-serif;
    font-weight: 300;
}

h2 {
    font-family: 'Merriweather';
    font-weight: 500;
    font-size: 40px;
    color: var(--text-purple);
    margin-top: 10px;

}

h3 {
    font-family: "Merriweather Sans Regular";
    font-weight: 700;
}

h4 {
    font-family: "Merriweather Sans Regular";
    font-weight: 400;
}

p {
    font-family: 'Merriweather', Helvetica, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    color: var(--text-grey);
}

a {
    text-decoration: none;
}


.page-title-label {
    color: #E84C3D;
    font-family: 'Merriweather Sans Regular', sans-serif;
    letter-spacing: 2px;;
}

.red {
    color: #E84C3D !important;
}

.red a:hover {
    color: var(--secondary);
}

.title-font {
    /* 39px - 80px */
    font-size: clamp(3.2rem, 6.4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.2em;
    text-align: left;
    width: 100%;
    max-width: 20ch;
    margin: 0 0 2rem 0;
    color: var(--bodyTextColorWhite);
    position: relative;
}

.bold {
    font-weight: 700 !important;
}

/* ************************************************ */
/* Layout */
/* ************************************************ */

/* Food Tiles */

/* Base styles for mobile-first approach */
.food-grid-section {
    padding-top: 40px;
    padding-bottom: 40px;
    /* padding: 40px 70px; */
    color: #5F464B;
}

.food-row {
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 1.875rem 10rem;
    margin-bottom: 1.5rem;
}

.food-tile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.food-tile img {
    width: 100%;
    height: auto;
}

.food-tile-title {
    margin: 0.5rem 0;
    font-family: 'Merriweather';
    font-size: 30px;
    font-weight: 700;
}

.food-grid-section h2 {
    font-size: 36px;
    font-family: 'Merriweather';
    font-weight: 700;
}

.food-tile-description {
    font-size: 1rem;
}

/* Styles for larger screens */
@media (min-width: 768px) {
    .food-row {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .food-tile {
        flex: 1 1 calc(33.333% - 1rem);
        max-width: calc(33.333% - 1rem);
    }
}

/* Styles for even larger screens */
@media (min-width: 1024px) {
    .food-tile {
        flex: 1 1 calc(25% - 1rem);
        max-width: calc(25% - 1rem);
    }
}


/* ************************************************ */
/* Header */
/* ************************************************ */

/* Base Styles */
#nav-bar-div {
    padding: 0 20px;
    position: absolute;
    z-index: 100;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-height: 4.5rem;
    margin-top: 20px;
    font-family: 'Merriweather Sans Regular', Sans-serif;
    font-weight: 400;
}

#nav-left, #nav-right {
    flex: 1;
}

#nav-right {
    text-align: right;
}

#nav-center {
    flex: 2;
    text-align: center;
    justify-content: center;
}

#header-logo {
    max-width: 225px;
}

.nav-ul {
    padding: 0;
}

.nav-li {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 40px;
    text-align: center;
}

.nav-li a {
    text-decoration: none;
    color: #ffffff;
}

.nav-li a:hover {
    color: #FFED66; 
}

#mobile-menu {
    display: none;
}

#hamburger {
    display: none; /* Hide by default */
}

#mobile-header-cta-btn {
    display: none; /* Hide by default */
}

/* Mobile Styles */

@media (max-width: 64rem) {
    #nav-bar-div {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin-top: 0;
    }

    #nav-left {
        width: 100%;
        align-content: center;
        padding-left: 20px;
        padding-top: 15px;
    }

    #nav-center {
        background-color: #ffffff;
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        overflow: hidden;
    }
    
    #nav-right {
        text-align: left;
        display: none;
    }

    #header-logo {
        max-width: 150px;
    }

    .nav-li {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-ul {
        width: 100%;
    }

    .nav-li a {
        display: block;
        color: var(--text-grey);
        font-family: 'Merriweather';
        background-color: #ffffff;
        font-size: 32px;
        width: 100%;
        text-align: center;
    }

    #hamburger {
        display: block;
        cursor: pointer;
        padding: 15px;
        position: absolute;
        top: 10px;
        right: 20px;
        z-index: 101;
    }

    #hamburger-icon {
        display: block;
        width: 30px;
        height: 3px;
        position: relative;
    }

    #hamburger-icon::before, 
    #hamburger-icon::after {
        content: '';
        width: 30px;
        height: 3px;
        background-color: #ffffff;
        position: absolute;
        left: 0;
        transition: 0.3s;
    }

    #hamburger-icon::before {
        top: -10px;
    }

    #hamburger-icon::after {
        top: 10px;
    }

    #mobile-menu:checked ~ nav{
        max-height: 100%;
    }

    #mobile-menu:checked + #hamburger #hamburger-icon {
        background: transparent;
    }

    #mobile-menu:checked + #hamburger #hamburger-icon::before {
        transform: rotate(45deg);
        top: 0;
    }

    #mobile-menu:checked + #hamburger #hamburger-icon::after {
        transform: rotate(-45deg);
        top: 0;
    }

    #mobile-menu:checked ~ #nav-bar-div #nav-center {
        display: flex;
    }

    #header-cta-btn {
        display: none;
    }

    #mobile-header-cta-btn {
        display: block;
        padding: 15px;
        width: 100%;
        text-align: center;
        background-color: #FFED66;
        color: #000;
    }
}


/*-- -------------------------- -->
<---          Footer            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {


    section {
        padding: 40px 70px;
    }

    #footer-1147 {
        font-family: 'Merriweather Sans Regular', sans-serif;
        padding: var(--sectionPadding);
        position: relative;
        z-index: 1;
        background-color: var(--dark-blue);
    }
    #footer-1147 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #footer-1147 .cs-top {
        width: 100%;
        /* 32px - 40px */
        margin-bottom: clamp(2rem, 4vw, 2.5rem);
        padding-bottom: clamp(2rem, 4vw, 2.5rem);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
    }
    #footer-1147 .cs-ul {
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        row-gap: 0.5rem;
        /* 28px - 40px */
        column-gap: clamp(1.75rem, 4vw, 2.5rem);
    }
    #footer-1147 .cs-li {
        list-style: none;
        font-family: 'Merriweather Sans Regular', sans-serif;
    }
    #footer-1147 .cs-link {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        text-decoration: none;
        margin: 0;
        color: #bababa;
        display: block;
        transition: color 0.3s;
    }
    #footer-1147 .cs-link:hover {
        color: var(--secondary);
    }
    #footer-1147 .cs-logo {
        width: 10.5rem;
        display: block;
    }
    #footer-1147 .cs-logo-img {
        max-width: 225px;
        display: block;
    }
    #footer-1147 .cs-bottom {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    #footer-1147 .cs-social {
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
    }
    #footer-1147 .cs-social-li {
        list-style: none;
        color: #ffffff;
    }
    #footer-1147 .cs-social-link {
        width: 2rem;
        height: 2rem;
        background-color: var(--primary);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: background-color 0.3s;
    }
    #footer-1147 .cs-social-link:hover {
        background-color: var(--secondary);
    }
    #footer-1147 .cs-social-link:hover .cs-social-icon {
        filter: grayscale(1) brightness(1);
        opacity: 1;
    }
    #footer-1147 .cs-social-icon {
        width: 0.75rem;
        height: auto;
        display: block;
    }
    #footer-1147 .cs-copyright {
        font-size: 1rem;
        line-height: 1.5em;
        margin: 0;
        color: #bababa;
        display: block;
    }
    #footer-1147 .cs-copyright-link {
        font-size: inherit;
        text-decoration: none;
        color: inherit;
        transition: color 0.3s;
    }
    #footer-1147 .cs-background {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    #footer-1147 .cs-background:before {
        /* background color overlay */
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 100%;
        background: #1a1a1a;
        opacity: 0.96;
        top: 0;
        left: 0;
        z-index: 1;
    }
    #footer-1147 .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) {
    #footer-1147 .cs-top {
        flex-direction: row;
        justify-content: space-between;
    }
    #footer-1147 .cs-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}


/* Buttons */

.yellow-btn {
    font-family: 'Haksen', sans-serif;
    font-size: 20px;
    background-color: #FFED66;
    text-align: center;
    color: #5F464B;
    border: 3px solid #5F464B;
    box-shadow: 6px 6px 0 #5F464B;
    padding: 16px 24px;
    margin: 20px 6px 0 0;
    transition: background-color 0.3s, box-shadow 0.3s; /* Smooth transition */
}

.yellow-btn a {
    font-family: 'Haksen';
    color: #5F464B;

}

.yellow-btn:hover {
    background-color: #FFF5A9;
    box-shadow: 0 8px 0 #4b2d2c, 8px 8px 15px rgba(0, 0, 0, 0.2); /* Softer shadow on hover */
    cursor: pointer;
}

#header-cta-btn {
    background-color: #FFED66;
    color: #5F464B;
    border: 3px solid  #5F464B;
    box-shadow: 6px 6px 0 #5F464B;
    padding: 16px 24px;
    text-decoration: none;
    margin-right: 6px;
    min-width: 225px;
}

#mobile-header-cta-btn {
    display: none;
}

/* Thank You Global */

#thank-you-message-div {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding-top: 42px;
    width: 100%;
}

#thank-you-checkmark {
    max-width: 200px;
}

/* ************************************************ */
/* Media Queries */
/* ************************************************ */

/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {

    section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .yellow-btn {
        width: 100%;
    }

    body.cs-open {
        overflow: hidden;
    }


    #cs-navigation {
        width: 100%;
        padding: 1.25rem 1rem;
        box-sizing: border-box;
        background-color: #1a1a1a;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        position: fixed;
        z-index: 10000;
    }

    #cs-navigation:before {
        content: "";
        width: 100%;
        height: 0vh;
        background: rgba(0, 0, 0, 0.6);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        position: absolute;
        display: block;
        top: 100%;
        right: 0;
        z-index: -1100;
        opacity: 0;
        transition: height 0.5s, opacity 0.5s;
    }

    #cs-navigation.cs-active:before {
        height: 150vh;
        opacity: 1;
    }

    #cs-navigation.cs-active .cs-toggle {
        transform: rotate(180deg);
    }

    #cs-navigation.cs-active .cs-ul-wrapper {
        opacity: 1;
        transform: scaleY(1);
        transition-delay: 0.15s;
    }

    #cs-navigation.cs-active .cs-li {
        transform: translateY(0);
        opacity: 1;
    }

    #cs-navigation .cs-container {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    #cs-navigation .cs-logo {
        width: 40%;
        max-width: 9.125rem;
        height: 100%;
        margin: 0 auto 0 0;
        padding: 0;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 10;
    }

    #cs-navigation .cs-logo img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    #cs-navigation .cs-toggle {
        width: 3.5rem;
        height: 3.5rem;
        margin: 0 0 0 auto;
        border-radius: 0.25rem;
        background-color: var(--primary);
        border: none;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: transform 0.6s;
    }

    #cs-navigation .cs-active .cs-line1 {
        top: 50%;
        transform: translate(-50%, -50%) rotate(225deg);
    }

    #cs-navigation .cs-active .cs-line2 {
        top: 50%;
        transform-origin: center;
        transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
    }

    #cs-navigation .cs-active .cs-line3 {
        bottom: 100%;
        opacity: 0;
    }

    #cs-navigation .cs-box {
        width: clamp(1.5rem, 2vw, 1.75rem);
        height: 1rem;
        position: relative;
    }

    #cs-navigation .cs-line {
        width: 100%;
        height: 2px;
        border-radius: 2px;
        background-color: #fafbfc;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    #cs-navigation .cs-line1 {
        top: 0;
        transform-origin: center;
        transition: transform 0.5s, top 0.3s, left 0.3s;
        animation-duration: 0.7s;
        animation-timing-function: ease;
        animation-fill-mode: forwards;
        animation-direction: normal;
    }

    #cs-navigation .cs-line2 {
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
        transition: top 0.3s, left 0.3s, transform 0.5s;
        animation-duration: 0.7s;
        animation-timing-function: ease;
        animation-fill-mode: forwards;
        animation-direction: normal;
    }

    #cs-navigation .cs-line3 {
        bottom: 0;
        transition: bottom 0.3s, opacity 0.3s;
    }

    #cs-navigation .cs-ul-wrapper {
        width: 100%;
        height: auto;
        padding-bottom: 2.4em;
        opacity: 0;
        background-color: #fff;
        box-shadow: inset rgba(0, 0, 0, 0.2) 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 0 0 0;
        width: 100%;
        height: auto;
        max-height: 65vh;
        overflow: scroll;
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
    }

    #cs-navigation .cs-li {
        width: 100%;
        text-align: center;
        list-style: none;
        margin-right: 0;
        transform: translateY(-4.375rem);
        opacity: 0;
        transition: transform 0.6s, opacity 0.9s;
    }

    #cs-navigation .cs-li:nth-of-type(1) {
        transition-delay: 0.05s;
    }

    #cs-navigation .cs-li:nth-of-type(2) {
        transition-delay: 0.1s;
    }

    #cs-navigation .cs-li:nth-of-type(3) {
        transition-delay: 0.15s;
    }

    #cs-navigation .cs-li:nth-of-type(4) {
        transition-delay: 0.2s;
    }

    #cs-navigation .cs-li:nth-of-type(5) {
        transition-delay: 0.25s;
    }

    #cs-navigation .cs-li:nth-of-type(6) {
        transition-delay: 0.3s;
    }

    #cs-navigation .cs-li:nth-of-type(7) {
        transition-delay: 0.35s;
    }

    #cs-navigation .cs-li:nth-of-type(8) {
        transition-delay: 0.4s;
    }

    #cs-navigation .cs-li:nth-of-type(9) {
        transition-delay: 0.45s;
    }

    #cs-navigation .cs-li:nth-of-type(10) {
        transition-delay: 0.5s;
    }

    #cs-navigation .cs-li:nth-of-type(11) {
        transition-delay: 0.55s;
    }

    #cs-navigation .cs-li:nth-of-type(12) {
        transition-delay: 0.6s;
    }

    #cs-navigation .cs-li:nth-of-type(13) {
        transition-delay: 0.65s;
    }

    #cs-navigation .cs-li-link {
        font-size: clamp(1rem, 2.5vw, 1.5rem);
        line-height: 1.2em;
        text-decoration: none;
        margin: 0;
        color: var(--headerColor);
        display: inline-block;
        position: relative;
    }

    /* #cs-navigation .cs-li-link.cs-active {
        color: var(--primary);
    } */

    #cs-navigation .cs-li-link:hover {
        color: var(--primary);
    }

    #cs-navigation .cs-button-solid {
        display: none;
    }
}

/* tablet */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    /* Your CSS styles for tablets here */
}

/* desktop */
@media only screen and (min-width: 64rem) {


    .yellow-btn {
        width: 280px;
    }


    /* Header */
    #nav-bar-div {
        padding: 0 70px;
    }
}



/* Social Component */
#social-section {
    background-color: rgba(255,249,229,.8);
    padding-top: 100px;
    padding-bottom: 100px;
}

#social-tile-wrapper {
    text-align: center;
}


@media only screen and (min-width: 0rem){

    .instagram-tile {
        max-width: 305px;
    }


}

@media only screen and (min-width: 64rem) {
    .instagram-tile {
        display: inline;
    }
    #social-tile-wrapper img:hover {
        opacity: 70%;
        transition-duration: 0.2s;
    }

    .social-tile-wrapper {
        display: inline;
    }


}
/* Location Component */

#location-section {
    padding-top: 200px;
    padding-bottom: 200px;
    background-image: url("../images/border.png");
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.1.5);
    background-blend-mode: darken;
}

#location-inner-wrapper {
    margin-top: 60px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    gap: 50px
}


@media only screen and (min-width: 0rem){



}

.location-component-iframe {
    width: 100%;
    height: 100%;
}

.half-div {
    width: 100%;
    height: 100% !important;
}

@media only screen and (min-width: 64rem) {
    #location-inner-wrapper {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 80px;
        margin-top: 0px;
        margin-bottom: 0px;
    }

    #location-section {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    #location-section p {
        max-width: 430px;

    }

    #location-left {
        margin-top: 0px;
    }
    
    #location-right {
        margin-bottom: 0px;
    }
}



/* Catering Section */

#catering-section {
    background-color: #FFF0DC;
}

#catering-inner-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    gap: 50px;
}

@media only screen and (min-width: 64rem) {
    #catering-inner-wrapper {
        display: flex;
        flex-direction: row;
        gap: 50px;
        padding: 30px;
        align-items: center;
    }
}



.location-iframe {
    height: 400px !important;
}