/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/

/*** Transparent Header on HP ***/
.home #rp_header {background: transparent;position: absolute; top: 0; z-index: 9;}

/*** Mobile Menu Background ***/
#rp_header .brx-open .brx-nav-nested-items {background-image: url(/wp-content/uploads/2025/10/Gradient-noise-18-13.jpg);}

/*** Hamburger Icon Animation ***/
/* Default state: inline SVG is visible */
.brxe-toggle svg {
  display: inline-block;
}

/* When .is-active is present, hide the inline SVG and show the new SVG as a background */
.brxe-toggle.is-active svg {
  display: none; /* Hide the inline SVG */
}

.brxe-toggle.is-active {
  background-image: url('/wp-content/uploads/2025/10/remove-2.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 30px; /* Adjust size to match your SVG */
  height: 30px; /* Adjust size to match your SVG */
}