/* メニューページ専用スタイル (page-menu.css) */

.menu-page-main {
    padding-top: 0 !important; /* ヘッダーの高さ分下げる */
    background: var(--bg-color);
}

/* ヒーロー（タイトル）セクション */
.menu-hero {
    text-align: center;
    padding: 6rem 1rem 6rem;
    position: relative;
    background: linear-gradient(to bottom, rgba(20,20,20,0.9), var(--bg-color));
}

.page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-family: var(--font-title);
    color: var(--accent-color);
    letter-spacing: 0.2em;
    margin: 0 0 0.8rem; /* ボーダーまでの距離を近くする */
}

.page-subtitle {
    font-size: 1.4rem;
    color: var(--text-color);
    letter-spacing: 0.1em;
}

/* PICK UP セクション (front-page.cssのスタイルを一部流用・調整) */
.menu-pickup-section {
    padding: 2rem 7rem 6rem;
    text-align: center;
}

.menu-pickup-section .section-title {
    font-size: 2rem;
    color: #fff; /* 白に変更 */
    margin-bottom: 4rem;
    font-family: var(--font-title);
    letter-spacing: 0.1em;
    border-bottom: 1px solid #fff; /* 白に変更 */
    display: inline-block;
    padding-bottom: 0.5rem;
}

/* --- PICK UP Card Styles (移植) --- */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* PC表示時に4列で均等に横並び */
    gap: 0;
    margin-bottom: 4rem;
    justify-content: center;
    justify-items: center;
}

.menu-item-card {
    background: transparent;
    border: none;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 75%;
    width: 75%;
}

.menu-item-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem; 
}

.menu-price {
    font-family: var(--font-title);
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0.2rem 0 0.8rem;
}

.menu-img-wrapper {
    margin-bottom: 1rem;
}

/* 通常メニューセクション */
.standard-menu-section {
    padding: 2rem 1rem 8rem;
    max-width: 1000px;
    margin: 0 auto;
}

.menu-category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.menu-category-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
}

.menu-category-box.box-full {
    grid-column: 1 / -1; /* 最後など幅広で表示したい場合 */
}

.category-title {
    font-size: 1.35rem; /* 大きく */
    color: var(--accent-color);
    margin: 0 0 1.5rem;
    text-align: center;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
    padding-bottom: 0.8rem;
    letter-spacing: 0.1em;
}

.drink-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.drink-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* うっすらとした区切り線 */
    padding-bottom: 0.5rem;
}

.drink-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.drink-name {
    font-size: 1.1rem; /* 0.95から大きく */
    line-height: 1.5;
    max-width: 70%;
}

.drink-price {
    font-size: 1.25rem; /* 1.1から大きく */
    font-family: var(--font-title);
    color: var(--accent-color);
    font-weight: bold;
    white-space: nowrap;
}

.menu-notice {
    text-align: center;
    margin-top: 5rem;
    font-size: 0.9rem;
    line-height: 1.8;
    color: #ccc;
    background: rgba(0,0,0,0.5);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* スマホ表示対応 */
@media (max-width: 768px) {
    /* ヒーローセクション（上部の空白）の調整 */
    .menu-hero {
        padding: 5rem 1rem 4rem; /* 上下の余白を狭める */
    }
    .menu-item-card {
        max-width: 100%;
        width: 100%;
    }
    .page-subtitle {
        font-size: 1rem;
    }
    .menu-pickup-section {
        padding: 2rem 1rem 6rem;
    }
    /* PICK UP の文字サイズ調整 */
    .menu-pickup-section .section-title {
        font-size: 1.5rem; /* 2remから少し小さく */
        margin-bottom: 2rem; /* 下の画像との距離も少し詰める */
    }

    .menu-category-grid {
        grid-template-columns: 1fr; /* スマホでは1列 */
        gap: 2rem;
    }

    .drink-list li {
        flex-direction: column; /* スマホでは価格を名前の下に配置 */
        align-items: flex-start;
    }

    /* カクテル名の改行等を考慮したスマホ用文字サイズ再調整 */
    .drink-name {
        font-size: 0.95rem; /* スマホ時は少し戻す */
        max-width: 100%;
        margin-bottom: 0.5rem;
    }

    .drink-price {
        font-size: 1.1rem; /* スマホ時は戻す */
        align-self: flex-end; 
    }

    /* PICK UP Card - スマホ表示用レイアウト */
    .menu-grid {
        grid-template-columns: repeat(2, 1fr); /* スマホ時は左右に2つずつ並べる（2列構成） */
        gap: 3.5rem 1.5rem; 
    }
    .menu-item-card h4 {
        font-size: 1.05rem; 
        margin-bottom: 0.3rem;
    }
    .menu-price {
        font-size: 1rem; 
    }
    .menu-item-card p:not(.menu-price) {
        font-size: 0.75rem;
    }
    .menu-img-wrapper {
        margin-bottom: 0.8rem;
    }
}

