/* Utility Classes */

/* Buttons */
.btn-brand {
  display: inline-block;
  padding: 12px 28px;
  background: var(--brand-primary);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.btn-brand:hover {
  background: #d17e15;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 148, 29, 0.4);
}

.btn-outline-brand {
  display: inline-block;
  padding: 10px 24px;
  background: transparent;
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 15px;
}

.btn-outline-brand:hover {
  background: var(--brand-primary);
  color: white;
}

/* Section Titles */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

/* Shadows */
.shadow-soft {
  box-shadow: var(--shadow-soft);
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

/* Text utilities */
.text-muted {
  color: var(--text-muted);
}

/* Background utilities */
.bg-light {
  background-color: #f8f9fa;
}

.bg-cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
