:root{

  /* Colors */
  --bg-color:#F4F4F4;
  --primary-color:#7A8B6F;
  --secondary-color:#D8B4A0;
  --text-color:#2B2B2B;
  --white-color:#ffffff;
  --light-color:#EFEADF;
  --border-color:#E4DED3;

  /* Typography */
  --heading-font:'Playfair Display', serif;
  --body-font:'Poppins', sans-serif;

  /* Radius */
  --radius-sm:12px;
  --radius-md:20px;
  --radius-lg:32px;
  --radius-full:999px;

  /* Shadows */
  --shadow-sm:
  0 4px 12px rgba(0,0,0,0.04);

  --shadow-md:
  0 10px 30px rgba(0,0,0,0.08);

  /* Transition */
  --transition:
  all 0.3s ease;

  /* Container */
  --container-width:1400px;

}

