.hero__menu {
    min-height: 480px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* overlay */
.hero__menu::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero__menu .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 1076px;
}

/* text */
.hero__menu .container span {
    color: #EE1C23;
    font-weight: 400;
    font-size: 14px;
    line-height: 145%;
    letter-spacing: 1%;
    text-align: center;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.hero__menu .container h1 {
    color: #FFFFFF;
    font-family: "SVN-Sigokae";
    font-weight: 400;
    font-size: 48px;
    line-height: 124%;
    letter-spacing: 2%;
    text-align: center;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
}

.hero__menu .container p {
    color: #E0E0E0;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 1%;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* combo */
.combo {
    background-color: #161616;
}

.combo .container {
    padding: 72px 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
}

.combo__card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.combo__card img {
    object-fit: cover;
    height: auto;
    min-height: 500px;
}

.combo__card__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.combo__card__content h3 {
    color: #FFFFFF;
    font-weight: 400;
    font-size: 24px;
    line-height: 135%;
    letter-spacing: 1%;
    text-align: center;
    font-family: "SVN-Sigokae";
}

.combo__card__content p {
    color: #BDBDBD;
    font-weight: 400;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: 1%;
    text-align: center;
}

/*  */
.menubranch{
    background: #161616 !important;
}

.menubranch .container {
    padding: 72px 0;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.menubranch__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menubranch__text span {
    color: #EE1C23;
    font-weight: 400;
    font-size: 14px;
    line-height: 145%;
    letter-spacing: 1%;
    text-align: center;
}

.menubranch__text h2 {
    color: #FFFFFF;
    font-family: "SVN-Sigokae";
    font-weight: 400;
    font-size: 40px;
    leading-trim: NONE;
    line-height: 136%;
    letter-spacing: 1%;
    text-align: center;
}

.menubranch__follow__name {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.menubranch__follow__name .namebranch {
    padding: 12px 24px;
    color: #BDBDBD;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 1%;
    text-align: center;
    cursor: pointer;
}
.menubranch__follow__name .namebranch.active,
.menubranch__follow__name .namebranch:hover {
    background-color: #EE1C23;
    color: #FFFFFF;
}


.location__branch {
    color: #E0E0E0;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 1%;
    text-align: center;
    margin-top: 24px;
}


.menu__follow__branch__list {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 48px;
}

.menu__follow__branch {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.menu__follow__branch h3 {
    color: #E0E0E0;
    font-weight: 400;
    font-size: 24px;
    line-height: 135%;
    letter-spacing: 1%;
    text-align: center;
    font-family: "SVN-Sigokae";
}

.menu__follow__branch iframe {
    width: 100%;
    height: 800px;
}

@media screen and (max-width:1024px) {
    .hero__menu .container h1 {
        font-size: 28px;
    }

    .combo__card img {
        min-height: 300px;
    }

    .combo .container {
        gap: 24px;
    }
}

@media screen and (max-width: 768px) {
    .combo .container {
        padding: 48px 10px;
    }

    .combo .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .menubranch .container {
        padding: 48px 10px;
    }
    .menubranch__follow__name .namebranch {
        font-size: 14px;
        padding: 10px 20px;
    }
    .menu__follow__branch iframe {
        height: 100vh;
    }
}

@media screen and (max-width:560px) {
    .combo__card__content h3 {
        font-size: 22px;
    }
}