/* ===============================
   Global Navigation Styles
   =============================== */

/* ナビゲーションリスト全体を横並びにする */
.Header__navList {
    display: flex;
    /* 横並びに */
    flex-direction: row;
    justify-content: center;
    /* 水平方向中央寄せ */
    align-items: center;
    /* 垂直方向中央寄せ */
    list-style: none;
    /* リストマーカー削除 */
    margin: 0;
    padding: 0;
}

/* 各ナビ項目のスタイル */
.Header__navItem {
    position: relative;
    /* ドロップダウンの基点に */
    margin: 0 15px;
}

/* ナビゲーション内のリンクスタイル */
.Header__navMainLink {
    text-decoration: none;
    color: #111;
    font-weight: bold;
    padding: 10px;
    display: inline-block;
}

/* ドロップダウンの初期状態（非表示） */
.Header__navDrop {
    display: none;
    position: absolute;
    top: 100%;
    /* ナビリンクの真下に表示 */
    left: 0;
    background-color: white;
    min-width: 180px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* 影をつけて浮かせる */
    z-index: 999;
}

/* ホバー時にドロップダウンを表示 */
.Header__navItem:hover .Header__navDrop {
    display: block;
}

/* ドロップダウン内の項目 */
.Header__navDropItem {
    padding: 10px 20px;
}

/* ドロップダウン内のリンク */
.Header__navDropItem a {
    color: #333;
    text-decoration: none;
    display: block;
}

/* ホバー時の背景色 */
.Header__navDropItem a:hover {
    background-color: #f0f0f0;
}

/* ▼ NOMAD ART JOURNEY Branding ▼ */
.Header__branding {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 2rem;
}

.logo-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #111;
}

.logo-sub {
    font-family: 'Shadows Into Light', cursive;
    font-size: 1.2rem;
    color: #666;
    margin-top: 0.2rem;
}

/* 右クリック禁止 */
img {
    pointer-events: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    user-select: none;
}

/* ===============================
   ▼ モバイル時のナビゲーション調整 ▼
   =============================== */
@media screen and (max-width: 768px) {
  .js-Hamburger__inner {
    width: 100% !important;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .js-Hamburger__scroller {
    padding: 1rem;
    max-height: 80vh;
    overflow-y: auto;
  }

  .Header__navList {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem 0;
  }

  .Header__navItem {
    width: 100%;
    text-align: center;
  }

  .Header__navMainLink {
    font-size: 1rem;
    padding: 0.3rem 0;
  }
}