/*
Theme Name: Gowilds Child
Theme URI: https://gaviaspreview.com/wp/gowilds/
Author: Gaviasthemes Team
Author URI: https://themeforest.net/user/gavias
Description: Child theme for the Gowilds theme.
Template: gowilds
Version: 1.0.0
*/

/* -----------------------------
   CUSTOM COLORS
------------------------------*/

/* Keep background + text as original */
:root {
    --primary-color: #0099cc;   /* Main brand color */
    --secondary-color: #006b8c; /* Hover & accents */
}

/* -----------------------------
   APPLY PRIMARY COLORS
------------------------------*/

/* Buttons */
button,
.btn,
.wp-block-button__link {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
}

button:hover,
.btn:hover,
.wp-block-button__link:hover {
    background-color: var(--secondary-color);
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Navigation */
header .menu a:hover {
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: #fff;
}

footer a {
    color: #fff;
    opacity: 0.9;
}

footer a:hover {
    opacity: 1;
}
