/*Styles for Catering page*/



/* ============================================
   CATERING HIGHLIGHTS SLIDER SECTION
   ============================================ */
.catering-highlights-section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.catering-highlights-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
}

.catering-highlights-section .section-title {
    font-family: "Subway Sans LCG-WebF Bold", sans-serif;
    font-size: 36px;
    line-height: 130.5%;
    color: #000000;
    margin-bottom: 40px;
    text-align: left;
}

.catering-slider-wrapper {
    position: relative;
    padding-bottom: 80px;
}

/* Slick Slider Styles */
.catering-highlights-slider {
    width: 100%;
}

.catering-highlights-slider .slick-list {
    overflow: hidden;
    margin: 0 -15px;
    padding: 0;
}

.catering-highlights-slider .slick-track {
    display: flex;
    align-items: stretch;
}

.catering-highlights-slider .slick-slide {
    padding: 0 15px;
    height: 500px;
}

.catering-highlights-slider .slick-slide > div {
    height: 100%;
}

/* Navigation Arrows - Bottom Left */
.catering-highlights-slider .slick-arrow {
	position: absolute;
	bottom: -60px;
	top: auto;
	transform: none;
	z-index: 10;
	width: 48px;
	height: 48px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	font-size: 0;
}

/* .catering-highlights-slider .slick-arrow:hover {
    background: #008938;
    transform: scale(1.1);
} */

.catering-highlights-slider .slick-arrow:hover svg path {
    stroke: #fff;
}

.catering-highlights-slider .slick-arrow svg {
    display: none;
    width: 24px;
    height: 24px;
}

/* .catering-highlights-slider .slick-arrow svg path {
    stroke: #008938;
    transition: stroke 0.3s ease;
} */

.catering-highlights-slider .slick-prev {
    left: 0;
}

.catering-highlights-slider .slick-next {
    left: 40px;
}

.catering-highlights-slider .slick-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.catering-highlights-slider .slick-arrow:disabled:hover {
    background: #fff;
    transform: none;
}

.slick-arrow::before {
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    width: 9px;
    height: 17px;
    display: inline-block;
    font-size: 0;
}
.slick-prev::before {
    transform: rotate(180deg);
    background-image: url('../images/vector-arrow.png');
}
.slick-next::before {
    background-image: url('../images/vector-arrow.png');
}

/* ============================================
   FLIP CARD STYLES
   ============================================ */
.flip-card-wrapper {
    height: 450px;
    perspective: 1000px;
}

.flip-card {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card.flipped {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 5px;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.20);
    cursor: pointer;
}

/* Front Card */
.flip-card-front {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #cccccc; /* Fallback color if image fails to load */
    display: flex;
    align-items: flex-end;
    color: #fff;
    z-index: 2;
}

.flip-card-front .card-content {
    width: 100%;
    padding: 30px 25px;
}

.flip-card-front .menu-name {
    font-family: "Subway Sans LCG-WebF Bold", sans-serif;
    font-size: 28px;
    line-height: 130%;
    color: #fff;
    margin: 0 0 12px 0;
    text-transform: capitalize;
}

.flip-card-front .menu-info {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.flip-card-front .serves,
.flip-card-front .servings {
    font-family: "Subway Sans LCG-WebF Reg", sans-serif;
    font-size: 14px;
    line-height: 140%;
    color: #fff;
    margin: 0;
}

.flip-card-front .serves::after {
    content: " | ";
    margin: 0 4px;
}

.flip-card-front .short-description {
    font-family: "Subway Sans LCG-WebF Reg", sans-serif;
    font-size: 16px;
    line-height: 150%;
    color: #fff;
    margin: 0;
}

/* Back Card */
.flip-card-back {
    background: #000;
    color: #fff;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 30px;
}

.flip-card-back .card-content-back {
    text-align: left;
}

.flip-card-back .back-title {
    font-family: "Subway Sans LCG-WebF Bold", sans-serif;
    font-size: 24px;
    line-height: 130%;
    color: #9CA3AF;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.flip-card-back .full-description {
    font-family: "Subway Sans LCG-WebF Reg", sans-serif;
    font-size: 15px;
    line-height: 160%;
    color: #fff;
    margin-bottom: 20px;
}

.flip-card-back .full-description p {
    margin: 0 0 12px 0;
    padding: 0;
}

.flip-card-back .full-description p:last-child {
    margin-bottom: 0;
}

.flip-card-back .flip-instruction {
    font-family: "Subway Sans LCG-WebF Reg", sans-serif;
    font-size: 13px;
    line-height: 140%;
    color: #9CA3AF;
    margin: 0;
    font-style: italic;
}

/* ============================================
   ACCESSIBILITY & INTERACTIONS
   ============================================ */
.flip-card-front:hover,
.flip-card-back:hover {
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.25);
}

/* Smooth transitions */
* {
    -webkit-tap-highlight-color: transparent;
}

.flip-card {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
}

.flip-card-front,
.flip-card-back {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
}

