/*-- -------------------------- -->
<---       Cafe                 -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #RPsbs-580 {
        
    }
    #RPsbs-580 .cs-container,
    #RPsbsr-580 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 7vw, 4rem);
    }
    #RPsbs-580 .cs-content,
    #RPsbsr-580 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        max-width: 32.625rem;
        /* moved section padding to the .cs-content so we can have the cs-picture be full width on mobile without the padding preventing it from doing so */
        padding: var(--sectionPadding);
        padding-top: 0;
        /* prevents padding from affecting width and height */
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }

    #RPsbs-580 .cs-title,
    #RPsbsr-580 .cs-title {
        font-size: clamp(3.1375rem, 3.9vw, 8.0625rem);
    }

    #RPsbs-580 .cs-text,
    #RPsbsr-580 .cs-text {
        margin-bottom: 1rem;
    }
    #RPsbs-580 .cs-text:last-of-type,
    #RPsbsr-580 .cs-text:last-of-type {
        margin-bottom: 2rem;
    }
    #RPsbs-580 .cs-picture,
    #RPsbsr-580 .cs-picture {
        display: block;
        position: relative;
        width: 100%;
        height: 18.75rem;
    }
    #RPsbs-580 .cs-picture img,
    #RPsbsr-580 .cs-picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    #RPsbs-580 .cs-content .cs-text,
    #RPsbsr-580 .cs-content .cs-text {
        margin-bottom: 1rem;
    }

    .hours {
        list-style: none;
        margin-bottom: 2rem;
    }

    .hours-title {
        font-weight: bold;;
    }

    .hours .bold {
        font-weight: bold;
    }

    #RPsbs-580 .number,
    #RPsbsr-580 .number {
        text-decoration: none;
        color: var(--bodyTextColor);
        font-weight: bold;
        display: block;
        margin-top: .5rem;
        margin-bottom: .5rem;
    }

}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #RPsbs-580,
    #RPsbsr-580 {
        padding: var(--sectionPadding);
        padding-top: 10rem;
    }
    #RPsbs-580 .cs-container,
    #RPsbsr-580 .cs-container {
        flex-direction: row;
        justify-content: flex-start;
        /* 60px - 128px */
        gap: clamp(3.75rem, 10vw, 8rem);
    }
    #RPsbs-580 .cs-content,
    #RPsbsr-580 .cs-content {
        width: 53%;
        /* reset the padding, add the section padding back to the section container */
        padding: 0;
    }
    #RPsbs-580 .cs-picture,
    #RPsbsr-580 .cs-picture {
        width: 47vw;
        max-width: 30.875rem;
        /* 518px - 700px */
        height: clamp(25.375rem, 63vw, 29.75rem);
        /* 16px - 28px, added margin left and bottom to cs-picture so it pushes away by the same amount the yellow box element overlaps it left and bottom. This maintains consistent spacing left and bottom */
        margin: 0 0 clamp(1rem, 2.4vw, 1.75rem) clamp(1rem, 2.4vw, 1.75rem);
        position: relative;
    }
    #RPsbs-580 .cs-picture:before,
    #RPsbsr-580 .cs-picture:before {
        /* yellow box */
        content: "";
        width: 50%;
        height: 60%;
        background: var(--secondary);
        opacity: 1;
        display: block;
        position: absolute;
        /* 16px - 28px, wrapped in calc function to multiple by negative 1 and get a negative clamp value */
        bottom: calc(clamp(1rem, 2.4vw, 1.75rem) * -1);
        left: calc(clamp(1rem, 2.4vw, 1.75rem) * -1);
    }
}

/*-- -------------------------- -->
<---        Restaruant          -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #RPsbsr-580 {
        background-color: #f7f7f7;
        padding-top: 7rem; 
    }

    #RPsbsr-580 .cs-button-solid:first-of-type {
        margin-bottom: 1rem;
        margin-right: 1rem;
    }
    
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {

    #RPsbsr-580 {
        padding: var(--sectionPadding);
        padding-top: 10rem;
    }

    #RPsbsr-580 .cs-container {
        justify-content: flex-end;
    }
    #RPsbsr-580 .cs-content {
        /* sends it to the left in the first position */
        order: -1;
    }
    #RPsbsr-580 .cs-picture {
        /* 16px - 28px, added margin left and bottom to cs-picture so it pushes away by the same amount the yellow box element overlaps it left and bottom. This maintains consistent spacing left and bottom */
        margin: 0 clamp(1rem, 2.4vw, 1.75rem) clamp(1rem, 2.4vw, 1.75rem) 0;
    }
    #RPsbsr-580 .cs-picture:before {
        /* yellow box */
        content: "";
        width: 50%;
        height: 60%;
        background: var(--secondary);
        opacity: 1;
        display: block;
        position: absolute;
        left: auto;
        /* 16px - 28px, wrapped in calc function to multiple by negative 1 and get a negative clamp value */
        bottom: calc(clamp(1rem, 2.4vw, 1.75rem) * -1);
        right: calc(clamp(1rem, 2.4vw, 1.75rem) * -1);
    }
}

                                