/* File: css/buttons.css */
/* Base button styling */
.btn2 {
  width: 100%;
  max-width: 600px;
  padding: 15px 0;
  border-radius: 12px;
  color: white;
  font-family: "League Spartan", sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  transition: opacity 0.3s ease;
}

.btn2:hover {
  opacity: 0.9;
}


/* Gold / Primary */
.btn2-primary {
  background-color: #FFAA01;
}

/* Gold  */
.btn-sand {
  background-color: #FFAA01;
}

/* Blue / Secondary */
.btn-secondary {
  background-color: #007BFF;
}

/* Green / Success */
.btn-success {
  background-color: #28A745;
}

/* Red / Danger */
.btn-danger {
  background-color: #DC3545;
}

/* Gray / Neutral */
.btn-gray {
  background-color: #6C757D;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #fff;
  color: inherit;
}

/* Adjust color-specific outlines */
.btn-outline.btn-primary {
  color: #FFAA01;
  border-color: #FFAA01;
}

.btn-outline.btn-secondary {
  color: #007BFF;
  border-color: #007BFF;
}


