/*
Theme Name: Hello Elementor Child
Theme URI: https://example.com
Description: Child theme for Hello Elementor, customized for Custom website. This theme extends the base Hello Elementor theme with additional styling and functionality specific to custom features.
Author: Azeits
Author URI: https://azeits.com
Template: hello-elementor
Version: 3.4.4
Text Domain: hello-elementor-child
*/
/* Add your custom CSS below */

:root{
 --primary:rgba(176, 131, 21, 1);
}
.btn-primary{
	opacity: 1;
	border-radius: 8px;
	padding-top: 18px;
	padding-right: 32px;
	padding-bottom: 18px;
	padding-left: 32px;
	background: #B08315;

}
.btn-outline{
	border-width: 1px;
	opacity: 1;
	border-radius: 8px;
	padding-top: 18px;
	padding-right: 32px;
	padding-bottom: 18px;
	padding-left: 32px;
	background: #FFFFFF;
	border: 1px solid #000000
}

.bg-gradient-color{
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 229, 165, 0) 100%),
linear-gradient(270deg, rgba(255, 217, 125, 0) 20.49%, #FFFFFF 59.48%);
}

/* Sticky active state */
.glass-header-sticky.elementor-sticky--active {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

/* ======================================
   LOGO – SHOW ONLY WHEN STICKY
====================================== */
.glass-header-sticky img {
  opacity: 0;
  visibility: visible !important;
  transition: opacity 0.3s ease;
}

/* Show logo when sticky active */
.glass-header-sticky.elementor-sticky--active img {
  opacity: 1;
}

/* Menu color on top (transparent state) */
.glass-header-sticky:not(.elementor-sticky--active) a {
  color: #ffffff;
}

/* Header padding shrink on scroll */
.glass-header-sticky.elementor-sticky--active {
  padding-top: 8px;
  padding-bottom: 8px;
}

/* ======================================
   MOBILE OPTIMIZATION
====================================== */
@media (max-width: 768px) {
  .glass-header-sticky {
    backdrop-filter: blur(8px);
  }

  .glass-header-sticky.elementor-sticky--active {
    backdrop-filter: blur(10px);
  }
}

/* ======================================
   FIX CLICK / OVERLAY ISSUES
====================================== */
.glass-header-sticky {
  pointer-events: auto;
}
