:root {
    --site1: #D65F00;
    --site1Fade: #f0d2b9;
    --site2: #322E55;
    --site2Fade: #CED2DE;
    --site3: #c49a00;
    --site3Fade: #DAC06E;
    --copy: #535456;
    --background: #f1f1f1;
    --logo1: url('/files/e20e7070-cd01-4fea-b5c0-db15cda02bc2.png?width=120');
    --logo2_outline: url('/files/58a86e88-8f38-445c-8817-ce5b8da63bc9.png?width=160');
    --logo2: var(--logo2_outline);
    /* --logo2: url('/files/93deb011-0df9-466d-a62b-8f879b529f86.png?width=120'); */
    --logo3: url('/files/6d49515d-bd6a-4c6b-91cf-baa796b69c04.png?width=120');
    --baseHover: var(--site2);
    --baseColor: var(--site1);
    --fade: var(--site1Fade);
    --textOverBase: var(--background);
    --logoUrl: var(--logo1);
    --headerHeight: 8rem;
}
html {
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--background);
    color: var(--copy);
    padding-top: var(--headerHeight);
    font-family: "Montserrat", sans-serif;
    font-size: 14pt;
    display: flex;
    flex-direction: column;
}
main {
    flex-grow: 1;
}
.hidden-title {
    opacity: 0;
    pointer-events: none;
    height: 0;
    width: 0;
}
.modal-dialog-centered {
    justify-content: center;
}
body.site-1 {
    --baseHover: var(--site2);
    --baseColor: var(--site3);
    --fade: var(--site3Fade);
    --logoUrl: var(--logo3);
}
body.site-2 {
    --baseHover: var(--site1);
    --baseColor: var(--site2);
    --fade: var(--site2Fade);
    --logoUrl: var(--logo2);
}
body.site-3 {
    --baseColor: var(--site1);
    --fade: var(--site1Fade);
    --logoUrl: var(--logo1);
}

figure {
    height: 32rem;
    border-radius: 1rem;
    overflow: hidden;
}
img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

header#header {
    position: absolute;
    top: 0;
    height: var(--headerHeight);
    background: var(--background);
    width: 100vw;
    box-shadow: 0 0 4px #00000050;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    padding: 1rem 3rem;
    z-index: 100;
}
@media (min-width: 350px) {
    header#header {
        justify-content: center;
    }
}
@media (min-width: 992px) {
    header#header {
        justify-content: space-between;
    }
}
@media (min-width: 992px) {
    .header-ready header#header {
        height: 6rem;
        padding: .5rem 4rem;
        position: fixed;
        transform: translateY(-120%);
    }
    .header-active header#header {
        transition: .25s;
    }
    .header-active.up-scroll header#header {
        transform: translateY(0);
    }
}
.brand {
    position: relative;
    height: 100%;
}
header .brand {
    z-index: 1046;
}
.brand-logo {
    height: 100%;
    aspect-ratio: 1/1;
    background-image: var(--logoUrl);
    background-position: center;
    background-size: 95%;
    background-repeat: no-repeat;
}
header nav, header nav ul, #footer .footer-links {
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;  
    height: fit-content;
}
header nav ul li {
    padding: 0 .5rem;
    height: fit-content;
}
header nav ul a {
    color: var(--copy);
    text-decoration: none;
    font-size: 14pt;
}
header .header-links a {
    position: relative;
    font-size: 12pt;
    white-space: nowrap;
}

@media (min-width: 1200px) {
    header#header {
        padding: 1rem 4rem;
    }
    header nav ul li {
        padding: 0 1rem;
    }
    header .header-links a {
        font-size: 14pt;
    }
}
header .header-links a:not(.btn)::after {
    content: "";
    display: block;
    position: absolute;
    background: var(--baseColor);
    bottom: -4px;
    height: 2px;
    width: 0;
    left: 0;
    /* transform: translateX(-50%); */
    transition: .25s;
}
header .header-links a:hover, header .header-links a.active {
    color: var(--baseColor);
}
header .header-links a.active {
    pointer-events: none;
}
header .header-links a:hover::after, header .header-links a.active::after {
    width: 100%;
}

