/*
Theme Name: Baskets Theme
Theme URI: https://example.com
Author: Hiro
Description: 本八幡バスケッツ用のシンプルなオリジナルテーマ
Version: 1.0
Text Domain: baskets-theme
*/

/* ここに必要に応じてCSSを追記してください。
 * いまは最低限だけ定義しています。
 */

body {
  margin: 0;
}

/* カスタムスクロールバー */
.custom-scrollbar::-webkit-scrollbar {
  width: 8px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* テキスト選択時の色 */
::selection {
  background-color: #fed7aa;
  color: #9a3412;
}
::-moz-selection {
  background-color: #fed7aa;
  color: #9a3412;
}

/* 高さが十分ある画面でのヒーローボタンナビ拡大 */
@media (min-height: 740px) {
  .hero-nav-grid {
    gap: 1.5rem;
  }
  .hero-nav-item {
    transform: scale(1.08);
  }
  .hero-nav-tag {
    font-size: 1rem;
    letter-spacing: 1rem;
  }
  .hero-nav-label {
    font-size: 1.3rem;
  }
}

