/* ================================================
   assets/css/variables.css — Root variables for the Artisan Roastery template
   ================================================ */

:root {
  /* ----------------------------------------------
     Colors
     ---------------------------------------------- */
  /* TODO: Sesuaikan dengan kebutuhan (primary, accent, dll) */
  --color-primary: #6f4c3e;        /* Cokelat tembakau hangat */
  --color-primary-dark: #3e2723;    /* Cokelat gelap untuk hover/kontras */
  --color-secondary: #d9c5b5;       /* Krem lembut sebagai latar pendukung */
  --color-accent: #a85f2e;          /* Oranye kecoklatan untuk aksen/CTA */
  --color-bg: #ffffff;               /* Putih bersih untuk latar utama */
  --color-text: #2d2d2d;             /* Hampir hitam untuk teks utama */
  --color-text-muted: #6b6b6b;       /* Abu-abu sedang untuk teks sekunder */

  /* ----------------------------------------------
     Typography
     ---------------------------------------------- */
  /* TODO: Ganti font jika diperlukan */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --font-size-xs: 0.75rem;   /* 12px */
  --font-size-sm: 0.875rem;  /* 14px */
  --font-size-base: 1rem;    /* 16px */
  --font-size-md: 1.125rem;  /* 18px */
  --font-size-lg: 1.5rem;    /* 24px */
  --font-size-xl: 2rem;      /* 32px */
  --font-size-2xl: 2.5rem;   /* 40px */
  --font-size-3xl: 3rem;     /* 48px */

  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.8;

  /* ----------------------------------------------
     Spacing (Gunakan kelipatan 4px untuk konsistensi)
     ---------------------------------------------- */
  --space-1: 0.25rem;  /* 4px */
  --space-2: 0.5rem;   /* 8px */
  --space-3: 0.75rem;  /* 12px */
  --space-4: 1rem;     /* 16px */
  --space-5: 1.5rem;   /* 24px */
  --space-6: 2rem;     /* 32px */
  --space-8: 2.5rem;   /* 40px */
  --space-10: 3rem;    /* 48px */
  --space-12: 4rem;    /* 64px */
  --space-16: 6rem;    /* 96px */

  /* ----------------------------------------------
     Layout
     ---------------------------------------------- */
  --container-max-width: 1280px;
  --container-padding: var(--space-4); /* 16px */

  --grid-gap: var(--space-6); /* 32px */

  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-full: 9999px;

  --box-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --box-shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --box-shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* ----------------------------------------------
     Breakpoints (digunakan dalam responsive.css)
     ---------------------------------------------- */
  --breakpoint-sm: 480px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;

  /* ----------------------------------------------
     Z-index scale
     ---------------------------------------------- */
  --z-below: -1;
  --z-normal: 1;
  --z-above: 10;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal: 1000;
}