/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
.gold-gradient-text {
    background: linear-gradient(
        135deg,
        #ebc247 0%,
        #d9a520 50%,
        #b68420 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
	display: inline;
}
:root {
    --gradient-gold: linear-gradient(
        135deg,
        hsl(45 80% 58%) 0%,
        hsl(43 74% 49%) 50%,
        hsl(40 70% 40%) 100%
    );
}

.btn-gold .elementor-button{
    background: var(--gradient-gold);
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(182, 132, 32, 0.35);
}
.btn-gold .elementor-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(182, 132, 32, 0.45);
    filter: brightness(1.05);
}

.btn-gold:active {
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(182, 132, 32, 0.3);
}

.btn-gold:focus-visible {
    outline: 2px solid hsl(45 80% 58%);
    outline-offset: 3px;
}