#locationSelector {
    position: relative;
    height: fit-content;
    width: 18rem;
    white-space: nowrap;
    padding: .75rem 5rem .75rem 1.5rem;
    max-height: 95%;
    background: var(--baseColor);
    margin-left: 2rem;
    border-radius: 2rem;
    color: var(--textOverBase);
    cursor: pointer;
}
#locationSelector::after {
    content: "";
    display: block;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(calc(-50% - .25rem)) rotate(45deg);
    height: 1rem;
    width: 1rem;

    border-bottom: 2px solid var(--textOverBase);
    border-right: 2px solid var(--textOverBase);
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;

    transition: .25s;
}
#locationSelector.show::after {
    transform: translateY(calc(-50%)) rotate(-135deg);
}
#locationSelector .select {
    display: block;
    width: 100%;
    font-size: 11pt;
    font-weight: bold;
    user-select: none;
}
#locationSelector .location {
    display: block;
    width: 100%;
    font-size: 9pt;
    padding-top: .25rem;
    user-select: none;
}
#locationDropdown {
    position: relative;
}
#locationDropdown .dropdown-menu {
    width: calc(100% - 2rem);
    margin-top: 1rem !important;
    padding: 0;
    overflow: hidden;
    background: none;
}
#locationDropdown a {
    color: var(--background);
    text-decoration: none;
    font-size: 12pt;
    padding: 1rem 1rem;
    background: var(--copy);
    display: block;
    font-weight: bold;
}
#locationDropdown li {
    height: fit-content;
    width: 100%;
}
#locationDropdown li.active a {
    color: var(--textOverBase);
    background: var(--baseColor);
}

#mobileToggle {
    position: absolute;
    top: 0;
    right: 0;
    height: var(--headerHeight);
    width: var(--headerHeight);
    cursor: pointer;
    z-index: 1046;
}
#mobileToggle::before, #mobileToggle::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - .5rem);
    left: 50%;
    transform: translate(-50%, -50%);
    height: 4px;
    width: 3rem;
    background: var(--baseColor);
    transition: .25s;
}
#mobileToggle::after {
    top: calc(50% + .5rem);
}
.mobile-toggled #mobileToggle::before {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.mobile-toggled #mobileToggle::after {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}
#mobileMenu {
    padding-top: calc(var(--headerHeight) + 1rem);
}
#mobileMenu #locationSelector {
    width: calc(100% - 2rem);
    margin: 0 1rem 1rem 1rem;
}
#mobileNav, #mobileNav ul {
    position: relative;
    flex-direction: column;
}
#mobileNav ul {
    width: 100%;
}
#mobileNav li {
    width: 100%;
    margin: .5rem 0;
}
#mobileNav li a {
    display: block;
    width: 100%;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--baseHover);
    color: var(--background);
    border-radius: 1rem;
}
#mobileNav li a.active {
    background: var(--baseColor);
    pointer-events: none;
}

footer#footer {
    position: relative;
    height: fit-content;
    background: var(--background);
    display: flex;
    flex-direction: row;
    align-items: center;
    z-index: 0;
    margin-top: 8rem;
    padding-bottom: 2rem;
}
footer#footer .social-links {
    position: absolute;
    top: 0;
    left: 3vw;
    display: flex;
}
@media (max-width: 768px) {
    footer#footer .social-links {
        width: 50vw;
        flex-wrap: wrap;
    }
}
.social-links a {
    height: 2.25rem;
    width: 2.25rem;
    background: var(--baseColor);
    border: 2px solid var(--baseColor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 .5rem .5rem 0;
}
.social-links svg {
    height: 1.25rem;
    width: 1.25rem;
    z-index: 1;
    flex-shrink: 0;
    fill: var(--background);
}
.social-links a:hover {
    border-color: var(--baseColor);
}
.social-links a:hover svg {
    fill: var(--baseColor);
}
@media (max-width: 768px) {
    footer#footer {
        margin-top: 3rem;
    }
}

