/* ==========================================================================
   variables.css - デザイントークン（カラー・フォント・スペーシング等）
   Smile Planner ロゴ5色を基軸にしたカラーパレット
   ========================================================================== */
:root {
  /* ---- Brand Colors（ロゴ5色） ---- */
  --color-red:    #E63946; /* Primary Red（情熱） */
  --color-pink:   #EC4899; /* Primary Pink（親しみ） */
  --color-yellow: #F5B301; /* Primary Yellow（笑顔） */
  --color-green:  #7CB342; /* Primary Green（成長） */
  --color-purple: #9333EA; /* Primary Purple（創造） */

  /* ---- Base Colors ---- */
  --color-dark:   #1A1A2E; /* Base Dark ネイビー */
  --color-light:  #FAFAFA; /* Base Light オフホワイト */
  --color-text:   #2D2D2D; /* テキスト チャコール */
  --color-white:  #FFFFFF;

  /* ---- Gradients ---- */
  --gradient-hero: linear-gradient(115deg,
    var(--color-red) 0%,
    var(--color-pink) 25%,
    var(--color-yellow) 50%,
    var(--color-green) 75%,
    var(--color-purple) 100%);
  --gradient-red-pink: linear-gradient(135deg, var(--color-red), var(--color-pink));
  --gradient-yellow-green: linear-gradient(135deg, var(--color-yellow), var(--color-green));
  --gradient-purple-pink: linear-gradient(135deg, var(--color-purple), var(--color-pink));
  --gradient-dark-overlay: linear-gradient(180deg, rgba(26,26,46,0.0) 0%, rgba(26,26,46,0.85) 100%);

  /* ---- Typography ---- */
  --font-jp: 'Noto Sans JP', sans-serif;
  --font-en: 'Montserrat', sans-serif;
  --font-display: 'Bebas Neue', 'Montserrat', sans-serif;

  --fs-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.85rem);
  --fs-sm: clamp(0.875rem, 0.83rem + 0.2vw, 1rem);
  --fs-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --fs-lg: clamp(1.15rem, 1.05rem + 0.4vw, 1.4rem);
  --fs-xl: clamp(1.5rem, 1.3rem + 0.8vw, 2rem);
  --fs-2xl: clamp(2rem, 1.6rem + 1.6vw, 3rem);
  --fs-3xl: clamp(2.5rem, 1.9rem + 2.5vw, 4.5rem);
  --fs-hero: clamp(2.8rem, 2rem + 4vw, 6.5rem);

  /* ---- Spacing ---- */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  /* ---- Layout ---- */
  --container-max: 1280px;
  --header-height: 84px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;

  /* ---- Shadow ---- */
  --shadow-sm: 0 2px 8px rgba(26,26,46,0.08);
  --shadow-md: 0 8px 24px rgba(26,26,46,0.12);
  --shadow-lg: 0 20px 48px rgba(26,26,46,0.18);
  --shadow-glow: 0 0 40px rgba(236,72,153,0.25);

  /* ---- Transition ---- */
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* ---- Z-index ---- */
  --z-header: 1000;
  --z-modal: 2000;
}
