

/* Style top-level menu items */
ul.mod-menu > li {
  position: relative;
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  color: #00ffcc;
}

/* Style dropdown container */
ul.mod-menu li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #111;
  padding: 10px;
  z-index: 1000;
}

/* Show dropdown on hover */
ul.mod-menu li:hover > ul {
  display: block;
}

/* Style dropdown items */
ul.mod-menu li ul li {
  font-size: 14px;
  color: #ffffff;
  padding: 5px 10px;
  white-space: nowrap;
}

ul.mod-menu li ul li:hover {
  background-color: #333;
  color: #00ffcc;
}

/* Main menu font customization */
ul.mod-menu {
  font-family: 'Press Start 2P', cursive; /* Retro gaming font */
  font-size: 12px;
  font-weight: bold;
  color: #1E90FF; /* Tomato */
  text-transform: uppercase;
  letter-spacing: 1px;
}


body {
  border: 5px solid red !important;
}

.top-bar-image {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-image: url("/images/Design Elements/AmigaheaderBG.jpg");
  background-size: cover;
  background-position: center;
  height: 50px; /* adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
}

<a href="/" class="home-button">🏠 Home</a>
.home-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0077cc; /* Change to match your theme */
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}

.home-button:hover {
  background-color: #005fa3;
}




.top-bar-buttons {
  display: flex;
  gap: 15px;
}

.top-bar-btn {
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.top-bar-btn:hover {
  background-color: #ff6600;
}

/* Style Jackie Chan menu item */
.item-jackiechan a {
  background-image: url('/images/Design Elements/Jackie Chan Logo mini.jpg');
  background-size: contain;
  background-repeat: no-repeat;
  padding-left: 40px;
  color: #fff;
  font-weight: bold;
}