footer#footer::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--baseColor);
    clip-path: polygon(0 6rem, 100% 0, 100% 100%, 0% 100%);
}
[data-page='catering'] footer#footer,
[data-page='contact'] footer#footer,
[data-page='order-tortillas'] footer#footer {
    padding-bottom: 5rem;
}
#footer .brand {
    height: 8rem;
    margin: 8rem 3vw 0 3vw;
}

.site-2 #footer .brand-logo {
    background-image: var(--logo2_outline);
}
.footer-content {
    flex-grow: 1;
    height: fit-content;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--background);
    padding-right: 4rem;
    margin-top: 4rem;
}
#footer .footer-links {
    justify-content: start;
}
#footer .footer-links li {
    padding: 0 1rem 1rem 1rem;
}
#footer .footer-links li:first-child {
    padding-left: 0;
}
#footer .footer-links a {
    position: relative;
    color: var(--background);
    text-decoration: none;
}
#footer .footer-links a:not(.btn)::after {
    content: "";
    display: block;
    position: absolute;
    background: var(--background);
    bottom: -4px;
    height: 2px;
    width: 0;
    left: 0;
    transition: .25s;
}
.footer-links a:hover::after, .footer-links a.active::after {
    width: 100% !important;
}
.footer-links a.active {
    pointer-events: none;
}
footer#footer .address a {
    color: var(--background);
}

footer#footer .address a:hover {
    text-decoration: none;
}
@media (max-width: 768px) {
    footer#footer {
        height: fit-content;
        flex-direction: column;
        padding-bottom: 4rem;
    }
    #footer .brand {
        justify-content: end;
        display: flex;
        margin: 5rem 0 0 0;
        width: 100%;
        padding: 0 2rem;
    }
    .footer-content {
        padding: 0;
        width: 100%;
        margin-top: 0;
    }
}
@media (max-width: 992px) {
    #footer .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}
#languageSelect {
    position: relative;
    width: fit-content;
}
#languageSelect span {
    position: relative;
    width: fit-content;
    display: inline-block;
    padding: .5rem;
    cursor: pointer;
}
#languageSelect span.active {
    pointer-events: none;
}
#languageSelect span:nth-child(1) {
    text-align: end;
}
#languageSelect span:nth-child(1)::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -1px;
    height: 35%;
    width: 2px;
    background: var(--background);
}
#languageSelect .selector {
    display: block;
    position: absolute;
    bottom: 0;
    right: 50%;
    width: 25%;
    height: 1px;
    background: var(--background);
    transform: translateX(0);
    transition: .25s;
}
#languageSelect span:nth-child(2).active ~ .selector {
    transform: translateX(calc(100% + 1rem));
}

.btn-svg {
    position: relative;
    height: fit-content;
    width: fit-content;
    display: flex;
    outline: none;
    border: none;
    justify-content: center;
    align-items: center;
    padding: 0;
}
.btn-svg.disabled, .btn-svg:active, .btn-svg:focus,
.btn-svg.disabled svg, .btn-svg svg:active, .btn-svg svg:focus {
    border: none;
    outline: none;
}
.btn-svg svg {
    width: 100%;
    max-height: 70px;
}
.btn-svg path {
    fill: var(--baseColor);
    transition: .25s;
}
.btn-svg span, .btn-svg p {
    font-size: 14pt;
    display: block;
    position: absolute;
    color: var(--baseColor);
    margin: 0;
    transition: .25s;
}
.btn-svg.small-text span, .btn-svg.small-text p {
    white-space: pre-wrap;
    font-size: 11pt;
    width: 90%;
}
.btn-svg:hover path, .btn-svg:hover span, .btn-svg:hover p {
    color: var(--baseHover);
    fill: var(--baseHover)
}

.colored-svg.stroke path {
    stroke: var(--baseColor);
}

.one-link {
    position: relative;
    color: var(--background);
    text-decoration: none;
    font-size: 11pt;
}
.one-link::after {
    content: "";
    display: block;
    position: absolute;
    background: var(--background);
    bottom: -2px;
    height: 1px;
    width: 0;
    left: 0;
    transition: .25s;
}
.one-link:hover::after {
    width: 100%;
}

