/* 
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 + Futured Studio
Author URI: https://Futured.Studio/
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 */
/* Fixed + Blur Header */
/* Force Elementor Header (theme builder) to be fixed + blur */
.elementor-location-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;

  /* Blur background */
  background-color: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;

  transition: all 0.4s ease-in-out;
}

/* Links inside header */
.elementor-location-header a {
  color: white !important;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

/* Prevent content from hiding under header */
body {
  padding-top: 100px; /* adjust to match your header height */
}
