/*!
Theme Name: Kadence Child
Theme URI: https://www.kadencewp.com/kadence-theme/
Template: kadence
Author: Kadence WP
Author URI: https://www.kadencewp.com/
Description: A child theme for the Kadence Theme.
Version: 1.0.0
License: GNU General Public License v3.0 (or later)
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: kadence-child
*/

/* Theme customization starts here
-------------------------------------------------------------- */

:root {
    --primary-color: #eeee22;
    --global-palette1: #eeee22; /* Kadence primary equivalent */
}

#wrapper {
    background-image: url('https://garyan2.net/wp-content/uploads/2026/01/background.jpg');
    background-color: #000000;
    background-size: cover;
    background-attachment: fixed;
}

body {
    color: #ffffff;
}

.content-bg, body.content-style-unboxed .site{
    background: inherit !important;
}

h1, h2, h3, h4, h5, h6, .heading-font {
    color: #f6e86a;
}

.header-bottom, .site-header {
   background-color: rgba(0, 0, 0, 0.24) !important;
}

/* Custom button animation */
.header-button a, .kb-button {
    background-image: repeating-linear-gradient(to right, #bd0f11, #f3e160);
    background-size: 200% auto;
    background-position: 0 100%;
    animation: gradient 2s linear infinite;
    animation-fill-mode: forwards;
    color: #fff !important;
    border: none !important;
}

@keyframes gradient {
    0% { background-position: 0 0; }
    100% { background-position: -200% 0; }
}

/* Caption style */
.wp-caption .wp-caption-text, .wp-block-image figcaption {
    background: #c00100;
    border: 2px dashed #000000;
    box-shadow: 0 0 50px 0px #c00100;
    border-radius: 0px 0px 50px 50px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
}

