/* Primary Button */

.primary-button {
  position: relative;
  display: flex;
  background-color: #1f1f1f;
  height: 50px;
  align-items: center;
  padding-top: 8px;
  padding-right: 20px;
  padding-bottom: 8px;
  padding-left: 20px;
  font-size: 16px;
  font-family: 'Avenir Next Demi';
  color: #ffffff;
}

.primary-button:hover {
  color: #ffffff;
}

.primary-button:active {
  background-color: #000000;
}

/* Secondary Button */

.secondary-button {
  position: relative;
  display: flex;
  border-width: 1px;
  height: 50px;
  border-style: solid;
  align-items: center;
  padding-top: 8px;
  padding-right: 20px !important;
  padding-bottom: 8px;
  padding-left: 20px !important;
  font-size: 16px;
  font-family: 'Avenir Next Demi';
  color: #1f1f1f;
  background-color: #ffffff;
  border-radius: 0;
  border-color: #1f1f1f;
}

.secondary-button:hover {
  color: #1f1f1f !important;
  background-color: #ffffff;
  border-color: #1f1f1f;
}

/* Shadow Extensions */

.shadow-button::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 8px;
  opacity: 1;
  transition: all 0.3s;
}

.shadow-button:hover::after {
  opacity: 0;
}

.shadow-button:active {
  box-shadow: rgb(204, 219, 232) 1px 1px 3px 0px inset, rgba(255, 255, 255, 0.5) -1px -1px 3px 1px inset;
}

.intense-shadow-button::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 8px;
  opacity: 1;
  transition: all 0.3s;
}

.intense-shadow-button:hover::after {
  opacity: 0;
}

.soft-shadow-button::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.2) 1px 2px 3px;
  opacity: 1;
  transition: all 0.3s;
}

.soft-shadow-button:hover::after {
  opacity: 0;
}

.soft-shadow-button:active {
  box-shadow: rgb(204, 219, 232) 1px 1px 1px 0px inset, rgba(255, 255, 255, 0.5) -1px -1px 1px 1px inset;
}

/* Navbar Link */

.navbar-link {
  position: relative;
  padding-left: 2px !important;
  padding-right: 2px !important;
  color: #1f1f1f;
}

.navbar-link::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 110%;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #1f1f1f;
  transition: all 0.2s;
}

.navbar-link:hover::after {
  width: 100%;
}

/* Button Group */

.button-group {
  display: flex;
}

.button-group .primary-button {
  margin-right: 20px;
}

