/* ============================
   Sea Theme Custom Styles
   ============================ */

/* 全体の背景・文字色：砂浜っぽい薄いベージュ × 濃いめ文字色 */
body {
    background: #e6f2f7; /* 明るい水色がかった背景 */
    color: #12313f;      /* 少し青みがかった落ち着いた文字色 */
}

/* コンテンツの白カード感を少し強調 */
#content .container-fluid,
.article-content,
.page-header {
    border-radius: 6px;
}

/* ナビゲーションバー：深い海のグラデーション */
.navbar-inner {
    background: linear-gradient(90deg, #01579b, #0288d1); /* 濃い青 → 明るい青 */
    border: none;
    box-shadow: 0 2px 6px rgba(0, 40, 70, 0.4);
}

/* ブランド名（サイト名） */
.navbar .brand,
.navbar .brand .site-name {
    color: #e0f7fa !important;
    font-weight: 700;
    letter-spacing: 0.04em;
}

/* ナビゲーションリンク（ホーム / 海遊びガイド / スポット紹介） */
.navbar .nav > li > a {
    color: #e0f7fa !important;
    text-shadow: none;
    padding: 10px 14px;
}

.navbar .nav > li > a:hover,
.navbar .nav > li > a:focus {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
}

/* アクティブっぽいリンク（今後class="active"を付けたとき用） */
.navbar .nav > .active > a,
.navbar .nav > .active > a:hover,
.navbar .nav > .active > a:focus {
    background: rgba(0, 0, 0, 0.15) !important;
    color: #ffffff !important;
}

/* 記事タイトル */
article h1,
article h2,
.page-header h1 {
    color: #00527a;
}

/* 見出しの下にうっすらボーダー（波のイメージ） */
.page-header {
    border-bottom: 3px solid rgba(0, 150, 199, 0.3);
    padding-bottom: 8px;
}

/* 通常リンク：海の青 */
a {
    color: #0077b6;
    text-decoration: none;
}

a:hover,
a:focus {
    color: #00b4d8;
    text-decoration: underline;
}

/* サイドバーの見出し */
#article-sidebar h4 {
    color: #006c84;
    border-bottom: 1px solid rgba(0, 150, 199, 0.25);
    padding-bottom: 3px;
}

/* タグのバッジっぽい表示 */
.list-of-tags a {
    background: #e0f7fa;
    border-radius: 3px;
    padding: 2px 6px;
    color: #006064 !important;
}

.list-of-tags a:hover {
    background: #00bcd4;
    color: #ffffff !important;
}

/* フッター：少し暗い深海色 */
footer {
    background: #013a63;
    color: #e0f7fa;
    padding: 16px 0;
    margin-top: 30px;
    border-top: none;
}

footer a {
    color: #b2ebf2;
}

footer a:hover {
    color: #ffffff;
}

/* PhotoSwipe 背景のトーンを少し青寄りに */
.pswp__bg {
    background-color: rgba(0, 30, 60, 0.9);
}

/* ============================
   Breadcrumb (パンくずリスト)
   ============================ */

nav.breadcrumb {
    margin: 10px 0 20px;
    font-size: 0.9em;
}

nav.breadcrumb ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav.breadcrumb li {
    display: inline;
    color: #006c84; /* 少し深めの海色 */
}

nav.breadcrumb li + li:before {
    content: " › ";
    color: #80a9bd; /* 矢印の色（薄めの青） */
}

nav.breadcrumb a {
    color: #0077b6;
    text-decoration: none;
}

nav.breadcrumb a:hover,
nav.breadcrumb a:focus {
    color: #00b4d8;
    text-decoration: underline;
}

/* 右揃えの「詳しくは」リンク */
.right-link {
    text-align: right;
    margin-top: 6px;
    font-size: 0.95em;
}

.right-link a {
    color: #0077b6; /* 海テーマの青 */
    font-weight: 600;
}

.right-link a:hover {
    color: #00b4d8;
    text-decoration: underline;
}