body {
  margin: 0;
  font-family: 'Cinzel', serif;
  background-color: #121212;
  color: #f3e9dc;
}

.navbar {
  background: linear-gradient(135deg, #4b3e2b, #2c1f0f);
  border-bottom: 6px solid #7c5a2e;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.85);
  position: relative;
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 8px;
}

.nav-links.left-links {
  justify-content: flex-start;
  flex: 1;
}

.nav-links.right-links {
  justify-content: flex-end;
  flex: 1;
}

.nav-links li {
  position: relative;
}

.btn-metal {
  display: inline-block;
  padding: 6px 14px;
  color: #e0d3b8;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  background: linear-gradient(145deg, #5b4b2e, #3a2f18);
  border: 2px solid #a07e43;
  border-radius: 10px;
  box-shadow:
    inset 0 0 7px #a07e43,
    0 3px 5px rgba(0, 0, 0, 0.7);
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.btn-metal::before,
.btn-metal::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #c9b37c;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  box-shadow:
    0 0 4px 0 #ffec8b inset,
    0 0 8px 2px #7b6619;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}

.btn-metal::before {
  left: 6px;
}

.btn-metal::after {
  right: 6px;
}

.btn-metal:hover {
  background: linear-gradient(145deg, #7c6a3a, #5a4820);
  color: #fff8dc;
  border-color: #ffd966;
  box-shadow:
    inset 0 0 15px #ffeb99,
    0 4px 10px rgba(255, 215, 0, 0.7);
}

.btn-metal:hover::before,
.btn-metal:hover::after {
  background: #fff49c;
  box-shadow:
    0 0 10px 2px #fff89e inset,
    0 0 15px 5px #ffd966;
}

/* Dropdown Menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 38px;
  left: 0;
  background: linear-gradient(145deg, #3a2e18, #251b0a);
  border: 2px solid #7c5a2e;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.8);
  min-width: 150px;
  z-index: 10;
}

.nav-links li:hover > .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  display: block;
  padding: 8px 14px;
  color: #d9cba0;
  font-size: 0.85rem;
  border-bottom: 1px solid #5a4820;
  transition: background 0.3s ease;
  border-radius: 5px;
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu li a:hover {
  background: #7c5a2e;
  color: #fff8dc;
}

/* Logo semicircle */
.logo-semicircle {
  position: absolute;
  top: calc(100% - 5px); /* alzato di 5px */
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 80px;
  background: radial-gradient(ellipse at center, #654b2e 0%, #2c1e0f 90%);
  border-radius: 0 0 100px 100px;
  box-shadow:
    0 0 15px rgba(160, 126, 67, 0.7),
    inset 0 0 15px rgba(90, 60, 10, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 50;
  transition: box-shadow 0.8s ease;
}

/* Logo immagine - 80px */
.logo-semicircle img.logo-metal {
  max-height: 80px;
  filter: drop-shadow(0 0 4px #a07e43);
  transition: transform 0.4s ease;
  cursor: pointer;
}

.logo-semicircle img.logo-metal:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px #ffd966);
}

/* Responsive */
@media (max-width: 768px) {
  .navbar-container {
    flex-wrap: wrap;
  }

  .nav-links.left-links,
  .nav-links.right-links {
    flex: 1 1 100%;
    justify-content: center;
    margin: 5px 0;
  }

  .logo-semicircle {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 10px auto;
  }
}
