*, *::before, *::after {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.menu-box {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 70, 139, 0.7);
    min-width: 80%;
    min-height: 200px;
    border-radius: 10px;
    position: relative;
    transition: all 0.3s ease-in-out;
    padding: 30px 20px;
    gap: 15px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

.menu-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0),
                inset 0 4px 8px rgba(0, 70, 139, 0.8);
}

.menu-box__title {
    width: fit-content;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background: #ffffff;
    top: 0;
    left: 50%;
    position: absolute;
    padding: 5px 30px;
    color: #00468b;
    border: none;
    z-index: 200;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 70, 139, 0.7);
    transform: translate(-50%, -50%);
    transition: box-shadow 0.3s ease-in-out;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.menu-box__title:hover {
    box-shadow: 0 4px 28px rgba(0, 70, 139, 0.7);
}


.menu-box__price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.6);
    padding: 10px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 70, 139, 0.7);
    transition: background 0.3s ease-in-out,
    color 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
    font-weight: 800;
    text-shadow: 0 4px 8px #fff;
}

.menu-box__price:hover {
    background: #00468b;
    color: #ffffff;
    box-shadow: 0 4px 28px rgba(0, 70, 139, 0.7);
}

.menu-box__map-button {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    bottom: 15px;
    right: 20px;
    background: rgba(0, 70, 139, 0.8);
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 70, 139, 0.7);
    transition: box-shadow 0.3s ease-in-out;
}

.menu-box__map-button:hover {
    box-shadow: 0 4px 28px rgba(0, 70, 139, 0.7);
}

.menu-box__map-button a {
    text-decoration: none;
    color: #fff;
    text-shadow: 0 4px 8px rgba(0, 70, 139, 0.8);
    }


.menu-box__element {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    width: fit-content;
    background: rgba(0, 70, 139, 0.2);
    margin: 10px;
    padding: 20px;
    border-radius: 10px;
}

.menu-box__element-text {
    text-shadow: 0 4px 8px rgba(0, 70, 139, 0.8);
    padding: 4px;
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}

.menu-box__partner-name {
    text-shadow: 0 4px 8px rgba(0, 70, 139, 0.8);
    font-weight: 800;
    color: white;
    font-size: 2rem;
}

