/*
Theme Name: Hello Elementor Child
Theme URI: https://sharpinfos.com/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://sharpinfos.com/
Template: hello-elementor
Version: 1.0.1
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
*/
/* Header Social Icons Wrapper */
.header-social-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px !important;
  height: 25px !important;
  background-color: #ffffff;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.3s ease;
  flex-shrink: 0;
}

.header-social-link svg {
  width: 13px;
  height: 13px;
  fill: #0b1a2c; /* Default icon color */
  transition: fill 0.3s ease;
}

/* Hover Colors */
.header-social-link:hover,
.header-social-link:focus,
.header-social-link:active {
  background-color: #C9A45C !important; /* Gold background */
}

.header-social-link:hover svg,
.header-social-link:focus svg,
.header-social-link:active svg {
  fill: #FFFFFF !important; /* White icon */
}

/* Push Animation Keyframes (Fallback if Elementor's CSS isn't loaded globally) */
@keyframes elementor-animation-push {
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}

.elementor-animation-push:active, 
.elementor-animation-push:focus, 
.elementor-animation-push:hover {
  animation-name: elementor-animation-push;
  animation-duration: 0.3s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
}
