:root {
    --ttc-color-main: #EB3C27;
    --ttc-color-sub: #EEEDE4;
    --ttc-color-sub-lighter : #F6F5F0;
    --ttc-color-sub-lightest : #F8F8F4;
    --ttc-color-accent: #3FBE8B;
    --ttc-color-dark: #000;
    --ttc-color-light: #fff;
}

html {
  scroll-behavior: smooth;
  scroll-margin-top: 100vh;
}

hr {
    margin-bottom: 5px;
}

.d-flex {
    display: flex;
}

.d-block {
    display: block;
}

.flex-row {
    flex-direction: row;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-just-between {
    justify-content: space-between;
}

.flex-center {
    justify-content: center;
}

.benefit-item {
    display:flex;
    flex-wrap: nowrap;
    padding: 30px 10px;
    border-bottom: solid 1px rgba(0,0,0,.3);
    gap: 20px;
}

.benefit-number {
    padding: 0px 10px;
}

.benefit-item h3 {
    margin-bottom: 10px;
}

.menu-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.menu-box {
    width: calc(25% - 20px);
    background: var(--ttc-color-sub-lighter);
    padding: 10px;
    transition: all 300ms ease-out;
}

.menu-box:hover {
    background: var(--ttc-color-sub-lightest);
    box-shadow: 10px 10px 0px rgba(0,0,0,.3);
    transform: translate(-10px,-10px);
}

.menu-img-wrapper {
    position: relative;
    width: 100%; /* Ensures it adapts to the container */
    padding-top: 56.25%; /* 16:9 aspect ratio (9 / 16 * 100) */
    border: solid 5px var(--ttc-color-accent);
}

.menu-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-img-wrapper {
    position: relative;
    width: 100%; /* Ensures it adapts to the container */
    aspect-ratio: 4 / 3;
}

.blog-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-img-wrapper {
    position: relative;
    width: 100%; /* Ensures it adapts to the container */
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.article-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-box h3 {
    margin-bottom: 10px;
}

.menu-details {
    padding: 20px 15px;
}

.cta-box {
    padding: 10px;
}

.cta-title {
    text-align: center;
    margin-bottom: 20px;
}

.cta-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: space-between;
}
.footer-col {
    width: calc(33.33% - 15px);
    font-size: 18px;
    padding-bottom: 30px;
}
.footer-col-full {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}
.footer-col h4 {
    font-size: 24px;
    margin-bottom: 5px;
}

.all-menu-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}
.all-menu-box {
    display: flex;
    gap: 10px;
    padding: 10px;
    background-color: var(--ttc-color-sub-lighter);
    width: calc(50% - 10px);
    transition: all 300ms ease-out;
    overflow: hidden;
}

.all-menu-box:hover {
    background-color: var(--ttc-color-sub-lightest);
    box-shadow: 10px 10px 0px rgba(0,0,0,.3);
    transform: translate(-10px,-10px);
}

.all-menu-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: flex-start;
    padding: 20px;
    flex: 1;
    transition: all 300ms ease-out;
}

.all-menu-head.full {
    width: 100%;
}

.all-menu-head h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.all-menu-head span {
    font-size: 24px;
    margin-bottom: 10px;
}

.all-menu-title-wrapper {
    text-align: left;
}

.all-menu-body {
    width: 50%;
    flex-basis: 100%;
    font-size: 16px;
    text-align: left;
    margin-top: 20px;
}
.all-menu-img-wrapper {
    width: 25%;
    position: relative;
    transition: all 300ms ease-out;
    border: solid 5px var(--ttc-color-accent);
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.all-menu-img-wrapper.empty {
    width: 25%;
    position: relative;
    transition: all 300ms ease-out;
    border: none;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.all-menu-img-wrapper img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.menu-additional {
    margin-top: 10px;
}
.additional-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 300ms ease-out;
    padding: 10px 10px;
}
.additional-list:hover {
    background: var(--ttc-color-sub);
}

.additional-list .additional-item {
    width: 70%;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0px;
}

.additional-list .additional-item.full {
    width: 100%;
}

.additional-list .additional-price {
    width: 30%;
    text-align: right;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.gallery-item {
    width: calc(25% - 20px);
    aspect-ratio: 4 / 3;
    border: solid 5px var(--ttc-color-sub-lightest);
    overflow: hidden;
    transition: all 300ms ease-out;
}
.gallery-item:hover {
    box-shadow: 10px 10px 0px var(--ttc-color-accent);
    transform: translate(-10px,-10px);
    border-color: var(--ttc-color-main);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100);
}
.gallery-item:hover img {
    filter: grayscale(0);
}
.share-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 5px;
}

