/* 
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 */


.rc-header {
  position: fixed;
  top: -80px;
  left: 0; right: 0;
  height: 80px;
  background: transparent; /* transparent at the top */
  opacity: 0;
  transition: top .3s ease, opacity .3s ease, background-color .3s ease, backdrop-filter .3s ease;
  z-index: 999;
}
	/* visible */
.rc-header.show { top: 0; opacity: 1; }

/* frosted white when shown after scrolling up */
.rc-header.bg-white {
  background: rgba(255, 255, 255, 0.75);         /* semi‑transparent for glass effect */
  -webkit-backdrop-filter: blur(10px);           /* Safari */
  backdrop-filter: blur(10px);                   /* modern browsers */
  border-bottom: 1px solid rgba(0,0,0,0.06);     /* subtle hairline */
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);       /* soft depth */
}

/* prevent background scroll when menu is open */
.no-scroll { overflow: hidden; }
