/* RESET */
body, ul, li {
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: #f8f9fa;
  color: #333;
}

/* MENU BASE */
.main-menu {
  background: #2c3e50;
  padding: 0.5rem 0;
}

.main-menu > ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.main-menu li {
  position: relative; /* important for dropdown */
}

.main-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem;
  display: block;
  transition: color 0.3s ease;
}

.main-menu a:hover {
  color: #f39c12;
}

/* DROPDOWN (HIDDEN by default) */
.dropdown-content {
  display: none !important;    /* force hidden */
  position: absolute;
  top: 100%; /* place below parent */
  left: 0;
  background: #34495e;
  min-width: 180px;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  padding: 0.5rem 0;
  z-index: 1000;
}

.dropdown-content li {
  display: block;
}

.dropdown-content a {
  padding: 0.5rem 1rem;
  color: #fff;
}

.dropdown-content a:hover {
  background: #f39c12;
  color: #2c3e50;
}

/* SHOW ONLY ON HOVER */
.dropdown:hover > .dropdown-content {
  display: block !important;
}
