/* Slideshow Component */
.slideshow-component {
    background: var(--bg-gray-4);
}

.slideshow-component .slide-dots {
    padding-top: 32px !important;
}

/* Banner Section */
.banner-section {
    position: relative;
    height: 57vh;
    overflow: hidden;
}

.banner-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.banner-section img {
    width: 100%;
    height: 100%;
    margin: 36px 0 120px;
    object-fit: cover;
    object-position: top;
    transform: scale(1.3);
}

.banner-section .labels {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 4.8%;
}

/* Section Layouts */
.section-section {
    background: var(--bg-gray-1);
    padding: 4px 0;
}

.catering-section {
    background: var(--bg-gray-1);
    padding: 12px 0;
}

/* Catering Section Typography */
.catering-section h2 {
    font-weight: 300;
    text-align: left;
    margin-bottom: 20px;
    min-height: 32px;
}

.catering-section .content-block .content-block__description {
    max-width: 620px;
    font-weight: 500;
    margin-bottom: 1.8rem;
}

.catering-section .content-block .m-auto .btn-redirect {
    text-transform: uppercase;
}

.catering-section .content-block .m-auto .btn-redirect:nth-child(1) {
    background-color: var(--red) !important;
}

.catering-section .content-block .m-auto {
    margin-top: 16px !important;
    display: flex;
}

.catering-section .content-block .m-auto .btn-redirect:nth-child(1) {
    order: 1;
}

.catering-section .content-block .m-auto .btn-redirect:nth-child(1):hover {
    background-color: #000 !important;
}

/* Tablet Styles */
@media (max-width: 992px) {
    .banner-section .labels {
        gap: 0 3%;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Banner Mobile */
    .banner-section {
        height: 94vh;
    }

    .banner-section .labels {
        display: grid;
        padding: 68px 0;
    }

    .catering-box .catering-header h2 {
    }

    .btn-redirect {
        margin: 4px !important;
    }

    .catering-section .content-block .m-auto {
        display: block;
    }
}
