/**
 * Arroyo Management Theme
 *
 * File: main.css
 * Description: Global site styles, CSS variables, typography,
 * layout containers, utility classes, and shared components.
 *
 * @package ArroyoTheme
 * @author Ben Wouden
 * @version 1.0.0
 * @since 1.0.0
 */

/* ==========================================================================
   CSS Variables
   ========================================================================== */

:root {
    --arroyo-green: #007a3d;
    --arroyo-green-dark: #005f2f;

    --arroyo-silver: #abb8c3;
    --arroyo-silver-light: rgba(171, 184, 195, 0.25);
    
    --arroyo-gray: #bfc3c7;
    
    --arroyo-blue: #3399db;
    --arroyo-blue-dark: #2b88c6;

    --arroyo-dark: #2d2d2d;
    --arroyo-light: #f8f8f8;
    --arroyo-border: #e5e5e5;

    --arroyo-max-width: 1170px;
    
    --arroyo-radius: 4px;
}
/* ==========================================================================
   Base Styles
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    color: var(--arroyo-dark);
    background: #ffffff;
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.arroyo-container {
    max-width: var(--arroyo-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   Links
   ========================================================================== */

a {
    color: var(--arroyo-green);
    transition: color .2s ease;
}

a:hover {
    color: #005f2f;
}