/* Reset body for edge-to-edge layout */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  font-weight: bold;
  line-height: 1.6;
}

/* === HEADER STYLES === */
header {
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid #eee;
  width: 100%;
  box-sizing: border-box;
}

/* Logo styling */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #E0A106;
  font-size: 20px;
  font-weight: bold;
}

.logo img {
  height: 32px;
  margin-right: 6px;
}

/* Dropdown menu toggle */
.menu-toggle {
  background-color: transparent;
  color: #000;
  border: none;
  padding: 10px 12px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.menu-toggle:hover {
  background-color: #f2f2f2;
}

/* Dropdown Menu */
.dropdown-menu {
  display: none;
  flex-direction: column;
  background-color: #ffffff; /* restored original background */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  padding: 20px;
  position: absolute;
  top: 60px;
  right: 16px;
  width: 240px;
  box-sizing: border-box;
  z-index: 1001;
}

.dropdown-menu.show {
  display: flex;
  animation: fadeDown 0.5s ease;
}

.dropdown-menu a {
  color: #000;
  text-decoration: none;
  padding: 10px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px; /* spacing between icon and text */
}

.dropdown-menu a i {
  width: 20px;
  color: #1e1e2f; /* admin sidebar dark icon color */
}

.dropdown-menu a:hover {
  color: #1e1e2f;
}

.dropdown-menu hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 8px 0;
}
/*
.hero{
  background:url('BMACE_OFFICIAL_IMAGES/road1.jpg')center/cover no-repeat;
  
}
/* Smooth dropdown animation 
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
*/