.hero {
    position: relative;
    width: 100vw;
    height: 65vh;
    overflow: hidden;
}
.hero::after {
    content: "";
    position: absolute;
    display: block;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    background: linear-gradient(180deg,#00000000 25%, #000000 100%);
    /* z-index: 1; */
}
@media (max-width: 768px) {
    .hero::after {
        background: #00000080;
    }
}
.hero-image {
    position: relative;
    height: 100%;
    width: 100%;
    border-radius: 0;
    margin: 0;
}
.hero-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    z-index: 1;
    padding: 4rem 2rem;
}
@media (max-width: 768px) {
    .hero-content {
        justify-content: center;
        padding: 1rem;
    }
}
.hero-content h2 {
    color: var(--background);
    font-weight: bold;
    font-size: 26pt;
    text-align: center;
}
.hero-content .ctas {
    margin-top: 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
}
.hero-content .btn-svg span, .hero-content .btn-svg p {
    color: var(--background);
}
.hero-content .btn-svg path {
    fill: var(--background);
}
.hero-content .btn-svg:hover span, .hero-content .btn-svg:hover p {
    color: var(--baseColor);
}
.hero-content .btn-svg:hover path {
    fill: var(--baseColor);
}
.site-2 .hero-content .btn-svg:hover span, .site-2 .hero-content .btn-svg:hover p {
    color: var(--baseHover);
}
.site-2 .hero-content .btn-svg:hover path {
    fill: var(--baseHover);
}

.split-section, section.container, .review-section, .location-details {
    margin: 8rem auto 0 auto;
}
@media (max-width: 768px) {
    .split-section, section.container, .review-section, .location-details {
        margin: 3rem auto 0 auto;
    }
}
.split-section figure {
    position: relative;
    width: 100%;
    height: unset;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 1rem;
}
.split-section img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.split-section .ctas {
    display: flex;
}

.review-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: fit-content;
    padding: 12rem 4rem 8rem 4rem;
    background: var(--fade);
    clip-path: polygon(0 6rem, 100% 0, 100% 100%, 0% 100%);
}
.review-section::before {
    content: "";
    position: absolute;
    display: block;
    top: 1.5rem;
    left: 1.5rem;
    height: calc(100% - 3rem);
    width: calc(100% - 3rem);
    background: var(--background);
    clip-path: polygon(0 6rem, 100% 0, 100% 100%, 0% 100%);
}
.review-section::after {
    content: "";
    position: absolute;
    display: block;
    top: 1.75rem;
    left: 1.75rem;
    height: calc(100% - 3.5rem);
    width: calc(100% - 3.5rem);
    background: var(--fade);
    clip-path: polygon(0 6rem, 100% 0, 100% 100%, 0% 100%);
}
.review-section .quotes {
    position: absolute;
    top: 8rem;
    left: 4rem;
    height: calc(100% - 12rem);
    width: calc(100% - 8rem);
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    z-index: 1;
}
.review-section .quotes svg {
    max-height: 100%;
    opacity: .5;
}
.review-section .quote-svg path {
    stroke: var(--background);
}
.review-section .reviews {
    position: relative;
    
    height: fit-content;
    width: calc(100% - 8rem);
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    z-index: 1;
}
.reviews .review {
    max-width: 45%;
}
@media (max-width:768px) {
    .review-section {
        padding: 9rem 3rem 5rem 3rem;
    }
    .reviews {
        width: 100% !important;
        flex-direction: column !important;
    }
    .reviews .review {
        width: 100%;
        max-width: 90vw;
        margin-bottom: 2rem;
        text-align: center;
    }
}
.reviews .review-content p {
    font-size: 28pt;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    
    -webkit-line-clamp: 5; /* Specify the number of lines */
    -webkit-box-orient: vertical;
}
.reviews .review-name {
    font-weight: bold;
}
.reviews .review-rating {
    position: relative;
    width: fit-content;
    margin: 3rem auto 0 auto;
}
.reviews .review-rating .svg-star {
    fill: var(--baseColor);
}
.review-section .review-button {
    position: relative;
    margin-top: 4rem;
    width: 100%;
    z-index: 1;
}


