/* banner start */
.catering-banner {
    width: 100%;
    height: 30rem;
    overflow: hidden;
    position: relative;
}

.catering-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.title-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    top: 50%;
    z-index: 20;
    max-width: 75rem;
    width: 100%;
}

.title-container .title {
    font-size: 2.5625rem;
    color: #fff;
    line-height: 4.75rem;
    text-align: center;
}

.title-container .desc {
    font-size: 1.625rem;
    color: #fff;
    text-align: center;
}

/* Fine Dining 标题模块载入动画 */
.title-container .title,
.title-container .desc {
    opacity: 0;
    will-change: opacity, transform;
    transform: translateY(0.9375rem);
}

.animate-fade-up-dining {
    animation: fadeUpDining 0.8s ease-out forwards;
}

@keyframes fadeUpDining {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* banner end */

/* Banquets & Events start */
.banquets-container,
.coffee-container {
    padding: 3.125rem 0;
}

.banquets-content,
.coffee-content {
    max-width: 75rem;
    margin: 0 auto;
}

.title-line {
    width: 7.5rem;
    height: 0.375rem;
    background: #64899F;
    margin: 0 auto;
}

.module-title {
    font-size: 2.875rem;
    color: #000;
    line-height: 3.0625rem;
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
}

.events-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.event-info {
    padding: 0.5rem 1.25rem 1.25rem;
}

.event-item {
    background: #FFFFFF;
    box-shadow: 0px 0.1875rem 0.375rem 0.0625rem rgba(0, 0, 0, 0.16);
    border-radius: 0.75rem;
    width: calc(33% - 1rem);
    min-width: 15rem;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.event-img {
    border-radius: 0.75rem 0.75rem 0 0;
    overflow: hidden;
    width: 100%;
    height: 15rem;
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-title {
    font-size: 1.25rem;
    color: #000;
    line-height: 2.875rem;
    text-align: center;
    transition: all ease-in-out 0.3s;
}

.event-title:hover {
    color: #64899F;
}

.event-desc {
     white-space: pre-line;
    word-break: break-all;
    font-size: 1rem;
    color: #3E3E3E;
    /* line-height: 1.25rem;
    overflow: hidden;
    text-overflow: ellipsis; */
    display: -webkit-box;
    /* -webkit-line-clamp: 4; */
    -webkit-box-orient: vertical;
    margin-bottom: 1rem
}

.area,
.capacity {
    font-size: 0.875rem;
    color: #9B9B9B;
    line-height: 1.25rem;
}

.booking {
    width: 7.5rem;
    height: 2.25rem;
    line-height: 2.125rem;
    display: block;
    text-align: center;
    border-radius: 0.375rem;
    border: 0.0625rem solid #000000;
    margin: 1rem auto 0;
    font-size: 1rem;
    color: #000000;
    transition: all 0.3s ease-in-out;
}

.booking:hover {
    background-color: #000;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0px 0.1875rem 0.5rem rgba(0, 0, 0, 0.15);
}

.event-item:hover {
    box-shadow: 0px 0.5rem 1rem 0.125rem rgba(0, 0, 0, 0.2);
}

/* Banquets & Events 载入动画 */
.banquets-content .module-title,
.event-item {
    opacity: 0;
    will-change: opacity, transform;
}

.module-title {
    transform: translateY(0.625rem);
}

.event-item {
    transform: translateY(1.25rem);
}

.animate-fade-up-banquet {
    animation: fadeUpBanquet 0.8s ease-out forwards;
}

@keyframes fadeUpBanquet {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Banquets & Events end */

/* Coffee & Tea  start */
.drink-content {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.drink-img {
    width: 68%;
    height: 25.625rem;
    border-radius: 0.75rem;
}

.drink-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.drink-intro {
    flex: 1;
    box-shadow: 0px 0.1875rem 0.375rem 0.0625rem rgba(0, 0, 0, 0.16);
    border-radius: 0.75rem;
    padding: 1.875rem 0.4375rem 0.4375rem 0.4375rem
}

.drink-desc {
    word-break: break-all;
    font-size: 1.375rem;
    color: #3E3E3E;
    /* line-height: 1.875rem; */
    /* overflow: hidden;
    text-overflow: ellipsis; */
    display: -webkit-box;
    /* -webkit-line-clamp: 11; */
    -webkit-box-orient: vertical;
}


.other-info {
    display: flex;
    font-size: 1.375rem;
    color: #9B9B9B;
    line-height: 1.25rem;
    gap: 3rem;
    margin-top: 0.75rem;
}

/* Coffee & Tea 载入动画 */
.coffee-content .module-title,
.drink-img,
.drink-intro {
    opacity: 0;
    will-change: opacity, transform;
}

.coffee-content .module-title {
    transform: translateY(0.625rem);
    /* 标题小幅位移 */
}

.drink-img {
    transform: translateX(-0.9375rem);
    /* 图片左移进入 */
}

.drink-intro {
    transform: translateX(0.9375rem);
    /* 文本右移进入 */
}

.animate-fade-up-coffee {
    animation: fadeUpCoffee 0.8s ease-out forwards;
}

@keyframes fadeUpCoffee {
    to {
        opacity: 1;
        transform: translateY(0) translateX(0);
    }
}

/* Coffee & Tea  end */

/* 屏幕宽度<1200px时生效 */
@media screen and (max-width: 1201px) {

    .title-container,
    .banquets-content,
    .coffee-content {
        padding: 0 1.5rem;
    }

    /* .event-item {
        width: calc(33% - 24px);
    } */
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
    .event-item {
        width: calc(50% - 0.75rem);
    }

    .drink-img{
        width: 100%;
        height: auto;
    }
}

/* 屏幕宽度<768px时生效 */
@media screen and (max-width: 769px) {
    .title-container .title {
        font-size: 2.25rem;
        line-height: 3.75rem;
    }

    .title-container .desc {
        margin-top: 1.5rem;
    }

    .module-title {
        font-size: 2.25rem;
    }

    .event-item {
        width: calc(50% - 1.5rem);
    }

    .drink-img {
        width: 100%;
    }
}

/* 屏幕宽度<550px时生效 */
@media screen and (max-width: 551px) {
    .event-item {
        width: 100%;
    }
}