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

:root {
  --primary: #B76E79; /* Rose Gold */
  --primary-rgb: 183, 110, 121;
  --secondary: #FFC0CB; /* Pastel Pink */
  --secondary-rgb: 255, 192, 203;
  --background: #FAF0E6; /* Milk Tea Beige */
  --text: #2B1B17; /* Espresso Charcoal */
  --white: #FFFFFF;
  --light-gray: #E0D0C0;
  
  /* Border Radii */
  --radius-card: 12px;
  --radius-input: 12px;
  --radius-pill: 100px;
  
  /* Typography */
  --font-main: 'Outfit', 'Noto Sans KR', sans-serif;
  --letter-spacing: -0.03em;
  
  /* Shadows and Transitions */
  --shadow-soft: 0 20px 50px -10px rgba(183, 110, 121, 0.08), 0 0 1px rgba(183, 110, 121, 0.15);
  --shadow-hover: 0 30px 60px -15px rgba(183, 110, 121, 0.15), 0 0 2px rgba(183, 110, 121, 0.2);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.06);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Global Reset/Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background-color: var(--background);
  color: var(--text);
  letter-spacing: var(--letter-spacing);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
