/* portfolio-style.css */

/* Twenty Nineteenテーマでコンテンツ幅を広げる */
.site-main .entry-content {
    max-width: none !important;
    padding-left: 0;
    padding-right: 0;
}

/* カスタムフォントの設定 */
.pottery-portfolio-body {
    font-family: 'Noto Sans JP', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #FBFBF9; /* bg-stone-50 */
    color: #374151; /* text-gray-800 */
}
.pottery-portfolio-body h1, 
.pottery-portfolio-body h2, 
.pottery-portfolio-body h3, 
.pottery-portfolio-body .font-serif {
    font-family: 'Noto Serif JP', serif;
}
/* スムーズなスクロール */
html {
    scroll-behavior: smooth;
}
/* メインビジュアルの高さ調整 */
.hero-height {
    height: 85vh;
}
/* フッターの「Proudly powered by WordPress」を全ての画面で非表示にする (最終版) */
footer.site-footer .site-info {
    display: none !important;
}

/* ヘッダー左上の不要な要素（サイト名など）を非表示にする */
body.page-template-page-portfolio .site-branding {
    display: none;
}

/* ヘッダーのリンク色を強制的に指定（テーマのスタイルを上書き） */
#header a {
    /* Tailwind CSSのgray-800に近い黒色 */
    color: #1f2937; 
}

#header a:hover {
    /* 薄いグレーに変更 (Tailwindのgray-400相当) */
    color: #9ca3af; 
}