@charset "utf-8";

.restaurant {
    margin-block: 80px 160px;
}

.restaurant .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.restaurant .flex .text {
    width: 30%;
    padding-left: 5%;
}

.restaurant .flex .text .sectionTitle {
    font-size: 34px;
    font-weight: 700;
    text-shadow: 1px 1px 3px #fafafa;
    margin-bottom: 5px;
}

.restaurant .flex .text .title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.restaurant .flex .text .description {
    font-size: 14px;
}

.restaurant .img {
    width: 60%;
}

.restaurant .img img {
    width: 100%;
    height: min(40vw, 500px);
    box-shadow: 10px 20px 5px #fff099;
}

.restaurantMenu .sectionTitle,
.faq .sectionTitle {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.restaurantMenu {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.restaurantMenu .img {
    width: 60%;
    height: 500px;
    transition: all 0.3s ease-in-out;
    background-size: cover;
    background-position: center;
    position: relative;
    cursor: pointer;
}

.restaurantMenu .img:nth-of-type(1) {
    background-image: url(../img/plate_breakfast.jpg);
}

.restaurantMenu .img:nth-of-type(2) {
    background-image: url(../img/plate_breakfast2.jpg);
}

.restaurantMenu .img:nth-of-type(3) {
    background-image: url(../img/plate_green.jpg);
    margin-bottom: 40px;
}

.restaurantMenu .img:hover {
    height: max(30vw, 500px);
    background-color: #1f1f1f99;
    background-blend-mode: overlay;
}

.restaurantMenu .img:not(:hover) {
    height: max(25vw, 250px);
}

.restaurantMenu .img .menuList {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fafafa;
    font-size: 34px;
    font-weight: 700;
    text-shadow: 1px 1px 5px #1f1f1f;
}

.restaurantMenu .btn {
    font-size: 20px;
    margin-bottom: 80px;
}

.faqList {
    width: 90%;
    margin: 0 auto 120px;
}

.faqList .item {
    border-top: 1px solid #2d004d;
    padding: 0 20px;
}

.faqList .item:last-child {
    border-bottom: 1px solid #2d004d;
}

.faqList .item dt {
    display: flex;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.6;
    padding: 40px 0;
    position: relative;
}

.faqList .item dt::before {
    content: "";
    width: 15px;
    height: 1px;
    background-color: #2d004d;
    position: absolute;
    top: 55px;
    right: 0;
}

.faqList .item dt::after {
    content: "";
    width: 1px;
    height: 15px;
    background-color: #2d004d;
    position: absolute;
    top: 48px;
    right: 7px;
    left: auto;
}

.faqList .item dt.active::after {
    content: none;
}

.faqList .item dt .question {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    background-color: #2d004d;
    border-radius: 50%;
    color: #fafafa;
    font-size: 14px;
    margin-right: 100px;
}

.faqList .item dd {
    display: flex;
    font-size: 14px;
    padding-bottom: 40px;
    line-height: 1.6;
}

.faqList .item dd .answer {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border: 1px solid #2d004d;
    border-radius: 50%;
    font-size: 14px;
    margin-right: 100px;
}

@media screen and (max-width: 767px) {
    .restaurant {
        margin-block: 40px 160px;
    }
    
    .restaurant .flex {
        flex-direction: column-reverse;
    }

    .restaurant .flex .text {
        width: 100%;
    }

    .restaurant .img {
        width: 100%;
        margin-bottom: 40px;
    }

    .restaurant .img img {
        width: 100%;
        height: min(60vw, 400px);
        box-shadow: 0 10px 5px #fff099;
    }

    .restaurantMenu .img {
        width: 90%;
    }

    .faqList {
        margin: 0 auto 60px;
    }

    .faqList .item {
        padding-right: 20px;
    }

    .faqList .item dt {
        padding: 30px 0;
    }

    .faqList .item dt::before {
        top: 42px;
        right: 0px;
    }

    .faqList .item dt::after {
        top: 35px;
    }

    .faqList .item dt .question {
        margin-right: 20px;
    }

    .faqList .item dd {
        padding-bottom: 30px;
    }

    .faqList .item dd .answer {
        margin-right: 20px;
    }
}