/* 基本設定 */
body {
    margin: 0;
    padding: 0;
    font-family: 'Noto Serif JP', serif;
    color: #332b24; /* 焦げ茶 */
    line-height: 1.8;
    background-color: #f9f7f2; /* 優しいアイボリー */
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* ヘッダー */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.9);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* 薄く影を追加 */
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: #332b24;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: #332b24;
    font-size: 0.9rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #8b7355; /* ホバー時にアクセントカラーへ */
}

/* ヒーローエリア */
#hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* 画像の上に薄い黒を被せて文字を読みやすくする */
#hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.25);
    pointer-events: none;
}

/* カルーセル（画像スライダー） */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.35);
    border: none;
    color: white;
    font-size: 1.4rem;
    padding: 12px 14px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 2;
}

.carousel-control:hover {
    background: rgba(0,0,0,0.55);
}

.carousel-control.prev {
    left: 18px;
}

.carousel-control.next {
    right: 18px;
}

.carousel-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: background 0.2s;
    border: 1px solid rgba(255,255,255,0.7);
}

.carousel-dot.active {
    background: rgba(255,255,255,0.95);
}

.hero-text {
    position: relative;
    z-index: 3;
}

.hero-text h1 {
    font-size: 2.5rem;
    text-align: center;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    line-height: 1.4;
}

/* コンテンツセクション共通 */
h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    position: relative;
    color: #332b24;
}

h2::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #8b7355; /* アクセントカラー */
    margin: 15px auto;
}

.flex {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.flex.reverse {
    flex-direction: row-reverse;
}

.text, .image {
    flex: 1;
    min-width: 300px;
}

.image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* =========================================
   ここからメニュー専用のスタイル (大幅改修)
   ========================================= */

/* メニューの導入文 */
.menu-intro {
    text-align: center;
    margin-bottom: 50px;
    font-size: 0.95rem;
}

/* 左右2カラムのレイアウト */
.menu-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start; /* 上揃え */
}

.menu-column {
    flex: 1;
    min-width: 300px; /* スマホで狭くなりすぎないように */
}

/* Drink / Sweets の見出し */
.menu-column h3 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: #8b7355; /* アクセントカラーを使用 */
    border-bottom: 1px solid #d3cdc5;
    padding-bottom: 10px;
    letter-spacing: 0.05em;
}

/* メニューリスト本体 (dl) */
.menu-list {
    margin: 0;
    padding: 0;
}

/* 個別のメニュー項目 */
.menu-item {
    margin-bottom: 25px; /* アイテム間の余白 */
    border-bottom: 1px dotted #d3cdc5; /* 薄い点線で区切る */
    padding-bottom: 15px;
}
.menu-item:last-child {
    border-bottom: none;
}

/* メニュー名と価格の横並び設定 */
.menu-item dt {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-weight: bold;
    font-size: 1.05rem;
    margin-bottom: 5px;
    color: #332b24;
}

/* (Hot/Ice)などの注釈 */
.menu-item dt span {
    font-size: 0.8rem;
    font-weight: normal;
    color: #666;
    margin-left: 8px;
}

/* 価格（画面上には表示しない） */
.menu-item .price {
    display: none;
}

/* 価格表示用の装飾は隠しておくためコメントアウト */
/*
.menu-item .price {
    margin: 0;
    font-family: 'Noto Serif JP', serif;
    font-weight: bold;
    color: #332b24;
}

.menu-item .price::before {
    content: "¥";
    font-size: 0.8rem;
    margin-right: 3px;
    font-weight: normal;
}
*/

/* 説明文 */
.menu-item .desc {
    margin: 5px 0 0 0;
    font-size: 0.85rem;
    color: #5d554e; /* 少し薄い茶色 */
    line-height: 1.6;
}

/* =========================================
   ここまでメニュー専用スタイル
   ========================================= */


/* アクセス・フッター */
.info {
    text-align: center;
    margin-bottom: 30px;
    background: white;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info p {
    margin: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}
.info p:last-child {
    border-bottom: none;
}

.map {
    border: 5px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    line-height: 0; /* 地図の下の隙間を消す */
}

footer {
    text-align: center;
    padding: 40px;
    background: #332b24;
    color: #f9f7f2;
    margin-top: 60px;
}

/* スマホ対応 */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .container {
        padding: 40px 20px;
    }

    /* メニューをスマホで縦並びにした時の余白調整 */
    .menu-container {
        gap: 40px;
    }
}