@import url("https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  --primary-color: #323132;
  --secondary-color: #d4af37;
}

.text-black {
  color: var(--primary-color);
}

.bg-black {
  background: var(--primary-color);
}

.text-golden {
  color: var(--secondary-color);
}

.bg-golden {
  background: var(--secondary-color);
}

.button-1 {
  text-decoration: none;
  background: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  color: #000;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 6px;
  display: block;
  font-family: "Outfit", sans-serif;
  width: fit-content;
  position: relative;
}

/* .button-1:hover {
  background: #fff;
  color: #000;
} */

.button-2 {
  text-decoration: none;
  background: #fff;
  border: 1px solid #fff;
  color: #000;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 6px;
  display: block;
  font-family: "Outfit", sans-serif;
  width: fit-content;
  position: relative;
}

.button-2:hover ,.button-1:hover {
  /* background: var(--secondary-color); */
  color: #000;
  /* border: 1px solid var(--secondary-color); */
}