.button {
  display: inline-block;
  width: fit-content;
  height: fit-content;
  white-space: nowrap;
  text-decoration: none;
  padding: 1rem 2rem;
  margin-top: var(--space-2);
  border-radius: 10px;
  pointer-events: all;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
}

.button-primary {
  background-color: var(--color-brand-gold);
  color: var(--color-brand-navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.button-primary:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.button-secondary {
  background-color: transparent;
  border: 1px solid white;
  color: white;
  transition: all 0.3s ease;
}

.button-secondary:hover {
  background-color: var(--color-brand-gold);
  color: var(--color-brand-navy-deep);
}

.button-text {
  background-color: transparent;
  color: var(--color-brand-gold);
}

/*# sourceMappingURL=button.css.map */
