/* =============================================
   ART PULSE FRONTEND UI STYLES
   Salient + WPBakery Compatible
   For: Users, Members, Artists, Organizations
============================================= */

/* === Buttons === */
.ap-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #0c75af;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(12,117,175,0.2);
}
.ap-button:hover {
  background-color: #095e8f;
  box-shadow: 0 6px 16px rgba(12,117,175,0.3);
  transform: translateY(-2px);
}
.ap-button-secondary {
  background-color: #f5ab35;
  box-shadow: 0 4px 12px rgba(245,171,53,0.2);
}
.ap-button-secondary:hover {
  background-color: #e09923;
  box-shadow: 0 6px 16px rgba(245,171,53,0.3);
}

/* === Cards & Panels === */
.ap-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  padding: 24px;
  transition: transform 0.3s ease;
}
.ap-card:hover {
  transform: translateY(-4px);
}

/* === Form Inputs === */
.ap-input,
.ap-textarea,
.ap-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.ap-input:focus,
.ap-textarea:focus,
.ap-select:focus {
  border-color: #0c75af;
  box-shadow: 0 0 8px rgba(12,117,175,0.2);
  outline: none;
}

/* === Typography Enhancements === */
.ap-heading {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #333;
  font-weight: 600;
}
.ap-subheading {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #555;
}

/* === Alerts & Notices === */
.ap-notice {
  padding: 12px 20px;
  background-color: #e7f4fd;
  border-left: 4px solid #0c75af;
  border-radius: 10px;
  color: #084c73;
  font-weight: 500;
  margin-bottom: 1rem;
}

/* === Utility Classes === */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