#caterOrder {
    padding-bottom: 80px;
}
#caterOrder .cOrder-container {
    border-radius: 5px;
    background: var(--Black, #000);
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.20);
    padding: 30px 0 30px 30px;
    justify-content: space-between;
    align-items: center;
}
#cOrder-Col-left { max-width: 509px; }
#caterOrder h2, .cOrder_desc p {
    color: #fff;
}
#caterOrder h2 {
    font-family: "Subway Sans LCG-WebF Bold", sans-serif;
    font-size: 36px;
    line-height: 130.556%;
    padding-bottom: 9px;
}
.cOrder_desc {
    padding-bottom: 34px;
}
.cOrder_desc p { 
    color: #FFF;
    font-family: "Subway Sans LCG-WebF Reg", sans-serif;
    font-size: 16px;
    line-height: 162.5%;
 }
 #caterOrder .cta-button {
    background-color: #fff;
    color: #000;
}
#caterOrder .cta-button:hover {
    background-color: #ecb830;
    color: #fff;
}


#caterContact {
    background: var(--Light-Grey-2, #F6F6F6);
    padding: 60px 0;
}
#caterContact .flexbox {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* width: 565px; */
}
#caterContact h2 {
    font-family: "Subway Sans LCG-WebF Bold", sans-serif;
    font-size: 44px;
    line-height: 129.556%;
    padding-bottom: 20px;
}
.cContact_desc {
    padding-bottom: 40px;
}
.cContact_desc p {
    font-family: "Subway Sans LCG-WebF Reg", sans-serif;
    font-size: 16px;
    line-height: 162.5%;
 }
 #caterContact h2, .cContact_desc p {
    text-align: center;
}
.cContact_desc ul {
    list-style: disc;
    padding-left: 20px;
}
.cContact_desc li {
    padding-left: 5px;
}




/*Responsive Styles*/
@media only screen and (max-width: 1600px) {
    
}
@media only screen and (max-width: 1440px) {
    #caterContact h2 { font-size: 40px }
}
@media only screen and (max-width: 1280px) {
    #caterContact h2 { font-size: 35px }
}
@media only screen and (max-width: 1080px) {
    #caterContact h2 { font-size: 32px }
}
@media only screen and (max-width: 1024px) {
    /* .intro-container { max-width: 92%; } */
    .catering-highlights-container {
        padding: 0 30px;
    }
    .catering-highlights-section .section-title {
        font-size: 32px;
        margin-bottom: 35px;
    }
    .flip-card-wrapper {
        height: 420px;
    }

    .flip-card-front .menu-name {
        font-size: 24px;
    }

    .flip-card-front .card-content {
        padding: 25px 20px;
    }

    .flip-card-back .back-title {
        font-size: 22px;
    }
}
@media only screen and (max-width: 768px) {
    .catering-highlights-section {
        padding: 60px 0;
    }

    .catering-highlights-container {
        padding: 0 20px;
    }

    .catering-highlights-section .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .catering-slider-wrapper {
        padding-bottom: 70px;
    }

    .catering-highlights-slider .slick-list {
        margin: 0 -10px;
    }

    .catering-highlights-slider .slick-slide {
        padding: 0 10px;
    }

    .catering-highlights-slider .slick-prev,
    .catering-highlights-slider .slick-next {
        width: 42px;
        height: 42px;
        bottom: -55px;
    }

    .catering-highlights-slider .slick-next {
        left: 52px;
    }

    .catering-highlights-slider .slick-arrow svg {
        width: 20px;
        height: 20px;
    }

    .flip-card-wrapper {
        height: 400px;
    }

    .flip-card-front .menu-name {
        font-size: 22px;
    }

    .flip-card-front .card-content {
        padding: 20px 18px;
    }

    .flip-card-front .short-description {
        font-size: 15px;
    }

    .flip-card-back {
        padding: 30px 20px;
    }

    .flip-card-back .back-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .flip-card-back .full-description {
        font-size: 14px;
    }

}
@media only screen and (max-width: 600px) {
    
}
@media screen and (max-width: 480px) {
    .catering-highlights-container {
        padding: 0 15px;
    }

    .catering-highlights-section .section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .catering-slider-wrapper {
        padding-bottom: 65px;
    }

    .catering-highlights-slider .slick-prev,
    .catering-highlights-slider .slick-next {
        width: 38px;
        height: 38px;
        bottom: -52px;
    }

    .catering-highlights-slider .slick-next {
        left: 48px;
    }

    .catering-highlights-slider .slick-arrow svg {
        width: 18px;
        height: 18px;
    }

    .flip-card-wrapper {
        height: 380px;
    }

    .flip-card-front .menu-name {
        font-size: 20px;
    }

    .flip-card-front .card-content {
        padding: 18px 15px;
    }

    .flip-card-front .serves,
    .flip-card-front .servings {
        font-size: 13px;
    }

    .flip-card-front .short-description {
        font-size: 14px;
    }

    .flip-card-back {
        padding: 25px 18px;
    }

    .flip-card-back .back-title {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .flip-card-back .full-description {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .flip-card-back .flip-instruction {
        font-size: 12px;
    }
}