@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Brand Color Tokens */
  --primary: #FF8F00;       /* 등불 주황 (Amber Orange) */
  --secondary: #FFB7C5;     /* 벚꽃 핑크 (Cherry Blossom Pink) */
  --bg-warm: #F7F4EB;       /* 아늑한 크림 베이지 배경 */
  --text-dark: #1E1E1E;     /* 미드나잇 차콜 */
  --text-muted: #6B7280;    /* 차분한 그레이 */
  --white: #FFFFFF;
  --black: #000000;
  
  /* Structure Tokens */
  --radius-card: 12px;      /* 카드 및 입력 필드 */
  --radius-pill: 100px;     /* GNB 탭 및 주요 버튼 */
  
  /* Font Tokens */
  --font-family: 'Outfit', 'Noto Sans KR', sans-serif;
  --letter-spacing: -0.03em;
  
  /* Shadow Tokens */
  --shadow-soft: 0 20px 50px -10px rgba(255, 143, 0, 0.08), 0 0 1px rgba(255, 143, 0, 0.15);
  --shadow-hover: 0 30px 60px -12px rgba(255, 143, 0, 0.16), 0 0 1px rgba(255, 143, 0, 0.25);
  
  /* Animation Tokens */
  --transition-bezier: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
}
