/* Shared styles across Chronaris marketing pages. */

/* Fixed Chronaris logo chip in the top-right corner. Use as either an <a>
   linking home or a non-interactive <div> on the home page itself. */
.logo-button {
  position: fixed;
  top: 1em;
  right: 1em;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid #333;
  border-radius: 12px;
  background-color: rgba(70, 70, 70, 0.1);
  transition: background-color 0.3s ease;
  box-sizing: border-box;
}
.logo-button:hover {
  background-color: rgba(51, 51, 51, 0.3);
}
.logo-button img {
  width: 46px;
  height: 46px;
  filter: grayscale(100%) brightness(2);
  opacity: 0.9;
  display: block;
  border-radius: 10px;
}
