/* Rimuove lo sfondo dai menu e li rende trasparenti */
.t4-navbar .navbar-nav > li > a {
  background: transparent !important;
  color: white !important; /* o il colore che vuoi */
  transition: color 0.3s, background 0.3s;
}

/* Quando il menu è attivo o in hover */
.t4-navbar .navbar-nav > li:hover > a,
.t4-navbar .navbar-nav > li.active > a {
  background: #000(0, 0, 0, 0.4); /* leggera ombra scura */
  color: #ff6600 !important; /* arancione in hover */
  border-radius: 4px; /* opzionale: smussa l’hover */
}

/* Per evitare effetti “macchia” */
.t4-navbar .navbar-nav > li > a {
  background-clip: padding-box;
  backdrop-filter: none;
}
.t4-offcanvas-toggle {
    display: none !important;
}
.t4-header .navbar-collapse,
.t4-header .navbar-collapse.show,
.t4-header .dropdown-menu {
    background-color: #000 !important;
    color: #000 !important;
}

.t4-header .dropdown-menu a {
    color: #fff !important;
.t4-header .navbar-collapse,
.t4-header .navbar-collapse.show,
.t4-header .dropdown-menu {
    background-color: #000 !important;
    color: #fff !important;
}

.t4-header .dropdown-menu a {
    color: #fff !important;
}

.t4-header .dropdown-menu a:hover {
    background-color: #ff6600 !important;
    color: #000 !important;
}
.t4-header .t4-offcanvas-toggle .navbar-toggler-icon,
.t4-header .t4-header-toggle .navbar-toggler-icon {
    background-image: none !important;
    position: relative;
    width: 30px;
    height: 22px;
}

.t4-header .t4-offcanvas-toggle .navbar-toggler-icon::before,
.t4-header .t4-offcanvas-toggle .navbar-toggler-icon::after,
.t4-header .t4-header-toggle .navbar-toggler-icon::before,
.t4-header .t4-header-toggle .navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: orange;
    transition: background-color 0.3s;
}

.t4-header .t4-offcanvas-toggle .navbar-toggler-icon::before,
.t4-header .t4-header-toggle .navbar-toggler-icon::before {
    top: 0;
}

.t4-header .t4-offcanvas-toggle .navbar-toggler-icon::after,
.t4-header .t4-header-toggle .navbar-toggler-icon::after {
    bottom: 0;
}

.t4-header .t4-offcanvas-toggle .navbar-toggler-icon span,
.t4-header .t4-header-toggle .navbar-toggler-icon span {
    position: absolute;
    top: 9px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: orange;
    transition: background-color 0.3s;
}

/* Hover effect */
.t4-header .t4-offcanvas-toggle:hover .navbar-toggler-icon::before,
.t4-header .t4-offcanvas-toggle:hover .navbar-toggler-icon::after,
.t4-header .t4-header-toggle:hover .navbar-toggler-icon::before,
.t4-header .t4-header-toggle:hover .navbar-toggler-icon::after,
.t4-header .t4-offcanvas-toggle:hover .navbar-toggler-icon span,
.t4-header .t4-header-toggle:hover .navbar-toggler-icon span {
    background-color: white;
}
/* Rendi invisibile l'hamburger secondario (laterale vuoto) */
.t4-offcanvas-toggle {
    display: none !important;
}

/* Personalizza l'hamburger visibile */
.t4-header-toggle .navbar-toggler-icon {
    background-image: none !important;
    width: 30px;
    height: 24px;
    position: relative;
}

.t4-header-toggle .navbar-toggler-icon::before,
.t4-header-toggle .navbar-toggler-icon::after,
.t4-header-toggle .navbar-toggler-icon span {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: orange;
    transition: background-color 0.3s ease;
}

/* Linea superiore */
.t4-header-toggle .navbar-toggler-icon::before {
    top: 0;
}

/* Linea centrale */
.t4-header-toggle .navbar-toggler-icon span {
    top: 10px;
}

/* Linea inferiore */
.t4-header-toggle .navbar-toggler-icon::after {
    bottom: 0;
}

/* Hover: diventano bianche */
.t4-header-toggle:hover .navbar-toggler-icon::before,
.t4-header-toggle:hover .navbar-toggler-icon span,
.t4-header-toggle:hover .navbar-toggler-icon::after {
    background-color: white;
}
.t4-header {
    background: black !important;
}