/* Reset i varijable. */
/* ================================================
   RESET & BASE
   ================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #FBF5EE;
  color: #2B1A10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ================================================
   CSS VARIABLES — matching pas.kitchen exactly
   ================================================ */
:root {
  --white: #fff;
  --paragraphs: #341621;
  --heading: #1f1b1a;
  --green: #00a36c;
  --orange: #fb8c23;
  --border: #e8e3df;
  --background: #f4f2f0;
  --light: #cbe9de;
}
