/* Global styles for Cava De Oro Website */
:root {
  --black: #000000;
  --white: #FFFFFF;
  --navy-accent: #001056;
  --navy-light: #001d7e;
  --navy-dark: #000527;
  --gray-light: #f5f5f5;
  --gray-dark: #222222;
  --gold: #C6A57C;
  --transition: all 0.6s cubic-bezier(.19,1,.22,1);
  --transition-slow: all 0.8s cubic-bezier(.19,1,.22,1);
}

* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

