/* Sfondo navbar bianco */
.navbar,
.navbar.bg-body-tertiary,
nav.navbar,
.navbar-expand-lg {
  background-color: #ffffff !important;
  background: #ffffff !important;
  position: sticky !important;
  top: 0;
  z-index: 1000;
}

.navbar .container-fluid {
  background-color: #ffffff !important;
}

/* Effetto hover logo header con ingrandimento fluido */
.navbar-brand {
  transition: transform 0.3s ease-in-out;
}

.navbar-brand:hover {
  transform: scale(1.15);
}

/* Link del menu neri */
.navbar-nav .nav-link,
.navbar-nav .nav-link:link,
.navbar-nav .nav-link:visited,
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:active {
  color: #000000 !important;
  transition: color 0.3s ease-in-out;
}

/* Sposta ultimo link (Prenota ora) a destra */
.navbar-nav {
  width: 100%;
}

.navbar-nav .nav-item:last-child {
  margin-left: auto;
}

/* Stile bottone Prenota ora */
.navbar-nav .nav-item:last-child .nav-link {
  background-color: #0800FF !important;
  color: #FFF700 !important;
  border-radius: 50px;
  padding: 10px 30px 5px 30px !important;
  font-family: 'FREAK Grotesk', sans-serif !important;
  font-feature-settings: "ss03";
}

.navbar-nav .nav-item:last-child .nav-link:hover {
  background-color: #0600cc !important;
}

/* Pulsante hamburger mobile: niente outline, icona nera */
.navbar-toggler {
  border-color: transparent !important;
  box-shadow: none !important;
  transition: background-color 0.2s ease-in-out;
}

.navbar-toggler:hover {
  background-color: rgba(8, 0, 255, 0.1);
}

.navbar-toggler:focus,
.navbar-toggler:active {
  outline: none !important;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,0,0,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  transition: background-image 0.3s ease-in-out;
}

/* Cambio icona in X quando il menu è aperto */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,0,0,1)' stroke-linecap='round' stroke-width='2' d='M6 6l18 18M24 6L6 24'/%3e%3c/svg%3e") !important;
}

/* Menu links ingranditi solo per mobile, escluso "Prenota ora" */
@media (max-width: 991px) {
  .navbar-nav .nav-item:not(:last-child) .nav-link {
    font-size: 1.25rem;
  }
}