/**
 * CLAT SARTHY Design Tokens & Root Variables
 */
:root {
  /* HSL Color Tokens */
  --primary: #3d1700;
  --primary-hover: #c62828;
  --primary-light: #fdeceb;
  --text-dark: #111318;
  --text-charcoal: #3c4852;
  --text-muted: #7a8b94;
  --bg-white: #ffffff;
  --bg-peach: #ffeed7;
  --bg-gray: #fafafa;
  --border-light: #eceef1;
  --border-gray: #e2e5ea;

  /* Typography */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Border Radii */
  --radius-pill: 30px;
  --radius-card: 16px;
  --radius-panel: 28px;
  --radius-inner: 12px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(16,24,40, 0.04);
  --shadow-md: 0 10px 24px rgba(16,24,40, 0.08);
  --shadow-lg: 0 18px 30px -12px rgba(16,24,40, 0.18);
  --shadow-xl: 0 20px 40px rgba(0,0,0, 0.06);

  /* Transitions */
  --transition-fast: all 0.2s ease;
  --transition-normal: all 0.3s ease;
}

/* Base custom styles and animations */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-charcoal);
  background-color: #fff;
  overflow-x: hidden;
}

/* Custom Slick Slider styling overrides */
.slick-dots {
  bottom: 15px !important;
}

.slick-dots li button:before {
  color: #fff !important;
  font-size: 8px !important;
  opacity: 0.5 !important;
}

.slick-dots li.slick-active button:before {
  color: #3d1700 !important;
  opacity: 1 !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #3d1700;
}