.share-grid a {
    color: var(--ttc-color-accent);
    font-size: 21px;
}

.share-grid a:hover {
    color: var(--ttc-color-main);
}

.article-body {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 10px;
}
.article-body .article-details {
    width: calc(25% - 20px);
    padding: 30px;
}
.article-body .article-content {
    width: calc(50% - 20px);
    background: var(--ttc-color-light);
    padding: 30px;
    font-size: 18px;
    line-height: 200%;
}

.article-body .article-sidebar {
    width: calc(25% - 20px);
    font-size: 18px;
    line-height: 200%;
}
.grayscale img {
    filter: grayscale(100);
}

/*Font Family */
.font-sub {
    font-family: Dosis !important;
}
.font-main {
    font-family: "Barlow Condensed" !important;
}

/*Text Sizing*/
.text-hero-1 {
    font-size: 8rem;
    line-height: 100%;
}

.text-hero-2 {
    font-size: 6.5rem;
    line-height: 100%;
}

.text-hero-3 {
    font-size: 5.5rem;
    line-height: 100%;
}

.text-hero-4 {
    font-size: 4.5rem;
    line-height: 100%;
}

.text-hero-5 {
    font-size: 3.5rem; 
    line-height: 100%;
}

.text-hero-6 {
    font-size: 2.5rem; 
    line-height: 100%;
}

.text-lg {
    font-size: 1.5rem;
}

/*Text Weight*/

