/* Global Base Styles */

body {
  margin: 0;
  padding: 0;
  font-family: 'Nimbus Sans L', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-variant-ligatures: none !important;
  font-feature-settings: "liga" 0, "clig" 0, "dlig" 0 !important;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* Default navigation height + buffer */
  scroll-padding-top: 50px;
}

/* Mobile navigation height + buffer */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 40px;
  }
}

/* Strong Tag Styling - Uses Global Highlight Color */
h1, h1 span,
h2, h2 span,
h3, h3 span,
h4, h4 span,
h5, h5 span,
h6, h6 span {
  font-family: "MADE Outer Sans", sans-serif;
  line-height: 1.1 !important;
}

/* Common Colors - Shared across all templates */
:root {
  --monteleva-red: #813234;
  --monteleva-green: #8a9b69;
  --monteleva-blue: #0d476e;
  --monteleva-cumbres: #184c38;
  --lighter: #F1F1F1;
}

@media (min-width: 992px) {
  .container {
    padding: 0 1.5rem !important;
  }
}
