/*
 Theme Name:   Cardinal Roofing
 Theme URI:    https://cardinalroofpro.com
 Description:  Cardinal Roofing child theme for GeneratePress
 Author:       Old Forrest Consulting
 Author URI:   https://oldforrestconsulting.com
 Template:     generatepress
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 Text Domain:  cardinal-roofing
*/

/* ========================================
   CSS Custom Properties
   ======================================== */

:root {
  --cr-red: #c22026;
  --cr-dark-red: #b70000;
  --cr-dark-gray: #222222;
  --cr-black: #000000;
  --cr-light-gray: #b1b1b1;
  --cr-white: #ffffff;
  --cr-bg-gray: #f5f5f5;
  --cr-font: 'Poppins', sans-serif;
  --cr-font-body: 'Nunito', sans-serif;
  --cr-max-width: 1260px;
}

/* ========================================
   Global Base Styles
   ======================================== */

body {
  font-family: var(--cr-font);
  color: var(--cr-dark-gray);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease, background-color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}