.fw-regular {
    font-weight: 400 !important;
}
.fw-semibold {
    font-weight: 600 !important;
}
.fw-bold {
    font-weight: 700 !important;
}
.fw-extrabold {
    font-weight: 800 !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

/*Text Color*/
.text-main {
    color: var(--ttc-color-main);
}
.text-sub {
    color: var(--ttc-color-sub);
}
.text-accent {
    color: var(--ttc-color-accent);
}

/*Button*/
.btn-navbar span {
    background-color: var(--ttc-color-sub);
    color: var(--ttc-color-dark) !important;
    transition: all 300ms ease-out;
    padding: 10px 30px !important;
    border-radius: 20px;
    line-height: 100% !important;
    border: solid 3px transparent !important
}

.btn-navbar:hover span {
    background-color: var(--ttc-color-accent);
    color: var(--ttc-color-sub) !important;
    border: solid 3px var(--ttc-color-sub) !important;
}

.btn-main-accent span {
    background-color: var(--ttc-color-accent);
    color: var(--ttc-color-light) !important;
    transition: all 300ms ease-out;
    width:100%;
    border-radius: 40px;
    line-height: 100% !important;
    display: block;
    padding: 20px;
    text-align: center;
    font-weight: 800;
    font-size: 18px;
}

.btn-main-accent:hover span {
    background-color: var(--ttc-color-main);
    color: var(--ttc-color-light) !important;
}

.btn-sub-accent span {
    background-color: var(--ttc-color-sub);
    color: var(--ttc-color-dark) !important;
    transition: all 300ms ease-out;
    border-radius: 40px;
    line-height: 100% !important;
    display: inline-block;
    padding: 15px 40px;
    text-align: center;
    font-weight: 800;
    font-size: 18px;
}

.btn-sub-accent:hover span {
    background-color: var(--ttc-color-light);
    color: var(--ttc-color-dark) !important;
}

.btn-cta span {
    background-color: var(--ttc-color-sub);
    color: var(--ttc-color-dark) !important;
    transition: all 300ms ease-out;
    border-radius: 40px;
    line-height: 100% !important;
    display: inline-block;
    padding: 15px 40px;
    text-align: center;
    font-weight: 800;
    font-size: 18px;
}

.btn-cta:hover span {
    background-color: var(--ttc-color-main);
    color: var(--ttc-color-light) !important;
    box-shadow: 5px 5px 0px var(--ttc-color-sub);
    transform: translate(-5px,-5px);
}

/*Border*/
.border-1 {
    border: solid 1px;
}

.border-2 {
    border: solid 2px;
}
.border-3 {
    border: solid 3px;
}
.border-4 {
    border: solid 4px;
}
.border-5 {
    border: solid 5px;
}
.border-main {
    border-color: var(--ttc-color-main);
}
.border-sub {
    border-color: var(--ttc-color-sub);
}
.border-accent {
    border-color: var(--ttc-color-accent);
}

/*Background*/
.bg-menu-ftr .menu-ftr {
    padding: 15px 0px;
    transition: all 300ms ease-out;
    background-color: var(--ttc-color-sub-lighter);
}
.bg-menu-ftr .menu-ftr:hover {
    padding: 15px 0px;
    background-color: var(--ttc-color-sub-lightest);
}

.bg-main {
    background-color: var(--ttc-color-main);
}

.bg-accent {
    background-color: var(--ttc-color-accent);
}

.bg-sub {
    background-color: var(--ttc-color-sub);
}

.full-height {
    min-height: 100vh;
}

.vh5 {
    min-height: 5vh;
}

.vh10 {
    min-height: 10vh;
}

.vh20 {
    min-height: 20vh;
}
.vh30 {
    min-height: 30vh;
}

.grve-separator-bottom {
    background-color: var(--ttc-color-sub);
    height: 60px;
    --mask: conic-gradient(from 135deg at top,#0000,#000 1deg 89deg,#0000 90deg) 50%/60px 100%;
  -webkit-mask: var(--mask);
          mask: var(--mask);
}

.grve-separator-top {
    background-color: var(--ttc-color-sub);
    height: 60px;
   --mask: conic-gradient(from -45deg at bottom,#0000,#000 1deg 89deg,#0000 90deg) 50%/60px 100%;
  -webkit-mask: var(--mask);
          mask: var(--mask);
}

.shadow-main , .shadow-sub , .shadow-accent , .shadow-dark , .shadow-light {
    transition: all 300ms ease-out;
}

.shadow-main:hover {
    box-shadow: 10px 10px 0px var(--ttc-color-main);
}

.shadow-sub:hover {
    box-shadow: 10px 10px 0px var(--ttc-color-sub);
    transform: translate(-10px,-10px);
}

.shadow-accent:hover {
    box-shadow: 10px 10px 0px var(--ttc-color-accent);
}

.shadow-dark:hover {
    box-shadow: 10px 10px 0px rgba(0,0,0,.5);
    transform: translate(-10px,-10px);
}

.shadow-light:hover {
    box-shadow: 10px 10px 0px rgba(255,255,255,.5);
    transform: translate(-10px,-10px);
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.tab.featured {
    padding: 10px 90px;
}

.tab {
    padding: 10px 30px;
    cursor: pointer;
    border: solid 2px var(--ttc-color-dark);
    color: var(--ttc-color-dark);
    background: transparent;
    transition: 0.3s;
    font-weight: bold;
    text-transform: uppercase;
    font-family: "Barlow Condensed";
    flex: 1 1 auto;
    text-align: center;
}

.tab:hover {
    border-color: var(--ttc-color-accent) !important;
    background-color: var(--ttc-color-accent) !important;
    color: var(--ttc-color-sub);
}

.tab.active {
    background: var(--ttc-color-main);
    border-color: var(--ttc-color-main);
    color: var(--ttc-color-sub);
}

.tab-content {
    display: none;
    padding: 25px 0px;
}

.tab-content.active {
    display: block;
}

.article-head {
    font-size: 18px;
    line-height: 120%;
}

.yoast-breadcrumbs {
    margin-bottom: 10px;
}

.yoast-breadcrumbs , .yoast-breadcrumbs a {
    color: var(--ttc-color-sub);
}

.yoast-breadcrumbs a {
    font-weight: bold;
}

.yoast-breadcrumbs a:hover {
    color: var(--ttc-color-light);
}

.post-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-list ul li {
    font-size: 18px;
    font-weight: 700;
    line-height: 150%;
    padding: 20px 10px;
    transition: all 300ms ease-out;
}

.post-list ul li:hover {
    background: var(--ttc-color-sub-lightest);
}

.post-list ul li:hover a {
    color: var(--ttc-color-main);
}

.post-list ul li .post-date {
    display: block;
    font-weight: 300;
    opacity:.7;
}

.menu-notice {
    background: var(--ttc-color-main);
    color: var(--ttc-color-sub);
    padding: 20px 10px;
    text-align: center;
    margin-bottom: 20px;
}

.notice-title {
    font-weight: 800;
    font-size: 18px;
}