/* =====================================================
   BUTTONS
===================================================== */

.btn {
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.2s ease;
  cursor: pointer;
  font-size: 16px;
  min-height: 44px;
}

.btn-primary {
  background: var(--accent);
  color: white;
  border: none;
}

.btn-primary:hover {
  filter: brightness(0.95);
}

.btn-secondary {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.hero-btn {
  color: white;
  border-color: white;
}

.hero-btn:hover,
.btn-secondary:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 520px) {
  .btn {
    width: 100%;
    text-align: center;
  }
}
