/* Shared styles – GEP Global */

html { scroll-behavior: smooth; }

/* Dropdown */
.dropdown-menu { display: none; }
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu {
  border-top: 2px solid #9e7340;
  border-radius: 0 0 6px 6px;
}
.dropdown-menu a { border-bottom: 1px solid #f0e6d8; color: #3a3a3a; }
.dropdown-menu a:hover { color: #9e7340; background: transparent; }
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

/* Mobile menu */
#mobile-menu { display: none; }

/* Back to top */
#back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  transition: opacity 0.3s;
  opacity: 0;
  pointer-events: none;
  background-color: #9e7340;
  color: #fff;
  border: none;
  cursor: pointer;
}
#back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
