/*
Theme Name: Snapswer
Theme URI: https://snapswer.com
Author: Rumos
Author URI: https://snapswer.com
Description: A lightweight WordPress theme for Snapswer.
Version: 4.0.1
Requires at least: 6.7
Tested up to: 7.0
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: Snapswer

----------------------------------------------------
Snapswer
----------------------------------------------------

Filename : style.css
File Path: /wp-content/themes/Snapswer/style.css
Build    : 004-001
Author   : Snapswer

Development Rules
-----------------
- Minimal Design
- WordPress Coding Standards
- WooCommerce Ready
- Mobile First
- Production Ready
*/

/* ==================================================
   Theme Variables
================================================== */

:root {

    --ra-primary: #5B5CF0;
    --ra-secondary: #6F8DFF;

    --ra-text: #111827;
    --ra-text-light: #6B7280;

    --ra-background: #FFFFFF;
    --ra-border: #E5E7EB;

    --ra-radius: 18px;

    --ra-container: 1200px;

}

/* ==================================================
   Base
================================================== */

html {

    scroll-behavior: smooth;

}

body {

    margin: 0;

    background: var(--ra-background);

    color: var(--ra-text);

    font-family:
        Inter,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

}