/* 
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 */
:root {
	--primary-color: #F77F00;
	--secondary-color: #003049;
	--tertiary-color: #D62828;
	--muted-color: #E5E5E5;
	--text-color: #0D1B2A;
	
}


/* Colore menu normale */
.transparent-header {
	transition: all 0.3s ease;
}
.transparent-header.scrolled {
	background: #ffffffb3 !important;
	backdrop-filter: blur(21px);
	-webkit-backdrop-filter: blur(21px);
  	transition: all 0.3s ease;
	padding-top: 15px;
	padding-bottom: 15px;
}
.transparent-header.scrolled #logo svg path,
.transparent-header.scrolled #logo svg rect {
	fill: var(--text-color)!important; /* colore dopo scroll */
	stroke: var(--text-color)!important;
}
.transparent-header.scrolled  .head-btn a {
	color: var(--text-color);
	border-color: var(--text-color);
	span {
		color: var(--text-color);
	}
	svg path {
		fill: var(--text-color); 
	}
}
.transparent-header.scrolled  .head-btn a:hover,
.transparent-header.scrolled  .head-btn a:active,
.transparent-header.scrolled  .head-btn a:focus {
	background: var(--text-color)!important;
	border-color: var(--text-color)!important;
	color: #fff;
	span {
		color: #fff;
	}
	svg path {
		fill: #fff; 
	}
}
/* Colore menu dopo scroll */
.transparent-header.scrolled .elementor-nav-menu a {
  color: var(--text-color)!important; /* colore dopo scroll */
}

/* Logo SVG iniziale */
.transparent-header svg {
  fill: white; /* colore iniziale */
  transition: fill 0.3s ease;
}

/* Logo SVG dopo scroll */
.transparent-header svg.scrolled {
  fill: black; /* colore dopo scroll */
    border: 1px solid red;
}
#mouse-scroller-icon {
    bottom: 15px;
    left: calc(50% - 10px);
}