/*
 Theme Name:   themeFreq
 Theme URI:    https://www.creativefrequencies.com
 Description:  Custom child theme for Creative Frequencies
 Author:       Wai
 Template:     go
 Version:      1.0.0
*/

/* -------------------------------------------------------------------------- */
/* GLOBAL THEME VARIABLES & DEFAULTS                                          */
/* -------------------------------------------------------------------------- */

:root {
    --brand-teal: #00777f;
    --brand-teal-dark: #004d52;
    --brand-teal-soft: rgba(0, 119, 127, 0.25);
    --brand-gold: #d4af37;
}

/* Base Body Adjustments */
body {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* Sitewide Global Default Text Selection */
::selection {
    background-color: var(--brand-teal-soft) !important;
    color: var(--brand-teal-dark) !important;
}

::-moz-selection {
    background-color: var(--brand-teal-soft) !important;
    color: var(--brand-teal-dark) !important;
}

/* Global Link Transition */
a {
    transition: color 0.3s ease-in-out;
}