/* css/global-styles.css */

/* 3D Button Style */
.btn-3d {
  background: linear-gradient(to bottom, #5C7AFF, #4a62cc);
  border: 1px solid #0029cc;
  border-bottom: 4px solid #0029cc;
  border-radius: 12px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  font-weight: 700;
  padding: 8px 16px;
  text-align: center;
  text-decoration: none;
  transition: all 0.1s ease-in-out;
  position: relative;
  top: 0;
  width: 100%;
}

.btn-3d:hover {
  background: linear-gradient(to bottom, #6b85ff, #5971d9);
}

.btn-3d:active {
  border-bottom-width: 1px;
  top: 3px;
}

.btn-3d:disabled {
  background: linear-gradient(to bottom, #2D4AB2, #1E337B);
  border-color: #333;
  color: #ccc;
  cursor: not-allowed;
}

.btn-3d:disabled img {
  opacity: 0.5;
}

@media (max-width: 600px) {
  .btn-3d {
    font-size: 16px;
  }
}