.location-row {
    --location-min: 32rem;
    position: relative;
    min-height: var(--location-min);
    justify-content: space-between;
    align-items: center;
}
.location-row a {
    color: var(--copy);
}
.location-p a:hover {
    text-decoration: none;
}
.location-details .wrap {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: var(--location-min);
    border-radius: 1rem;
    overflow: hidden;
}
.location-details #map {
    height: 100%;
    min-height: var(--location-min);
    width: 100%;
}
@media (max-width: 768px) {
    .location-details .wrap {
        margin-top: 2rem;
    }
    .location-details .wrap, .location-details #map {
        --location-min: 18rem
    }
}
.location-disclaimer {
    position: relative;
    margin-top: 2rem;
    background: var(--baseColor);
    color: var(--background);
    padding: 1rem;
    border-radius: .5rem;
}
.location-disclaimer p {
    margin: 0;
}
.location-disclaimer::after {
    content: "!";
    color: var(--baseColor);
    background: var(--background);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2rem;
    width: 2rem;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(15%, -50%);
}

.menu-item {
    position: relative;
    width: 100%;
    height: fit-content;
    overflow: hidden;
}
.menu-item .menu-item-image {
    position: relative;
    width: 100%;
    aspect-ratio: 6/5;
    border-radius: 1rem;
    overflow: hidden;
}
.menu-item .menu-item-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.menu-item-content {
    display: flex;
    justify-content: space-between;
}
.menu-item-label {
    font-weight: bold;
}
.menu-item-description {
    width: 100%;
    margin-top: .5rem;
}


.gallery-nav {
    width: 100%;
    text-align: center;
    margin: 1rem auto 2rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
}
.gal-btn {
    position: relative;
    height: .75rem;
    width: .75rem;
    margin: 0 1rem;
    cursor: pointer;
}
.gallery-count {
    width: fit-content;
    display: inline;
}
.gal-btn::after {
    content: "";
    display: block;
    position: relative;
    height: .75rem;
    width: .75rem;
    border-top: 2px solid var(--copy);
    border-right: 2px solid transparent;
    border-bottom: 2px solid transparent;
    border-left: 2px solid var(--copy);
    rotate: -45deg;
    right: 0;
    transition: .25s;
}
.gal-btn.btn-next::after {
    border-top: 2px solid transparent;
    border-right: 2px solid var(--copy);
    border-bottom: 2px solid var(--copy);
    border-left: 2px solid transparent;
}
.gal-btn:hover::after {
    right: .25rem;
}
.gal-btn.btn-next:hover::after {
    right: -.25rem;
}
.gallery-image-container {
    position: relative;
    width: fit-content;
    display: flex;
    flex-direction: row;
    height: 23rem;
    left: 50%;
    transition: .25s;
}
.gallery-image-container img {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    height: fit-content;
    max-height: 100%;
    max-width: 75vw;

    scale: .9;
    opacity: .8;
    margin: 0 1rem;
    border-radius: 4px;
    transition: .25s;
}

@media (max-width: 992px) {
    .gallery-image-container img {
        width: fit-content;
        height: 100%;
    }
}
.gallery-image-container img.active {
    transform: translateY(-45%);
    scale: 1;
    opacity: 1;
    box-shadow: 0 0 8px #00000050;
    cursor: pointer;
}
@media (min-width: 992px) {
    .gallery-image-container img.active:hover {
        box-shadow: 0 0 12px #00000080;
        scale: 1.1;
        transform: translateY(-40%);
    }   
}
#largeImageModal .modal-content {
    max-height: 90vh;
    max-width: 90vw;
}


header li a p,
footer li a p,
#locationDropdown p,
.btn-svg p,
.location-p p,
.inline-text p,
.one-link p {
    margin: 0;
    display: inline;
}

.community-section figure {
    height: 21rem;
}

.crt-logo.crt-tag {
    display: none !important;
}