@charset "UTF-8";

/* Page Hero (Reuse from reserve.css if possible, but we need to import it or duplicate. 
   Since we are making a separate css file, let's duplicate the hero styles or make a common.css later.
   For now, I'll duplicate relevant parts or assume reserve.css is NOT loaded. 
   Wait, index.html loads style.css. reserve.html loaded reserve.css.
   menu.html loads menu.css.
   I should copy the hero styles here or move them to style.css.
   Let's copy for now to be safe and specific.
*/

.page-hero {
    height: 300px;
    background-image: url('../images/menu/top-img.jpg');
    /* Placeholder */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
    position: relative;
    color: #fff;
}

.page-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.page-hero-inner {
    position: relative;
    text-align: center;
    z-index: 1;
}

.page-title-en {
    font-family: var(--font-en);
    font-size: 2.5rem;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    font-weight: normal;
}

.page-title-jp {
    font-size: 1rem;
    letter-spacing: 0.05em;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 20px 20px;
    font-size: 0.8rem;
    color: var(--secondary-color);
}

.breadcrumbs a {
    text-decoration: underline;
}

/* Menu Content */
.menu-content {
    padding: 60px 0;
}

.menu-section {
    margin-bottom: 80px;
}

.menu-category {
    background-color: var(--blue-light);
    padding: 15px 20px;
    font-family: var(--font-en);
    font-size: 1.2rem;
    color: var(--accent-color);
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.category-jp {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: normal;
}

.menu-list {
    padding: 0 20px;
}

.menu-item {
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.menu-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
}

.menu-price {
    font-family: var(--font-en);
    font-size: 1.1rem;
    font-weight: 500;
}

.menu-desc {
    font-size: 0.9rem;
    color: var(--secondary-color);
    line-height: 1.6;
}

.menu-notes {
    font-size: 0.8rem;
    color: var(--secondary-color);
    text-align: right;
    margin-top: -40px;
    /* Pull up a bit */
    margin-bottom: 60px;
}

/* Bottom CTA (Reuse from reserve.css styles, need to duplicate here if reserve.css is not loaded) */


/* Responsive */
@media (max-width: 768px) {
    .page-hero {
        height: 200px;
        margin-top: 60px;
    }

    .menu-header {
        flex-direction: column;
        gap: 5px;
    }

    .menu-price {
        align-self: flex-end;
    }



    .btn-cta {
        width: 100%;
        max-width: 300px;
    }
}