/**
 * Wine Serenity Journal - Main CSS
 * 全体のスタイルを統合
 */

/* すべてのCSSファイルはfunctions.phpで個別に読み込まれます */
/* このファイルは追加のグローバルスタイル用 */

/* スムーススクロール */
html {
  scroll-behavior: smooth;
}

/* セレクション色 */
::selection {
  background-color: #8b3d7c;
  color: #ffffff;
}

::-moz-selection {
  background-color: #8b3d7c;
  color: #ffffff;
}

/* フォーカススタイル（アクセシビリティ） */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid #6b2d5c;
  outline-offset: 2px;
}

/* WordPress管理バー調整 */
.admin-bar .wsj-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .wsj-header {
    top: 46px;
  }
}

/* ローディング状態 */
.wsj-loading {
  opacity: 0.6;
  pointer-events: none;
}

/* プリント用スタイル */
@media print {
  .wsj-header,
  .wsj-footer,
  .wsj-hero__actions {
    display: none;
  }
}

