/* --- Menu Page Styles --- */
.menu-body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-japanese);
    line-height: 1.8;
    background-image: radial-gradient(circle at center, #24140e 0%, #080302 100%);
    min-height: 100vh;
    padding-bottom: 0;
}

.menu-header {
    text-align: center;
    padding: 40px 20px 20px 20px;
    position: relative;
}

.page-nav {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    z-index: 100;
    margin-bottom: 25px;
}

.page-nav a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.9), 0 0 15px rgba(0,0,0,0.8);
}

.page-nav a:hover, .page-nav a.active {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.page-nav .nav-divider {
    color: rgba(253, 251, 247, 0.6);
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.static-logo {
    position: static !important;
    margin: 0 auto;
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
}

.menu-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.menu-title {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: var(--accent-color);
    text-align: center;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.8);
    font-weight: 400;
}

.menu-note {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(253, 251, 247, 0.7);
    margin-bottom: 40px;
    letter-spacing: 0.1em;
}

.menu-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.menu-item {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    border-color: rgba(212, 175, 55, 0.5);
}

.reservation-card {
    padding: 50px 30px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 12px;
    margin-bottom: 15px;
}

.menu-item-name {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-color);
    letter-spacing: 0.15em;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
}

.menu-item-price {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--accent-color);
    font-family: 'Cinzel', 'Noto Serif JP', serif;
    letter-spacing: 0.05em;
}

.menu-item-desc {
    font-size: 0.95rem;
    color: rgba(253, 251, 247, 0.85);
    line-height: 1.8;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.menu-item-options {
    background: rgba(0,0,0,0.4);
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 15px;
    border-left: 2px solid rgba(212, 175, 55, 0.4);
}

.option-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.option-row:last-child {
    margin-bottom: 0;
}

.option-name {
    color: rgba(253, 251, 247, 0.9);
}

.option-price {
    color: var(--accent-color);
    font-family: 'Cinzel', 'Noto Serif JP', serif;
}

.menu-footer {
    margin-top: 60px;
    text-align: center;
}

.menu-footer .copyright {
    padding: 20px 0;
    font-size: 0.85rem;
    color: rgba(253, 251, 247, 0.5);
    letter-spacing: 0.1em;
    font-family: 'Cinzel', 'Noto Serif JP', serif;
    background: #000;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .menu-header {
        padding: 15px 15px 10px;
    }

    .page-nav {
        position: static;
        transform: none;
        justify-content: center;
        margin-bottom: 25px;
        gap: 15px;
    }

    .page-nav a {
        font-size: 0.95rem;
    }

    /* Logo on menu pages */
    .static-logo #site-concept {
        font-size: 0.6rem;
        letter-spacing: 0.15em;
        white-space: normal;
        text-align: center;
    }

    .static-logo img {
        height: 2.8em !important;
    }

    /* Page title */
    .menu-title {
        font-size: 1.6rem;
        letter-spacing: 0.12em;
        margin-bottom: 6px;
    }

    .menu-note {
        font-size: 0.8rem;
        line-height: 1.7;
        margin-bottom: 25px;
        letter-spacing: 0.05em;
    }

    /* Menu section & items */
    .menu-section {
        gap: 18px;
    }

    .menu-item {
        padding: 18px 15px;
    }

    .reservation-card {
        padding: 25px 15px !important;
    }

    .menu-item-header {
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
    }

    .menu-item-price {
        align-self: flex-end;
        font-size: 1.1rem;
    }

    .menu-item-name {
        font-size: 1.05rem;
        letter-spacing: 0.08em;
        line-height: 1.5;
    }

    .menu-item-desc {
        font-size: 0.88rem;
        line-height: 1.85;
        letter-spacing: 0.03em;
    }

    /* Option rows */
    .menu-item-options {
        padding: 12px 15px;
    }

    .option-row {
        flex-direction: column;
        gap: 3px;
        border-bottom: 1px dashed rgba(255,255,255,0.1);
        padding-bottom: 8px;
        margin-bottom: 8px;
        font-size: 0.9rem;
    }

    .option-row:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

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

    /* Footer */
    .menu-footer {
        margin-top: 40px;
    }

    .menu-footer .copyright {
        font-size: 0.72rem;
        letter-spacing: 0.05em;
        padding: 15px 10px;
    }

    /* Inline text inside menu items (inline style overrides) */
    .menu-item p,
    .menu-item h2,
    .menu-item h3,
    .menu-item h4,
    .menu-item h5 {
        word-break: break-word;
        overflow-wrap: break-word;
    }

    /* Text in the reservation/info/hamburg pages that uses inline styles */
    .menu-container p,
    .menu-container h2,
    .menu-container h3 {
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .reservation-policy {
        text-align: left !important;
    }

    .text-left-mobile {
        text-align: left !important;
    }

    .btn-mobile-single {
        padding: 12px 10px !important;
        font-size: 0.85rem !important;
        letter-spacing: 0.05em !important;
        white-space: nowrap !important;
    }

    /* HOURS display blocks */
    .menu-container [style*="font-size: 1.15rem"][style*="letter-spacing"] {
        font-size: 1rem !important;
    }

    .menu-container [style*="font-size: 2.2rem"] {
        font-size: 1.6rem !important;
    }

    .menu-container [style*="font-size: 1.5rem"] {
        font-size: 1.1rem !important;
    }

    .menu-container [style*="font-size: 1.4rem"] {
        font-size: 1.15rem !important;
    }

    .menu-container [style*="font-size: 1.3rem"] {
        font-size: 1.1rem !important;
    }

    .menu-container [style*="font-size: 1.05rem"],
    .menu-container [style*="font-size: 1.1rem"] {
        font-size: 0.93rem !important;
        line-height: 1.85 !important;
    }

    /* Product card in gift page */
    .menu-container div[style*="justify-content: space-between"][style*="flex-wrap"] {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 12px !important;
    }

    /* Phone number */
    .menu-container a[href^="tel"] {
        font-size: 1.4rem !important;
        letter-spacing: 0.08em !important;
        padding: 12px 25px !important;
    }

    /* Instruction boxes */
    .instruction-box {
        padding: 15px 15px;
    }

    .instruction-box h4 {
        font-size: 1rem;
    }

    .instruction-box p {
        font-size: 0.88rem;
    }

    /* br tags: hide on mobile to avoid awkward breaks */
    .menu-item p br,
    .menu-container > main p br {
        display: none;
    }
}

/* Extra small phones */
@media (max-width: 375px) {
    .menu-title {
        font-size: 1.35rem;
        letter-spacing: 0.08em;
    }

    .menu-item {
        padding: 15px 12px;
    }

    .menu-item-name {
        font-size: 1rem;
    }

    .menu-item-desc {
        font-size: 0.85rem;
    }

    .page-nav {
        gap: 8px;
    }
    .page-nav a {
        font-size: 0.85rem;
    }
}
