/*
 Theme Name:   Hello Elementor Child
 Theme URI:    https://example.com
 Description:  Child theme for Hello Elementor
 Author:       Your Name
 Author URI:   https://example.com
 Template:     hello-elementor
 Version:      1.0.0
*/

/* You can add custom CSS below */

/* Base nav bar */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: transform 300ms ease;
  will-change: transform;
}

/* Add gradient as overlay */
#navbar::before {
  content: "";
  position: absolute;
  inset: 0; /* cover full area */
  background-image: linear-gradient(180deg, #D3D3D3 0%, #22AA7A 91%);
  opacity: 1;
  transition: opacity 220ms ease;
  z-index: -1; /* keep behind content */
}

/* Transparent at top */
#navbar.header--transparent::before {
  opacity: 0; /* fade out gradient */
}

/* Solid (gradient visible) after scroll */
#navbar.header--solid::before {
  opacity: 1;
}

/* Slide up when hidden */
#navbar.header--hidden {
  transform: translateY(-100%) !important;
}
.page-header {
  display: none !important;
}
.grecaptcha-badge {
    visibility: hidden; /* completely hide */
}