/* =========================================
   🎨 Global Style for Sechs disqualifizierte Ritter
   ========================================= */

/* ---- 基本設定 ---- */
body {
  margin: 0;
  padding: 2rem;
  background-color: #111;
  color: #ccc;
  font-family: "Noto Serif JP", "Playfair Display", serif;
}

/* ---- 見出し・文字 ---- */
h1 {
  font-family: "Vidaloka", serif;
  font-size: 2rem;
  font-weight: 400;
  color: #f0f0f0;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1rem;
  color: #888;
  margin-bottom: 2rem;
}

/* ---- リンク・ボタン ---- */
a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
}

a:hover {
  color: #fff;
}

.link-button {
  background: #222;
  border: 1px solid #ccc;
  color: #ccc;
  padding: 1rem 2rem;
  border-radius: 10px;
  margin: 1rem;
  display: inline-block;
  transition: all 0.3s ease;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.03em;
}

.link-button:hover {
  background: #ccc;
  color: #111;
}

/* ---- イメージ（トップ画像など） ---- */
.splash-img {
  max-width: 100%;
  height: auto;
  margin-bottom: 2rem;
  border-radius: 10px;
  border: 1px solid #333;
}

/* ---- 言語切り替え部分 ---- */
.lang-switch {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #888;
}

/* ---- フォント定義（Google Fonts適用補助） ---- */
.vidaloka-regular {
  font-family: "Vidaloka", serif;
  font-weight: 400;
  font-style: normal;
}

.playfair-display {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/* ---- 共通トランジション ---- */
* {
  transition: all 0.3s ease-in-out;
}
