/* ============================================================
   demos/arch-hair/style.css
   Arch Hair Salon — カラー・フォント上書き
   ============================================================ */

/* 内ページ共通バナー */
.page-banner {
  background-color: var(--color-accent);
  padding: 3.5rem var(--container-px) 3rem;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
.page-banner__en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.page-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--color-text);
}

/* 共通：セクション見出し */
.sec-head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.sec-head__rule {
  width: 28px;
  height: 1px;
  background: var(--color-primary);
  margin: 0 auto 1rem;
}
.sec-head__en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}
.sec-head__ja {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 400;
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Shippori+Mincho:wght@400;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --color-primary:        #9B4A34;   /* ディープテラコッタ */
  --color-accent:         #F7EDE3;   /* 温かみのあるクリーム */
  --color-bg:             #FFFCF9;   /* ほんのりウォーム白 */
  --color-bg-alt:         #FAF3EB;   /* セクション交互背景 */
  --color-text:           #2D1A14;   /* 深みのある暗茶色 */
  --color-text-sub:       #7A5C52;   /* サブテキスト */
  --color-border:         #EBD9CE;   /* 暖色系ボーダー */
  --color-btn-solid-text: #ffffff;   /* primaryが十分暗いので白OK */
  --font-heading:         'Shippori Mincho', serif;
  --radius:               2px;       /* 角丸なし・エレガントに */
  --radius-lg:            4px;
}

/* ============================================================
   デモバー（全デモサイト共通・固定フッター）
   ============================================================ */
.demo-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.75rem 1.5rem;
  z-index: 9999;
  font-size: 0.8rem;
}
.demo-bar__text {
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}
.demo-bar__btn {
  display: inline-block;
  padding: 0.4em 1.2em;
  background: #9B4A34;
  color: #fff;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.8rem;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.demo-bar__btn:hover { opacity: 0.8; }

/* デモバー分の余白 */
body { padding-bottom: 52px; }

@media (max-width: 480px) {
  .demo-bar { gap: 0.75rem; padding: 0.75rem 1rem; }
  .demo-bar__text { display: none; }
}
